| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function getConfigTreeBuilder(): TreeBuilder |
||
| 13 | { |
||
| 14 | $treeBuilder = new TreeBuilder(); |
||
| 15 | $rootNode = $treeBuilder->root('saikootau_api'); |
||
| 16 | |||
| 17 | $rootNode |
||
| 18 | ->children() |
||
| 19 | ->scalarNode('default_content_type')->defaultValue('application/xml')->end() |
||
| 20 | ->booleanNode('expose_all_errors')->defaultFalse()->end() |
||
| 21 | ->end() |
||
| 22 | ; |
||
| 23 | |||
| 24 | return $treeBuilder; |
||
| 25 | } |
||
| 27 |