| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function getConfigTreeBuilder() |
||
| 18 | { |
||
| 19 | $treeBuilder = new TreeBuilder('saas_provider'); |
||
| 20 | |||
| 21 | $treeBuilder->getRootNode() |
||
| 22 | ->children() |
||
| 23 | ->scalarNode('client_entity')->isRequired()->cannotBeEmpty()->end() |
||
| 24 | ->scalarNode('global_url')->end() |
||
| 25 | ->scalarNode('apikey')->isRequired()->cannotBeEmpty()->end() |
||
| 26 | ->end() |
||
| 27 | ->end(); |
||
| 28 | |||
| 29 | return $treeBuilder; |
||
| 30 | } |
||
| 32 |