| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 51 | public function getNodeDefinition(ArrayNodeDefinition $node) |
||
| 52 | { |
||
| 53 | $node |
||
| 54 | ->children() |
||
| 55 | ->arrayNode($this->getName()) |
||
| 56 | ->useAttributeAsKey('name') |
||
| 57 | ->prototype('array') |
||
| 58 | ->children() |
||
| 59 | ->arrayNode('claims')->isRequired()->prototype('scalar')->end()->end() |
||
| 60 | ->arrayNode('headers')->isRequired()->prototype('scalar')->end()->end() |
||
| 61 | ->end() |
||
| 62 | ->end() |
||
| 63 | ->end() |
||
| 64 | ->end(); |
||
| 65 | } |
||
| 66 | |||
| 74 |