| 1 | <?php |
||
| 13 | * |
||
| 14 | * To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html#cookbook-bundles-extension-config-class} |
||
| 15 | */ |
||
| 16 | class Configuration implements ConfigurationInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * {@inheritdoc} |
||
| 20 | */ |
||
| 21 | public function getConfigTreeBuilder() |
||
| 22 | { |
||
| 23 | $treeBuilder = new TreeBuilder(); |
||
| 24 | $rootNode = $treeBuilder->root('narrator'); |
||
| 25 | |||
| 26 | // Here you should define the parameters that are allowed to |
||
| 27 | // configure your bundle. See the documentation linked above for |
||
| 28 | // more information on that topic. |
||
| 29 | |||
| 30 | return $treeBuilder; |
||
| 33 |