| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | class VersionCommand extends AbstractCommand |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * Configure the Command |
||
| 28 | */ |
||
| 29 | 63 | protected function configure(): void |
|
| 30 | { |
||
| 31 | $this |
||
| 32 | 63 | ->setName('version') |
|
| 33 | 63 | ->setDescription('Get the version of Magallanes'); |
|
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Executes the Command |
||
| 38 | */ |
||
| 39 | 1 | protected function execute(InputInterface $input, OutputInterface $output): int |
|
| 44 | } |
||
| 45 | } |
||
| 46 |