| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class EnableDebugClassLoaderAction implements EventSubscriberActionInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | 1 | public static function getSubscribedEvents(): array |
|
| 26 | { |
||
| 27 | return array( |
||
| 28 | 1 | DebugKernelEvents::ON_KERNEL_INSTANTIATION => 'process', |
|
| 29 | ); |
||
| 30 | } |
||
| 31 | |||
| 32 | 1 | public function process(): void |
|
| 35 | 1 | } |
|
| 36 | } |
||
| 37 |