| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function buildConfiguration(NodeBuilder $node) |
||
| 12 | { |
||
| 13 | // @formatter:off |
||
| 14 | $node |
||
| 15 | ->scalarNode('provider_class') |
||
| 16 | ->info('The class name of your provider class (e.g. the one that extends AbstractProvider)') |
||
| 17 | ->defaultValue(Custom::class) |
||
| 18 | ->end() |
||
| 19 | ->scalarNode('client_class') |
||
|
|
|||
| 20 | ->info('If you have a sub-class of OAuth2Client you want to use, add it here') |
||
| 21 | ->defaultValue(OAuth2Client::class) |
||
| 22 | ->end() |
||
| 23 | ->arrayNode('provider_options') |
||
| 24 | ->info('Other options to pass to your provider\'s constructor') |
||
| 25 | ->prototype('variable')->end() |
||
| 26 | ->end() |
||
| 27 | ; |
||
| 54 |