| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | public function addConfiguration(NodeDefinition $node) |
||
| 53 | { |
||
| 54 | parent::addConfiguration($node); |
||
| 55 | $node |
||
| 56 | ->children() |
||
| 57 | ->scalarNode('path')->isRequired()->end() |
||
| 58 | ->scalarNode('password')->defaultNull()->end() |
||
| 59 | ->arrayNode('additional_values') |
||
| 60 | ->defaultValue([]) |
||
| 61 | ->useAttributeAsKey('key') |
||
| 62 | ->prototype('variable')->end() |
||
| 63 | ->end() |
||
| 64 | ->end(); |
||
| 65 | } |
||
| 66 | } |
||
| 67 |