1 | <?php |
||
10 | class TaggedServicesPass implements CompilerPassInterface |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * Save tagged service into a cache file |
||
15 | * |
||
16 | * @param ContainerBuilder $container |
||
17 | * @param string $tag |
||
18 | * @param string $fileName |
||
19 | */ |
||
20 | private function saveTaggedServices(ContainerBuilder $container, $tag, $fileName) |
||
29 | |||
30 | /** |
||
31 | * Process the build |
||
32 | * |
||
33 | * @param ContainerBuilder $container |
||
34 | */ |
||
35 | public function process(ContainerBuilder $container) |
||
41 | |||
42 | } |
||
43 |