Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
47 | public function getNodeDefinition(NodeDefinition $node) |
||
48 | { |
||
49 | $node->children() |
||
50 | ->arrayNode('client_credentials') |
||
51 | ->canBeEnabled() |
||
52 | ->children() |
||
53 | ->booleanNode('issue_refresh_token') |
||
54 | ->info('If enabled, a refresh token will be issued with an access token (not recommended)') |
||
55 | ->defaultFalse() |
||
56 | ->end() |
||
57 | ->end() |
||
58 | ->end() |
||
59 | ->end(); |
||
60 | } |
||
61 | |||
71 |