Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 67cc8a9

Browse files
committedSep 30, 2017
minor #24342 removed useless PHPDoc (OskarStark)
This PR was squashed before being merged into the 2.7 branch (closes #24342). Discussion ---------- removed useless PHPDoc | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | no | New feature? | no <!-- don't forget updating src/**/CHANGELOG.md files --> | BC breaks? | no | Deprecations? | no <!-- don't forget updating UPGRADE-*.md files --> | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | n/a Commits ------- 5ee9043d8b removed useless PHPDoc
2 parents b1ed4c8 + 7ea2f63 commit 67cc8a9

18 files changed

+0
-38
lines changed
 

‎AccessMap.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ class AccessMap implements AccessMapInterface
2525
private $map = array();
2626

2727
/**
28-
* Constructor.
29-
*
3028
* @param RequestMatcherInterface $requestMatcher A RequestMatcherInterface instance
3129
* @param array $attributes An array of attributes to pass to the access decision manager (like roles)
3230
* @param string|null $channel The channel to enforce (http, https, or null)

‎Authentication/CustomAuthenticationFailureHandler.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ class CustomAuthenticationFailureHandler implements AuthenticationFailureHandler
2222
private $handler;
2323

2424
/**
25-
* Constructor.
26-
*
2725
* @param AuthenticationFailureHandlerInterface $handler An AuthenticationFailureHandlerInterface instance
2826
* @param array $options Options for processing a successful authentication attempt
2927
*/

‎Authentication/CustomAuthenticationSuccessHandler.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ class CustomAuthenticationSuccessHandler implements AuthenticationSuccessHandler
2222
private $handler;
2323

2424
/**
25-
* Constructor.
26-
*
2725
* @param AuthenticationSuccessHandlerInterface $handler An AuthenticationSuccessHandlerInterface instance
2826
* @param array $options Options for processing a successful authentication attempt
2927
* @param string $providerKey The provider key

‎Authentication/DefaultAuthenticationFailureHandler.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ class DefaultAuthenticationFailureHandler implements AuthenticationFailureHandle
4242
);
4343

4444
/**
45-
* Constructor.
46-
*
4745
* @param HttpKernelInterface $httpKernel
4846
* @param HttpUtils $httpUtils
4947
* @param array $options Options for processing a failed authentication attempt

‎Authentication/DefaultAuthenticationSuccessHandler.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ class DefaultAuthenticationSuccessHandler implements AuthenticationSuccessHandle
3636
);
3737

3838
/**
39-
* Constructor.
40-
*
4139
* @param HttpUtils $httpUtils
4240
* @param array $options Options for processing a successful authentication attempt
4341
*/

‎Authentication/SimpleAuthenticationHandler.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ class SimpleAuthenticationHandler implements AuthenticationFailureHandlerInterfa
3535
protected $logger;
3636

3737
/**
38-
* Constructor.
39-
*
4038
* @param SimpleAuthenticatorInterface $authenticator SimpleAuthenticatorInterface instance
4139
* @param AuthenticationSuccessHandlerInterface $successHandler Default success handler
4240
* @param AuthenticationFailureHandlerInterface $failureHandler Default failure handler

‎EntryPoint/FormAuthenticationEntryPoint.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ class FormAuthenticationEntryPoint implements AuthenticationEntryPointInterface
2929
private $httpUtils;
3030

3131
/**
32-
* Constructor.
33-
*
3432
* @param HttpKernelInterface $kernel
3533
* @param HttpUtils $httpUtils An HttpUtils instance
3634
* @param string $loginPath The path to the login form

‎Event/InteractiveLoginEvent.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
1717

1818
/**
19-
* InteractiveLoginEvent.
20-
*
2119
* @author Fabien Potencier <fabien@symfony.com>
2220
*/
2321
class InteractiveLoginEvent extends Event
@@ -26,8 +24,6 @@ class InteractiveLoginEvent extends Event
2624
private $authenticationToken;
2725

2826
/**
29-
* Constructor.
30-
*
3127
* @param Request $request A Request instance
3228
* @param TokenInterface $authenticationToken A TokenInterface instance
3329
*/

‎Firewall.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ class Firewall implements EventSubscriberInterface
3434
private $exceptionListeners;
3535

3636
/**
37-
* Constructor.
38-
*
3937
* @param FirewallMapInterface $map A FirewallMapInterface instance
4038
* @param EventDispatcherInterface $dispatcher An EventDispatcherInterface instance
4139
*/

‎Firewall/AbstractAuthenticationListener.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@ abstract class AbstractAuthenticationListener implements ListenerInterface
6464
private $rememberMeServices;
6565

6666
/**
67-
* Constructor.
68-
*
6967
* @param TokenStorageInterface $tokenStorage A TokenStorageInterface instance
7068
* @param AuthenticationManagerInterface $authenticationManager An AuthenticationManagerInterface instance
7169
* @param SessionAuthenticationStrategyInterface $sessionStrategy

‎Firewall/LogoutListener.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ class LogoutListener implements ListenerInterface
4040
private $csrfTokenManager;
4141

4242
/**
43-
* Constructor.
44-
*
4543
* @param TokenStorageInterface $tokenStorage
4644
* @param HttpUtils $httpUtils An HttpUtils instance
4745
* @param LogoutSuccessHandlerInterface $successHandler A LogoutSuccessHandlerInterface instance

‎Firewall/RememberMeListener.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ class RememberMeListener implements ListenerInterface
3939
private $sessionStrategy;
4040

4141
/**
42-
* Constructor.
43-
*
4442
* @param TokenStorageInterface $tokenStorage
4543
* @param RememberMeServicesInterface $rememberMeServices
4644
* @param AuthenticationManagerInterface $authenticationManager

‎Firewall/SimpleFormAuthenticationListener.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ class SimpleFormAuthenticationListener extends AbstractAuthenticationListener
3939
private $csrfTokenManager;
4040

4141
/**
42-
* Constructor.
43-
*
4442
* @param TokenStorageInterface $tokenStorage A TokenStorageInterface instance
4543
* @param AuthenticationManagerInterface $authenticationManager An AuthenticationManagerInterface instance
4644
* @param SessionAuthenticationStrategyInterface $sessionStrategy

‎Firewall/SimplePreAuthenticationListener.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ class SimplePreAuthenticationListener implements ListenerInterface
4040
private $dispatcher;
4141

4242
/**
43-
* Constructor.
44-
*
4543
* @param TokenStorageInterface $tokenStorage A TokenStorageInterface instance
4644
* @param AuthenticationManagerInterface $authenticationManager An AuthenticationManagerInterface instance
4745
* @param string $providerKey

‎HttpUtils.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ class HttpUtils
3131
private $urlMatcher;
3232

3333
/**
34-
* Constructor.
35-
*
3634
* @param UrlGeneratorInterface $urlGenerator A UrlGeneratorInterface instance
3735
* @param UrlMatcherInterface|RequestMatcherInterface $urlMatcher The URL or Request matcher
3836
*

‎Logout/CookieClearingLogoutHandler.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ class CookieClearingLogoutHandler implements LogoutHandlerInterface
2525
private $cookies;
2626

2727
/**
28-
* Constructor.
29-
*
3028
* @param array $cookies An array of cookie names to unset
3129
*/
3230
public function __construct(array $cookies)

‎RememberMe/AbstractRememberMeServices.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ abstract class AbstractRememberMeServices implements RememberMeServicesInterface
4343
private $userProviders;
4444

4545
/**
46-
* Constructor.
47-
*
4846
* @param array $userProviders
4947
* @param string $key
5048
* @param string $providerKey

‎RememberMe/PersistentTokenBasedRememberMeServices.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ class PersistentTokenBasedRememberMeServices extends AbstractRememberMeServices
3636
private $secureRandom;
3737

3838
/**
39-
* Constructor.
40-
*
4139
* @param array $userProviders
4240
* @param string $key
4341
* @param string $providerKey

0 commit comments

Comments
 (0)
Please sign in to comment.