Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 15 |
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('key_set') |
||
57 | ->info('The key set service.') |
||
58 | ->isRequired()->end() |
||
59 | ->integerNode('key_index') |
||
60 | ->info('The index of the key in the key set.') |
||
61 | ->isRequired() |
||
62 | ->end() |
||
63 | ->end(); |
||
64 | } |
||
65 | } |
||
66 |