| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function getNodeDefinition(NodeDefinition $node) |
||
| 42 | { |
||
| 43 | $node->children() |
||
| 44 | ->arrayNode('custom_values') |
||
| 45 | ->info('Custom values added to the metadata response.') |
||
| 46 | ->useAttributeAsKey('name') |
||
| 47 | ->prototype('variable')->end() |
||
| 48 | ->treatNullLike([]) |
||
| 49 | ->treatFalseLike([]) |
||
| 50 | ->end() |
||
| 51 | ->end(); |
||
| 52 | } |
||
| 53 | |||
| 62 |