1 | <?php |
||
25 | final class CrossContainerExtension implements Extension |
||
26 | { |
||
27 | /** |
||
28 | * @var CrossContainerProcessor |
||
29 | */ |
||
30 | private $crossContainerProcessor; |
||
31 | |||
32 | public function __construct() |
||
36 | |||
37 | /** |
||
38 | * @api |
||
39 | * |
||
40 | * @return CrossContainerProcessor |
||
41 | */ |
||
42 | public function getCrossContainerProcessor() |
||
46 | |||
47 | /** |
||
48 | * @internal |
||
49 | * |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function getConfigKey() |
||
56 | |||
57 | /** |
||
58 | * @internal |
||
59 | * |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | public function initialize(ExtensionManager $extensionManager) |
||
65 | |||
66 | /** |
||
67 | * @internal |
||
68 | * |
||
69 | * {@inheritdoc} |
||
70 | */ |
||
71 | public function configure(ArrayNodeDefinition $builder) |
||
74 | |||
75 | /** |
||
76 | * @internal |
||
77 | * |
||
78 | * {@inheritdoc} |
||
79 | */ |
||
80 | public function load(ContainerBuilder $container, array $config) |
||
84 | |||
85 | /** |
||
86 | * @internal |
||
87 | * |
||
88 | * {@inheritdoc} |
||
89 | */ |
||
90 | public function process(ContainerBuilder $container) |
||
93 | } |
||
94 |