| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 66.67% |
| Changes | 2 | ||
| Bugs | 0 | Features | 2 |
| 1 | <?php |
||
| 21 | class EnableOriginalDrupalKernelSubstitutionCommand extends BaseCommand |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | const NAME = 'drupal-debug:enable-original-drupal-kernel-substitution'; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | const ALIASES = array('drupal-debug:enable'); |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | 1 | protected function configure(): void |
|
| 37 | { |
||
| 38 | $this |
||
| 39 | 1 | ->setName(self::NAME) |
|
| 40 | 1 | ->setAliases(self::ALIASES); |
|
| 41 | 1 | } |
|
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | protected function execute(InputInterface $input, OutputInterface $output): ?int |
||
| 49 | } |
||
| 50 | } |
||
| 51 |