summaryrefslogtreecommitdiffstats
path: root/Http
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2014-04-16 09:04:52 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2014-04-16 09:04:52 +0200
commit74eaf535ddcd6cad834c68e7802cfcb08f400c1e (patch)
tree6e2a4283111299cc757cda0f0ab55205a1d92ca3 /Http
parent6c29ed759766479de35af52bcdda6e9e2a945b2d (diff)
parenta408a8a27c9f808193e2128845153ddeb411345e (diff)
downloadsymfony-security-74eaf535ddcd6cad834c68e7802cfcb08f400c1e.zip
symfony-security-74eaf535ddcd6cad834c68e7802cfcb08f400c1e.tar.gz
symfony-security-74eaf535ddcd6cad834c68e7802cfcb08f400c1e.tar.bz2
minor #10713 made {@inheritdoc} annotations consistent across the board (fabpot)
This PR was merged into the 2.3 branch. Discussion ---------- made {@inheritdoc} annotations consistent across the board | Q | A | ------------- | --- | License | MIT Commits ------- 810b9ed made {@inheritdoc} annotations consistent across the board
Diffstat (limited to 'Http')
-rw-r--r--Http/AccessMap.php2
-rw-r--r--Http/Authentication/DefaultAuthenticationFailureHandler.php2
-rw-r--r--Http/Authentication/DefaultAuthenticationSuccessHandler.php2
-rw-r--r--Http/Firewall.php2
-rw-r--r--Http/FirewallMap.php2
-rw-r--r--Http/Logout/DefaultLogoutSuccessHandler.php2
-rw-r--r--Http/RememberMe/PersistentTokenBasedRememberMeServices.php6
-rw-r--r--Http/RememberMe/ResponseListener.php2
-rw-r--r--Http/RememberMe/TokenBasedRememberMeServices.php4
-rw-r--r--Http/Session/SessionAuthenticationStrategy.php2
10 files changed, 13 insertions, 13 deletions
diff --git a/Http/AccessMap.php b/Http/AccessMap.php
index 051a8c2..14fcbe1 100644
--- a/Http/AccessMap.php
+++ b/Http/AccessMap.php
@@ -37,7 +37,7 @@ class AccessMap implements AccessMapInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getPatterns(Request $request)
{
diff --git a/Http/Authentication/DefaultAuthenticationFailureHandler.php b/Http/Authentication/DefaultAuthenticationFailureHandler.php
index 70dcd1e..f106a4a 100644
--- a/Http/Authentication/DefaultAuthenticationFailureHandler.php
+++ b/Http/Authentication/DefaultAuthenticationFailureHandler.php
@@ -58,7 +58,7 @@ class DefaultAuthenticationFailureHandler implements AuthenticationFailureHandle
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function onAuthenticationFailure(Request $request, AuthenticationException $exception)
{
diff --git a/Http/Authentication/DefaultAuthenticationSuccessHandler.php b/Http/Authentication/DefaultAuthenticationSuccessHandler.php
index 0c084b9..54d6fc1 100644
--- a/Http/Authentication/DefaultAuthenticationSuccessHandler.php
+++ b/Http/Authentication/DefaultAuthenticationSuccessHandler.php
@@ -48,7 +48,7 @@ class DefaultAuthenticationSuccessHandler implements AuthenticationSuccessHandle
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function onAuthenticationSuccess(Request $request, TokenInterface $token)
{
diff --git a/Http/Firewall.php b/Http/Firewall.php
index 4f1cf30..7499c6f 100644
--- a/Http/Firewall.php
+++ b/Http/Firewall.php
@@ -72,7 +72,7 @@ class Firewall implements EventSubscriberInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public static function getSubscribedEvents()
{
diff --git a/Http/FirewallMap.php b/Http/FirewallMap.php
index 0554bed..1bb73bd 100644
--- a/Http/FirewallMap.php
+++ b/Http/FirewallMap.php
@@ -36,7 +36,7 @@ class FirewallMap implements FirewallMapInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getListeners(Request $request)
{
diff --git a/Http/Logout/DefaultLogoutSuccessHandler.php b/Http/Logout/DefaultLogoutSuccessHandler.php
index 70f15cf..48626b0 100644
--- a/Http/Logout/DefaultLogoutSuccessHandler.php
+++ b/Http/Logout/DefaultLogoutSuccessHandler.php
@@ -37,7 +37,7 @@ class DefaultLogoutSuccessHandler implements LogoutSuccessHandlerInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function onLogoutSuccess(Request $request)
{
diff --git a/Http/RememberMe/PersistentTokenBasedRememberMeServices.php b/Http/RememberMe/PersistentTokenBasedRememberMeServices.php
index 6500bfd..12478dc 100644
--- a/Http/RememberMe/PersistentTokenBasedRememberMeServices.php
+++ b/Http/RememberMe/PersistentTokenBasedRememberMeServices.php
@@ -62,7 +62,7 @@ class PersistentTokenBasedRememberMeServices extends AbstractRememberMeServices
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
protected function cancelCookie(Request $request)
{
@@ -79,7 +79,7 @@ class PersistentTokenBasedRememberMeServices extends AbstractRememberMeServices
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
protected function processAutoLoginCookie(array $cookieParts, Request $request)
{
@@ -117,7 +117,7 @@ class PersistentTokenBasedRememberMeServices extends AbstractRememberMeServices
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
protected function onLoginSuccess(Request $request, Response $response, TokenInterface $token)
{
diff --git a/Http/RememberMe/ResponseListener.php b/Http/RememberMe/ResponseListener.php
index 6087587..2253c5d 100644
--- a/Http/RememberMe/ResponseListener.php
+++ b/Http/RememberMe/ResponseListener.php
@@ -36,7 +36,7 @@ class ResponseListener implements EventSubscriberInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public static function getSubscribedEvents()
{
diff --git a/Http/RememberMe/TokenBasedRememberMeServices.php b/Http/RememberMe/TokenBasedRememberMeServices.php
index 64d41be..75a2a0d 100644
--- a/Http/RememberMe/TokenBasedRememberMeServices.php
+++ b/Http/RememberMe/TokenBasedRememberMeServices.php
@@ -27,7 +27,7 @@ use Symfony\Component\Security\Core\User\UserInterface;
class TokenBasedRememberMeServices extends AbstractRememberMeServices
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
protected function processAutoLoginCookie(array $cookieParts, Request $request)
{
@@ -90,7 +90,7 @@ class TokenBasedRememberMeServices extends AbstractRememberMeServices
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
protected function onLoginSuccess(Request $request, Response $response, TokenInterface $token)
{
diff --git a/Http/Session/SessionAuthenticationStrategy.php b/Http/Session/SessionAuthenticationStrategy.php
index e9c9826..17160a1 100644
--- a/Http/Session/SessionAuthenticationStrategy.php
+++ b/Http/Session/SessionAuthenticationStrategy.php
@@ -38,7 +38,7 @@ class SessionAuthenticationStrategy implements SessionAuthenticationStrategyInte
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function onAuthentication(Request $request, TokenInterface $token)
{