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