| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php declare(strict_types=1); |
||
| 15 | public function getConfigTreeBuilder() |
||
| 16 | { |
||
| 17 | $treeBuilder = new TreeBuilder('wesnick_workflow'); |
||
| 18 | |||
| 19 | $treeBuilder->getRootNode() |
||
| 20 | ->children() |
||
| 21 | ->booleanNode('api_patch_transitions')->defaultTrue()->end() |
||
| 22 | ->booleanNode('workflow_validation_guard')->defaultTrue()->end() |
||
| 23 | ->end() |
||
| 24 | ; |
||
| 25 | |||
| 26 | return $treeBuilder; |
||
| 27 | } |
||
| 30 |