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