| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function getConfigTreeBuilder() |
||
| 22 | { |
||
| 23 | $treeBuilder = new TreeBuilder(); |
||
| 24 | $rootNode = $treeBuilder->root('bcrm_web'); |
||
| 25 | $rootNode |
||
| 26 | ->children() |
||
| 27 | ->scalarNode('content_dir')->defaultValue('%kernel.root_dir%/../web/content')->end() |
||
| 28 | ->scalarNode('content_path')->defaultValue('/content')->end() |
||
| 29 | ->end(); |
||
| 30 | return $treeBuilder; |
||
| 31 | } |
||
| 32 | } |
||
| 33 |