1 | <?php |
||
18 | class ConfigExtension extends ConfigurableExtension |
||
19 | { |
||
20 | private $conf = array(); |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | * |
||
25 | * Loads the configuration from the yml file into container parameters |
||
26 | */ |
||
27 | protected function loadInternal(array $config, ContainerBuilder $container) |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function getAlias() |
||
48 | |||
49 | /** |
||
50 | * Convert the yaml array into proper symfony container parameters |
||
51 | * |
||
52 | * @param string $name The name of the root parameter |
||
53 | * @param mixed $value The value to store in that parameter |
||
54 | * @return void |
||
55 | */ |
||
56 | private function store($name, $value) |
||
72 | } |
||
73 |