Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/console/Question/ChoiceQuestion.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 7a779792577d |
children | 129ea1e6d783 |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
24 private $multiselect = false; | 24 private $multiselect = false; |
25 private $prompt = ' > '; | 25 private $prompt = ' > '; |
26 private $errorMessage = 'Value "%s" is invalid'; | 26 private $errorMessage = 'Value "%s" is invalid'; |
27 | 27 |
28 /** | 28 /** |
29 * Constructor. | |
30 * | |
31 * @param string $question The question to ask to the user | 29 * @param string $question The question to ask to the user |
32 * @param array $choices The list of available choices | 30 * @param array $choices The list of available choices |
33 * @param mixed $default The default answer to return | 31 * @param mixed $default The default answer to return |
34 */ | 32 */ |
35 public function __construct($question, array $choices, $default = null) | 33 public function __construct($question, array $choices, $default = null) |