| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function configure(ArrayNodeDefinition $builder) |
||
| 28 | { |
||
| 29 | $builder |
||
| 30 | ->addDefaultsIfNotSet() |
||
| 31 | ->children() |
||
| 32 | ->arrayNode('rest') |
||
| 33 | ->addDefaultsIfNotSet() |
||
| 34 | ->children() |
||
| 35 | ->scalarNode('base_url')->end() |
||
| 36 | ->booleanNode('store_response') |
||
| 37 | ->defaultTrue()->end() |
||
| 38 | ->end() |
||
| 39 | ->end() |
||
| 40 | ->end() |
||
| 41 | ->end() |
||
| 42 | ; |
||
| 43 | } |
||
| 44 | |||
| 59 |