| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 1 | public function getConfigTreeBuilder() |
|
| 19 | { |
||
| 20 | 1 | $treeBuilder = new TreeBuilder(); |
|
| 21 | 1 | $rootNode = $treeBuilder->root('craftcamp_abac'); |
|
| 22 | $rootNode |
||
| 23 | 1 | ->children() |
|
| 24 | 1 | ->arrayNode('configuration_files')->isRequired()->requiresAtLeastOneElement() |
|
| 25 | 1 | ->prototype('scalar')->end() |
|
| 26 | 1 | ->end() |
|
| 27 | 1 | ->arrayNode('cache_options') |
|
| 28 | 1 | ->children() |
|
| 29 | 1 | ->scalarNode('cache_folder')->end() |
|
| 30 | 1 | ->end() |
|
| 31 | 1 | ->end() |
|
| 43 |