Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
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 | 1 | public function __construct() |
|
18 | { |
||
19 | 1 | parent::__construct(); |
|
20 | 1 | } |
|
21 | |||
22 | 1 | protected function execute(InputInterface $input, OutputInterface $output): int |
|
26 | } |
||
27 | } |
||
28 |