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