| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 37 | { |
||
| 38 | $this->ensureExtensionLoaded('Zend OPcache'); |
||
| 39 | $path = $input->getArgument('path'); |
||
| 40 | $splFiles = array($path); |
||
| 41 | |||
| 42 | $table = new Table($output); |
||
| 43 | $table |
||
| 44 | ->setHeaders(array( |
||
| 45 | 'Compiled', |
||
| 46 | 'Filename' |
||
| 47 | )) |
||
| 48 | ->setRows($this->processFilelist($splFiles)) |
||
| 49 | ; |
||
| 50 | |||
| 51 | $table->render(); |
||
| 52 | |||
| 53 | return 0; |
||
| 54 | } |
||
| 55 | |||
| 71 |