| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function getConfigTreeBuilder() |
||
| 29 | { |
||
| 30 | $treeBuilder = new TreeBuilder(); |
||
| 31 | 30 | $rootNode = $treeBuilder->root('hautelook_alice'); |
|
| 32 | |||
| 33 | 30 | $rootNode |
|
| 34 | 30 | ->children() |
|
| 35 | ->scalarNode('fixtures_path') |
||
| 36 | ->defaultValue('/Resources/fixtures') |
||
| 37 | 30 | ->info('Path to which to look for fixtures relative to the bundle path.') |
|
| 38 | 30 | ->end() |
|
| 39 | 30 | ->end() |
|
| 40 | 30 | ; |
|
| 41 | 30 | ||
| 42 | 30 | return $treeBuilder; |
|
| 43 | 30 | } |
|
| 44 | } |
||
| 45 |