Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function addConfiguration(NodeDefinition $node) |
||
22 | { |
||
23 | parent::addConfiguration($node); |
||
24 | $node |
||
25 | ->children() |
||
26 | ->booleanNode('is_shared') |
||
27 | ->info('If true, a controller will be created to ease the JWKSet to be shared.') |
||
28 | ->defaultFalse() |
||
29 | ->end() |
||
30 | ->end(); |
||
31 | } |
||
32 | } |
||
33 |