| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | abstract class BaseCommand extends SymfonyCommand |
||
| 32 | { |
||
| 33 | abstract protected function executeCommand(IO $io): int; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 43 | } |
||
| 44 | |||
| 45 | final protected function getConfigurationHelper(): ConfigurationHelper |
||
| 50 |