Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
48 | public function addConfiguration(NodeDefinition $node) |
||
49 | { |
||
50 | $node |
||
51 | ->children() |
||
52 | ->booleanNode('is_public') |
||
53 | ->info('If true, the service will be public, else private.') |
||
54 | ->defaultTrue() |
||
55 | ->end() |
||
56 | ->scalarNode('id') |
||
57 | ->info('ID of the JWKSet to use.') |
||
58 | ->isRequired() |
||
59 | ->end() |
||
60 | ->end(); |
||
61 | } |
||
62 | } |
||
63 |