Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function execute(InputInterface $input, OutputInterface $output): int |
||
17 | { |
||
18 | $reflectionKernel = new ReflectionClass($this->kernel); |
||
19 | $containerLoaderReflection = $reflectionKernel->getProperty('containerLoader'); |
||
20 | /** @var ContainerLoader $containerLoader */ |
||
21 | $containerLoader = $containerLoaderReflection->getValue($this->kernel); |
||
22 | |||
23 | $output->writeln(array_keys($containerLoader->definitions)); |
||
24 | |||
25 | return self::SUCCESS; |
||
26 | } |
||
27 | } |