Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class Hello extends Command |
||
13 | { |
||
14 | protected static $defaultName = 'hello'; |
||
15 | protected static $defaultDescription = 'An example command'; |
||
16 | |||
17 | public function __construct() |
||
18 | { |
||
19 | parent::__construct(); |
||
20 | } |
||
21 | |||
22 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
26 | } |
||
27 | } |
||
28 |