| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | final class TestHiCommand extends Command |
||
| 17 | { |
||
| 18 | use FacadeResolverAwareTrait; |
||
| 19 | |||
| 20 | public function run(InputInterface $input, OutputInterface $output): int |
||
| 21 | { |
||
| 22 | $output->write($this->getFacade()->sayHi()); |
||
| 23 | |||
| 24 | return self::SUCCESS; |
||
| 25 | } |
||
| 26 | |||
| 27 | protected function facadeClass(): string |
||
| 30 | } |
||
| 31 | } |
||
| 32 |