| Total Complexity | 2 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | abstract class Configurable extends Command |
||
| 26 | { |
||
| 27 | private const CONFIG_PARAM = 'config'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | protected function configure(): void |
||
| 39 | ); |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Returns the configuration settings. |
||
| 44 | * |
||
| 45 | * @param InputInterface $input the input handler |
||
| 46 | * |
||
| 47 | * @return Configuration the configuration settings |
||
| 48 | */ |
||
| 49 | final protected function getConfig(InputInterface $input): Configuration |
||
| 57 |