Skip to content

Commit 009aa8e

Browse files
committed
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 8eac001 + 3b2a7b1 commit 009aa8e

26 files changed

+0
-52
lines changed

Authentication/AuthenticationProviderManager.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ class AuthenticationProviderManager implements AuthenticationManagerInterface
3535
private $eventDispatcher;
3636

3737
/**
38-
* Constructor.
39-
*
4038
* @param AuthenticationProviderInterface[] $providers An array of AuthenticationProviderInterface instances
4139
* @param bool $eraseCredentials Whether to erase credentials after authentication or not
4240
*

Authentication/AuthenticationTrustResolver.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ class AuthenticationTrustResolver implements AuthenticationTrustResolverInterfac
2424
private $rememberMeClass;
2525

2626
/**
27-
* Constructor.
28-
*
2927
* @param string $anonymousClass
3028
* @param string $rememberMeClass
3129
*/

Authentication/Provider/AnonymousAuthenticationProvider.php

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

2727
/**
28-
* Constructor.
29-
*
3028
* @param string $key The key shared with the authentication token
3129
*/
3230
public function __construct($key)

Authentication/Provider/DaoAuthenticationProvider.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ class DaoAuthenticationProvider extends UserAuthenticationProvider
3232
private $userProvider;
3333

3434
/**
35-
* Constructor.
36-
*
3735
* @param UserProviderInterface $userProvider An UserProviderInterface instance
3836
* @param UserCheckerInterface $userChecker An UserCheckerInterface instance
3937
* @param string $providerKey The provider key

Authentication/Provider/PreAuthenticatedAuthenticationProvider.php

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

3636
/**
37-
* Constructor.
38-
*
3937
* @param UserProviderInterface $userProvider An UserProviderInterface instance
4038
* @param UserCheckerInterface $userChecker An UserCheckerInterface instance
4139
* @param string $providerKey The provider key

Authentication/Provider/RememberMeAuthenticationProvider.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ class RememberMeAuthenticationProvider implements AuthenticationProviderInterfac
2323
private $providerKey;
2424

2525
/**
26-
* Constructor.
27-
*
2826
* @param UserCheckerInterface $userChecker An UserCheckerInterface interface
2927
* @param string $key A key
3028
* @param string $providerKey A provider key

Authentication/Provider/UserAuthenticationProvider.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ abstract class UserAuthenticationProvider implements AuthenticationProviderInter
3333
private $providerKey;
3434

3535
/**
36-
* Constructor.
37-
*
3836
* @param UserCheckerInterface $userChecker An UserCheckerInterface interface
3937
* @param string $providerKey A provider key
4038
* @param bool $hideUserNotFoundExceptions Whether to hide user not found exception or not

Authentication/RememberMe/PersistentToken.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ final class PersistentToken implements PersistentTokenInterface
2525
private $lastUsed;
2626

2727
/**
28-
* Constructor.
29-
*
3028
* @param string $class
3129
* @param string $username
3230
* @param string $series

Authentication/Token/AbstractToken.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ abstract class AbstractToken implements TokenInterface
3131
private $attributes = array();
3232

3333
/**
34-
* Constructor.
35-
*
3634
* @param (RoleInterface|string)[] $roles An array of roles
3735
*
3836
* @throws \InvalidArgumentException

Authentication/Token/AnonymousToken.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ class AnonymousToken extends AbstractToken
2323
private $key;
2424

2525
/**
26-
* Constructor.
27-
*
2826
* @param string $key The key shared with the authentication provider
2927
* @param string|object $user The user can be a UserInterface instance, or an object implementing a __toString method or the username as a regular string
3028
* @param RoleInterface[] $roles An array of roles

0 commit comments

Comments
 (0)