| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function getConfigTreeBuilder() |
||
| 10 | { |
||
| 11 | $treeBuilder = new TreeBuilder(); |
||
| 12 | $rootNode = $treeBuilder->root('soap_client'); |
||
| 13 | $rootNode |
||
| 14 | ->children() |
||
| 15 | ->arrayNode('alternative_endpoints')->fixXmlConfig('alternative_endpoint') |
||
| 16 | ->prototype('array') |
||
| 17 | ->prototype('scalar') |
||
| 18 | ->end() |
||
| 19 | ->end() |
||
| 20 | ->end() |
||
| 21 | ->scalarNode('unwrap_returns') |
||
| 22 | ->defaultValue(false) |
||
| 23 | ->end() |
||
| 24 | ->end() |
||
| 25 | ; |
||
| 26 | return $treeBuilder; |
||
| 27 | } |
||
| 28 | } |
||
| 29 |