diff vendor/chi-teck/drupal-code-generator/src/Helper/QuestionSettersTrait.php @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/chi-teck/drupal-code-generator/src/Helper/QuestionSettersTrait.php	Thu Jul 05 14:24:15 2018 +0000
@@ -0,0 +1,48 @@
+<?php
+
+namespace DrupalCodeGenerator\Helper;
+
+use Symfony\Component\Console\Question\ChoiceQuestion;
+use Symfony\Component\Console\Question\Question;
+
+/**
+ * Implements missing Question setters.
+ */
+trait QuestionSettersTrait {
+
+  /**
+   * Sets question text.
+   *
+   * @param \Symfony\Component\Console\Question\Question $question
+   *   The question to update.
+   * @param mixed $question_text
+   *   The question text.
+   */
+  protected function setQuestionText(Question $question, $question_text) {
+    // Choice question has a different constructor signature.
+    if ($question instanceof ChoiceQuestion) {
+      $question->__construct($question_text, $question->getChoices(), $question->getDefault());
+    }
+    else {
+      $question->__construct($question_text, $question->getDefault());
+    }
+  }
+
+  /**
+   * Sets question default value.
+   *
+   * @param \Symfony\Component\Console\Question\Question $question
+   *   The question to update.
+   * @param mixed $default_value
+   *   Default value for the question.
+   */
+  protected function setQuestionDefault(Question $question, $default_value) {
+    if ($question instanceof ChoiceQuestion) {
+      $question->__construct($question->getQuestion(), $question->getChoices(), $default_value);
+    }
+    else {
+      $question->__construct($question->getQuestion(), $default_value);
+    }
+  }
+
+}