Skip to content

Commit 22e165c

Browse files
committed
made {@inheritdoc} annotations consistent across the board
1 parent 6708ee7 commit 22e165c

22 files changed

+31
-31
lines changed

Authentication/AuthenticationTrustResolver.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function __construct($anonymousClass, $rememberMeClass)
3636
}
3737

3838
/**
39-
* {@inheritDoc}
39+
* {@inheritdoc}
4040
*/
4141
public function isAnonymous(TokenInterface $token = null)
4242
{
@@ -48,7 +48,7 @@ public function isAnonymous(TokenInterface $token = null)
4848
}
4949

5050
/**
51-
* {@inheritDoc}
51+
* {@inheritdoc}
5252
*/
5353
public function isRememberMe(TokenInterface $token = null)
5454
{
@@ -60,7 +60,7 @@ public function isRememberMe(TokenInterface $token = null)
6060
}
6161

6262
/**
63-
* {@inheritDoc}
63+
* {@inheritdoc}
6464
*/
6565
public function isFullFledged(TokenInterface $token = null)
6666
{

Authentication/Token/AbstractToken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ public function setAttribute($name, $value)
229229
}
230230

231231
/**
232-
* {@inheritDoc}
232+
* {@inheritdoc}
233233
*/
234234
public function __toString()
235235
{

Authentication/Token/AnonymousToken.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ public function getKey()
5757
}
5858

5959
/**
60-
* {@inheritDoc}
60+
* {@inheritdoc}
6161
*/
6262
public function serialize()
6363
{
6464
return serialize(array($this->key, parent::serialize()));
6565
}
6666

6767
/**
68-
* {@inheritDoc}
68+
* {@inheritdoc}
6969
*/
7070
public function unserialize($serialized)
7171
{

Encoder/EncoderFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function __construct(array $encoders)
2626
}
2727

