| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | abstract class BaseQuestion |
||
| 10 | { |
||
| 11 | /** @var QuestionHelper */ |
||
| 12 | protected $helper; |
||
| 13 | |||
| 14 | /** @var InputInterface */ |
||
| 15 | protected $input; |
||
| 16 | |||
| 17 | /** @var OutputInterface */ |
||
| 18 | protected $output; |
||
| 19 | |||
| 20 | /** @var string */ |
||
| 21 | protected $question; |
||
| 22 | |||
| 23 | public function __construct(QuestionHelper $helper, InputInterface $input, OutputInterface $output, string $question) |
||
| 31 |