| Conditions | 1 |
| Paths | 1 |
| Total Lines | 23 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 15 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 5 | public function getConfigTreeBuilder() |
|
| 19 | { |
||
| 20 | 5 | $treeBuilder = new TreeBuilder(); |
|
| 21 | 5 | $rootNode = $treeBuilder->root('procergs_cpf_verification'); |
|
| 22 | |||
| 23 | $rootNode |
||
| 24 | 5 | ->children() |
|
| 25 | 5 | ->scalarNode('base_uri') |
|
| 26 | 5 | ->isRequired() |
|
| 27 | 5 | ->end() |
|
| 28 | 5 | ->scalarNode('list_challenges_path') |
|
| 29 | 5 | ->defaultNull() |
|
| 30 | 5 | ->end() |
|
| 31 | 5 | ->scalarNode('challenge_path') |
|
| 32 | 5 | ->defaultNull() |
|
| 33 | 5 | ->end() |
|
| 34 | 5 | ->end(); |
|
| 35 | |||
| 36 | // Here you should define the parameters that are allowed to |
||
| 37 | // configure your bundle. See the documentation linked above for |
||
| 38 | // more information on that topic. |
||
| 39 | |||
| 40 | 5 | return $treeBuilder; |
|
| 41 | } |
||
| 43 |