Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 42.86% |
Changes | 0 |
1 | <?php |
||
9 | class PatchManagerCompilerPass implements CompilerPassInterface |
||
10 | { |
||
11 | public const PATCH_MANAGER_HANDLER_TAG = 'patch_manager.handler'; |
||
12 | |||
13 | /** |
||
14 | * You can modify the container here before it is dumped to PHP code. |
||
15 | * |
||
16 | * @param ContainerBuilder $container |
||
17 | * |
||
18 | * @api |
||
19 | */ |
||
20 | 2 | public function process(ContainerBuilder $container): void |
|
33 |