-
Notifications
You must be signed in to change notification settings - Fork 486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SSO: Start implementing Azure authentication #5968
Conversation
|
||
/* For licensing terms, see /license.txt */ | ||
|
||
declare(strict_types=1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a single space around assignment operators
use Symfony\Component\HttpFoundation\Response; | ||
use Symfony\Component\Routing\Attribute\Route; | ||
|
||
class AzureProviderController extends AbstractProviderController |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing class doc comment
|
||
class AzureProviderController extends AbstractProviderController | ||
{ | ||
#[Route('/connect/azure', name: 'chamilo.oauth2_azure_start')] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perl-style comments are not allowed. Use "// Comment." or "/* comment */" instead.
class AzureProviderController extends AbstractProviderController | ||
{ | ||
#[Route('/connect/azure', name: 'chamilo.oauth2_azure_start')] | ||
public function connect( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You must use "/**" style comments for a function comment
return $this->getStartResponse('azure', $clientRegistry, $authenticationConfigHelper); | ||
} | ||
|
||
#[Route('/connect/azure/check', name: 'chamilo.oauth2_azure_check')] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perl-style comments are not allowed. Use "// Comment." or "/* comment */" instead.
Code Climate has analyzed commit 0be3bdc and detected 29 issues on this pull request. Here's the issue category breakdown:
View more on Code Climate. |
No description provided.