| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class GenericProviderController extends AbstractProviderController |
||
| 15 | { |
||
| 16 | #[Route('/connect/generic', name: 'chamilo.oauth2_generic_start')] |
||
| 17 | public function connect( |
||
| 18 | ClientRegistry $clientRegistry, |
||
| 19 | AuthenticationConfigHelper $authenticationConfigHelper, |
||
| 20 | ): Response { |
||
| 21 | return $this->getStartResponse('generic', $clientRegistry, $authenticationConfigHelper); |
||
| 22 | } |
||
| 23 | |||
| 24 | #[Route('/connect/generic/check', name: 'chamilo.oauth2_generic_check')] |
||
| 26 | } |
||
| 27 |