| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function getConfigTreeBuilder() |
||
| 19 | { |
||
| 20 | $treeBuilder = new TreeBuilder(); |
||
| 21 | $rootNode = $treeBuilder->root('gotakk_view_model'); |
||
| 22 | |||
| 23 | $rootNode |
||
| 24 | ->children() |
||
| 25 | ->arrayNode('plurals') |
||
| 26 | ->prototype('scalar') |
||
| 27 | ->cannotBeEmpty() |
||
| 28 | ->end() |
||
| 29 | ->end() |
||
| 30 | ->end() |
||
| 31 | ; |
||
| 32 | |||
| 33 | return $treeBuilder; |
||
| 34 | } |
||
| 35 | } |
||
| 36 |