Total Complexity | 5 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class Extension implements ExtensionInterface |
||
12 | { |
||
13 | public function process(ContainerBuilder $container) |
||
15 | // TODO: Implement process() method. |
||
16 | } |
||
17 | |||
18 | public function getConfigKey() |
||
19 | { |
||
20 | // TODO: Implement getConfigKey() method. |
||
21 | } |
||
22 | |||
23 | public function initialize(ExtensionManager $extensionManager) |
||
24 | { |
||
25 | // TODO: Implement initialize() method. |
||
26 | } |
||
27 | |||
28 | public function configure(ArrayNodeDefinition $builder) |
||
30 | // TODO: Implement configure() method. |
||
31 | } |
||
32 | |||
33 | public function load(ContainerBuilder $container, array $config) |
||
35 | // TODO: Implement load() method. |
||
36 | } |
||
38 |