| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 37 | { |
||
| 38 | $code = $input->getArgument('code'); |
||
| 39 | $success = $this->getCacheTool()->_eval($code); |
||
| 40 | $output->writeln(sprintf("<comment>Eval Output:\n <info>%s</info></comment>", $success)); |
||
| 41 | return 0; |
||
| 42 | } |
||
| 43 | } |
||
| 44 |