Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
54 | public function addConfiguration(NodeDefinition $node) |
||
55 | { |
||
56 | parent::addConfiguration($node); |
||
57 | $node |
||
58 | ->children() |
||
59 | ->scalarNode('key_set') |
||
60 | ->info('The key set service.') |
||
61 | ->isRequired()->end() |
||
62 | ->integerNode('index') |
||
63 | ->info('The index of the key in the key set.') |
||
64 | ->isRequired() |
||
65 | ->end() |
||
66 | ->end(); |
||
67 | } |
||
68 | } |
||
69 |