Skip to content

Commit 3c2c43c

Browse files
committed
made {@inheritdoc} annotations consistent across the board
1 parent 52ed8ca commit 3c2c43c

10 files changed

+13
-13
lines changed

AccessMap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function add(RequestMatcherInterface $requestMatcher, array $roles = arra
3737
}
3838

3939
/**
40-
* {@inheritDoc}
40+
* {@inheritdoc}
4141
*/
4242
public function getPatterns(Request $request)
4343
{

Authentication/DefaultAuthenticationFailureHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function __construct(HttpKernelInterface $httpKernel, HttpUtils $httpUtil
5858
}
5959

6060
/**
61-
* {@inheritDoc}
61+
* {@inheritdoc}
6262
*/
6363
public function onAuthenticationFailure(Request $request, AuthenticationException $exception)
6464
{

Authentication/DefaultAuthenticationSuccessHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function __construct(HttpUtils $httpUtils, array $options)
4848
}
4949

5050
/**
51-
* {@inheritDoc}
51+
* {@inheritdoc}
5252
*/
5353
public function onAuthenticationSuccess(Request $request, TokenInterface $token)
5454
{

Firewall.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function onKernelRequest(GetResponseEvent $event)
7272
}
7373

7474
/**
75-
* {@inheritDoc}
75+
* {@inheritdoc}
7676
*/
7777
public static function getSubscribedEvents()
7878
{

FirewallMap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function add(RequestMatcherInterface $requestMatcher = null, array $liste
3636
}
3737

3838
/**
39-
* {@inheritDoc}
39+
* {@inheritdoc}
4040
*/
4141
public function getListeners(Request $request)
4242
{

Logout/DefaultLogoutSuccessHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function __construct(HttpUtils $httpUtils, $targetUrl = '/')
3737
}
3838

3939
/**
40-
* {@inheritDoc}
40+
* {@inheritdoc}
4141
*/
4242
public function onLogoutSuccess(Request $request)
4343
{

RememberMe/PersistentTokenBasedRememberMeServices.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function setTokenProvider(TokenProviderInterface $tokenProvider)
6262
}
6363

6464
/**
65-
* {@inheritDoc}
65+
* {@inheritdoc}
6666
*/
6767
protected function cancelCookie(Request $request)
6868
{
@@ -79,7 +79,7 @@ protected function cancelCookie(Request $request)
7979
}
8080

8181
/**
82-
* {@inheritDoc}
82+
* {@inheritdoc}
8383
*/
8484
protected function processAutoLoginCookie(array $cookieParts, Request $request)
8585
{
@@ -117,7 +117,7 @@ protected function processAutoLoginCookie(array $cookieParts, Request $request)
117117
}
118118

119119
/**
120-
* {@inheritDoc}
120+
* {@inheritdoc}
121121
*/
122122
protected function onLoginSuccess(Request $request, Response $response, TokenInterface $token)
123123
{

RememberMe/ResponseListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function onKernelResponse(FilterResponseEvent $event)
3636
}
3737

3838
/**
39-
* {@inheritDoc}
39+
* {@inheritdoc}
4040
*/
4141
public static function getSubscribedEvents()
4242
{

RememberMe/TokenBasedRememberMeServices.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
class TokenBasedRememberMeServices extends AbstractRememberMeServices
2828
{
2929
/**
30-
* {@inheritDoc}
30+
* {@inheritdoc}
3131
*/
3232
protected function processAutoLoginCookie(array $cookieParts, Request $request)
3333
{
@@ -90,7 +90,7 @@ private function compareHashes($hash1, $hash2)
9090
}
9191

9292
/**
93-
* {@inheritDoc}
93+
* {@inheritdoc}
9494
*/
9595
protected function onLoginSuccess(Request $request, Response $response, TokenInterface $token)
9696
{

Session/SessionAuthenticationStrategy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function __construct($strategy)
3838
}
3939

4040
/**
41-
* {@inheritDoc}
41+
* {@inheritdoc}
4242
*/
4343
public function onAuthentication(Request $request, TokenInterface $token)
4444
{

0 commit comments

Comments
 (0)