Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 11 | ||
Bugs | 5 | Features | 2 |
1 | <?php |
||
25 | public function getConfigTreeBuilder() |
||
26 | { |
||
27 | $treeBuilder = new TreeBuilder(); |
||
28 | $rootNode = $treeBuilder->root('cl_slack'); |
||
29 | |||
30 | $rootNode |
||
31 | ->children() |
||
32 | ->scalarNode('api_token')->defaultNull()->end() |
||
33 | ->booleanNode('test')->defaultFalse()->end() |
||
34 | ->end() |
||
35 | ; |
||
36 | |||
37 | return $treeBuilder; |
||
38 | } |
||
39 | } |
||
40 |