public function CommandInteractEvent::setQuestions in Update helper 2.x
Set the questions to ask.
Parameters
array $questions: The array of questions.
Return value
$this
File
- src/
Events/ CommandInteractEvent.php, line 56
Class
- CommandInteractEvent
- Event for command interactive.
Namespace
Drupal\update_helper\EventsCode
public function setQuestions(array $questions) {
$this->questions = $questions;
return $this;
}