Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
37 | public function addConfiguration(NodeDefinition $node) |
||
38 | { |
||
39 | parent::addConfiguration($node); |
||
40 | $node |
||
41 | ->children() |
||
42 | ->booleanNode('is_shared') |
||
43 | ->info('If true, a controller will be created to ease the JWKSet to be shared.') |
||
44 | ->defaultFalse() |
||
45 | ->end() |
||
46 | ->end(); |
||
47 | } |
||
48 | } |
||
49 |