Skip to content

Commit 02c68c4

Browse files
committed
Fix CS
1 parent 1a2f814 commit 02c68c4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Authenticator/AuthenticatorInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function supports(Request $request): ?bool;
5555
*
5656
* @return Passport
5757
*/
58-
public function authenticate(Request $request); /*: Passport;*/
58+
public function authenticate(Request $request); /* : Passport; */
5959

6060
/**
6161
* Create an authenticated token for the given user.

Firewall/AccessListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class AccessListener extends AbstractListener
3939
private $authManager;
4040
private $exceptionOnNoToken;
4141

42-
public function __construct(TokenStorageInterface $tokenStorage, AccessDecisionManagerInterface $accessDecisionManager, AccessMapInterface $map, /*bool*/ $exceptionOnNoToken = true)
42+
public function __construct(TokenStorageInterface $tokenStorage, AccessDecisionManagerInterface $accessDecisionManager, AccessMapInterface $map, /* bool */ $exceptionOnNoToken = true)
4343
{
4444
if ($exceptionOnNoToken instanceof AuthenticationManagerInterface) {
4545
trigger_deprecation('symfony/security-http', '5.4', 'The $authManager argument of "%s" is deprecated.', __METHOD__);

Firewall/ChannelListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class ChannelListener extends AbstractListener
3434
private $httpPort;
3535
private $httpsPort;
3636

37-
public function __construct(AccessMapInterface $map, /*LoggerInterface*/ $logger = null, /*int*/ $httpPort = 80, /*int*/ $httpsPort = 443)
37+
public function __construct(AccessMapInterface $map, /* LoggerInterface */ $logger = null, /* int */ $httpPort = 80, /* int */ $httpsPort = 443)
3838
{
3939
if ($logger instanceof AuthenticationEntryPointInterface) {
4040
trigger_deprecation('symfony/security-http', '5.4', 'The "$authenticationEntryPoint" argument of "%s()" is deprecated.', __METHOD__);

0 commit comments

Comments
 (0)