Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function addConfiguration(NodeDefinition $node) |
||
38 | { |
||
39 | $node |
||
40 | ->children() |
||
41 | ->arrayNode('issuer_discovery') |
||
42 | ->defaultValue([]) |
||
43 | ->useAttributeAsKey('name') |
||
44 | ->prototype('array') |
||
45 | ->children() |
||
46 | ->scalarNode('path')->isRequired()->end() |
||
47 | ->scalarNode('resource_repository')->isRequired()->end() |
||
48 | ->scalarNode('server')->isRequired()->end() |
||
49 | ->end() |
||
50 | ->end() |
||
51 | ->end() |
||
52 | ->end(); |
||
53 | } |
||
54 | |||
62 |