Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
19 | 2 | public function select(string $message, array $options, bool $allowMultiple = true) |
|
20 | { |
||
21 | 2 | $helper = $this->getHelper('selection'); |
|
22 | 2 | $question = $allowMultiple ? new CheckboxInput($message, $options) : new RadioInput($message, $options); |
|
23 | |||
24 | 2 | return $helper->select($question); |
|
25 | } |
||
27 |