Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | protected function execute(InputInterface $input, OutputInterface $output): void |
||
27 | { |
||
28 | $path = $input->getArgument('path'); |
||
29 | |||
30 | $check = new Checker(); |
||
31 | |||
32 | foreach ($check($path) as $typeHint) { |
||
33 | $output->writeln($typeHint->message()); |
||
34 | } |
||
35 | |||
36 | $output->writeln('Done!'); |
||
37 | } |
||
38 | } |
||
39 |