| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 20 | public function getConfigTreeBuilder() |
||
| 21 | { |
||
| 22 | $treeBuilder = new TreeBuilder(); |
||
| 23 | $rootNode = $treeBuilder->root('zicht_framework_extra'); |
||
| 24 | |||
| 25 | $rootNode |
||
| 26 | ->children() |
||
| 27 | ->scalarNode('requirejs')->end() |
||
| 28 | ->scalarNode('uglify')->end() |
||
| 29 | ->booleanNode('uglify_debug')->end() |
||
| 30 | ->arrayNode('embed_helper') |
||
| 31 | ->children() |
||
| 32 | ->booleanNode('mark_exceptions_as_errors')->defaultValue(false)->end() |
||
| 33 | ->end() |
||
| 34 | ->end() |
||
| 35 | ->booleanNode('disable_schema-update')->defaultTrue() |
||
| 36 | ->end(); |
||
| 37 | |||
| 38 | return $treeBuilder; |
||
| 39 | } |
||
| 41 |