2828
/**
29-
* {@inheritDoc}
29+
* {@inheritdoc}
3030
*/
3131
public function getEncoder($user)
3232
{

Exception/AccountExpiredException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class AccountExpiredException extends AccountStatusException
2121
{
2222
/**
23-
* {@inheritDoc}
23+
* {@inheritdoc}
2424
*/
2525
public function getMessageKey()
2626
{

Exception/AccountStatusException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function setUser(UserInterface $user)
4545
}
4646

4747
/**
48-
* {@inheritDoc}
48+
* {@inheritdoc}
4949
*/
5050
public function serialize()
5151
{
@@ -56,7 +56,7 @@ public function serialize()
5656
}
5757

5858
/**
59-
* {@inheritDoc}
59+
* {@inheritdoc}
6060
*/
6161
public function unserialize($str)
6262
{

Exception/AuthenticationCredentialsNotFoundException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class AuthenticationCredentialsNotFoundException extends AuthenticationException
2222
{
2323
/**
24-
* {@inheritDoc}
24+
* {@inheritdoc}
2525
*/
2626
public function getMessageKey()
2727
{

Exception/AuthenticationServiceException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class AuthenticationServiceException extends AuthenticationException
2121
{
2222
/**
23-
* {@inheritDoc}
23+
* {@inheritdoc}
2424
*/
2525
public function getMessageKey()
2626
{

Exception/BadCredentialsException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class BadCredentialsException extends AuthenticationException
2121
{
2222
/**
23-
* {@inheritDoc}
23+
* {@inheritdoc}
2424
*/
2525
public function getMessageKey()
2626
{

Exception/CookieTheftException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class CookieTheftException extends AuthenticationException
2222
{
2323
/**
24-
* {@inheritDoc}
24+
* {@inheritdoc}
2525
*/
2626
public function getMessageKey()
2727
{

Exception/CredentialsExpiredException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class CredentialsExpiredException extends AccountStatusException
2121
{
2222
/**
23-
* {@inheritDoc}
23+
* {@inheritdoc}
2424
*/
2525
public function getMessageKey()
2626
{

Exception/DisabledException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class DisabledException extends AccountStatusException
2121
{
2222
/**
23-
* {@inheritDoc}
23+
* {@inheritdoc}
2424
*/
2525
public function getMessageKey()
2626
{

Exception/InsufficientAuthenticationException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
class InsufficientAuthenticationException extends AuthenticationException
2323
{
2424
/**
25-
* {@inheritDoc}
25+
* {@inheritdoc}
2626
*/
2727
public function getMessageKey()
2828
{

Exception/InvalidCsrfTokenException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class InvalidCsrfTokenException extends AuthenticationException
2121
{
2222
/**
23-
* {@inheritDoc}
23+
* {@inheritdoc}
2424
*/
2525
public function getMessageKey()
2626
{

Exception/LockedException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class LockedException extends AccountStatusException
2121
{
2222
/**
23-
* {@inheritDoc}
23+
* {@inheritdoc}
2424
*/
2525
public function getMessageKey()
2626
{

Exception/NonceExpiredException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class NonceExpiredException extends AuthenticationException
2222
{
2323
/**
24-
* {@inheritDoc}
24+
* {@inheritdoc}
2525
*/
2626
public function getMessageKey()
2727
{

Exception/ProviderNotFoundException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class ProviderNotFoundException extends AuthenticationException
2222
{
2323
/**
24-
* {@inheritDoc}
24+
* {@inheritdoc}
2525
*/
2626
public function getMessageKey()
2727
{

Exception/SessionUnavailableException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
class SessionUnavailableException extends AuthenticationException
2727
{
2828
/**
29-
* {@inheritDoc}
29+
* {@inheritdoc}
3030
*/
3131
public function getMessageKey()
3232
{

Exception/TokenNotFoundException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class TokenNotFoundException extends AuthenticationException
2121
{
2222
/**
23-
* {@inheritDoc}
23+
* {@inheritdoc}
2424
*/
2525
public function getMessageKey()
2626
{

Exception/UsernameNotFoundException.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class UsernameNotFoundException extends AuthenticationException
2222
private $username;
2323

2424
/**
25-
* {@inheritDoc}
25+
* {@inheritdoc}
2626
*/
2727
public function getMessageKey()
2828
{
@@ -50,7 +50,7 @@ public function setUsername($username)
5050
}
5151

5252
/**
53-
* {@inheritDoc}
53+
* {@inheritdoc}
5454
*/
5555
public function serialize()
5656
{
@@ -61,7 +61,7 @@ public function serialize()
6161
}
6262

6363
/**
64-
* {@inheritDoc}
64+
* {@inheritdoc}
6565
*/
6666
public function unserialize($str)
6767
{

User/ChainUserProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function getProviders()
4040
}
4141

4242
/**
43-
* {@inheritDoc}
43+
* {@inheritdoc}
4444
*/
4545
public function loadUserByUsername($username)
4646
{
@@ -58,7 +58,7 @@ public function loadUserByUsername($username)
5858
}
5959

6060
/**
61-
* {@inheritDoc}
61+
* {@inheritdoc}
6262
*/
6363
public function refreshUser(UserInterface $user)
6464
{
@@ -85,7 +85,7 @@ public function refreshUser(UserInterface $user)
8585
}
8686

8787
/**
88-
* {@inheritDoc}
88+
* {@inheritdoc}
8989
*/
9090
public function supportsClass($class)
9191
{

User/InMemoryUserProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public function loadUserByUsername($username)
8181
}
8282

8383
/**
84-
* {@inheritDoc}
84+
* {@inheritdoc}
8585
*/
8686
public function refreshUser(UserInterface $user)
8787
{
@@ -93,7 +93,7 @@ public function refreshUser(UserInterface $user)
9393
}
9494

9595
/**
96-
* {@inheritDoc}
96+
* {@inheritdoc}
9797
*/
9898
public function supportsClass($class)
9999
{

0 commit comments

Comments
 (0)