| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | public function addConfiguration(NodeDefinition $node) |
||
| 58 | { |
||
| 59 | parent::addConfiguration($node); |
||
| 60 | $node |
||
| 61 | ->children() |
||
| 62 | ->arrayNode('values') |
||
| 63 | ->info('Values of the key.') |
||
| 64 | ->isRequired() |
||
| 65 | ->useAttributeAsKey('key') |
||
| 66 | ->prototype('variable')->end() |
||
| 67 | ->end() |
||
| 68 | ->end(); |
||
| 69 | } |
||
| 70 | } |
||
| 71 |