1 | <?php |
||
9 | class CompilerPass implements CompilerPassInterface |
||
10 | { |
||
11 | /** |
||
12 | * {@inheritdoc} |
||
13 | */ |
||
14 | public function process(ContainerBuilder $container) |
||
26 | |||
27 | /** |
||
28 | * Returns a reference to a service, if that service exists in the container. |
||
29 | * Otherwise returns null. |
||
30 | * |
||
31 | * @param ContainerBuilder $container |
||
32 | * @param string $serviceId |
||
33 | * |
||
34 | * @return Reference|null |
||
35 | */ |
||
36 | private function getServiceReference(ContainerBuilder $container, $serviceId) |
||
42 | } |
||
43 |