| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 13 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 27 | public function getConfigTreeBuilder() | ||
| 28 |     { | ||
| 29 | $treeBuilder = new TreeBuilder(); | ||
| 30 |         $rootNode = $treeBuilder->root('wow_apps_proxybonanza'); | ||
| 31 | |||
| 32 | $rootNode | ||
| 33 | ->children() | ||
| 34 |                 ->scalarNode('api_url')->defaultValue('https://api.proxybonanza.com/v1/')->end() | ||
| 35 |                 ->scalarNode('api_key')->defaultValue('')->end() | ||
| 36 | ->end() | ||
| 37 | ; | ||
| 38 | |||
| 39 | return $treeBuilder; | ||
| 40 | } | ||
| 42 |