summaryrefslogtreecommitdiffstats
path: root/Core
diff options
context:
space:
mode:
authorHelmer Aaviksoo <helmer.aaviksoo@gmail.com>2011-10-07 11:15:35 +0300
committerHelmer Aaviksoo <helmer.aaviksoo@gmail.com>2011-10-07 11:15:35 +0300
commit6bfd7888e845d89b550d2c40b09b44312f327fa5 (patch)
tree894063a6507a0021b06842e75e68e7fd98ee539d /Core
parent323d5fe1c067338a5ebe99d97b91b8ab9f90218c (diff)
downloadsymfony-security-6bfd7888e845d89b550d2c40b09b44312f327fa5.zip
symfony-security-6bfd7888e845d89b550d2c40b09b44312f327fa5.tar.gz
symfony-security-6bfd7888e845d89b550d2c40b09b44312f327fa5.tar.bz2
Removed redundant "@return void"-s
Diffstat (limited to 'Core')
-rw-r--r--Core/Authentication/AuthenticationTrustResolver.php2
-rw-r--r--Core/Authorization/Voter/AuthenticatedVoter.php2
-rw-r--r--Core/SecurityContextInterface.php1
-rw-r--r--Core/User/UserInterface.php2
4 files changed, 0 insertions, 7 deletions
diff --git a/Core/Authentication/AuthenticationTrustResolver.php b/Core/Authentication/AuthenticationTrustResolver.php
index 8ca28fb..9b3ff3d 100644
--- a/Core/Authentication/AuthenticationTrustResolver.php
+++ b/Core/Authentication/AuthenticationTrustResolver.php
@@ -28,8 +28,6 @@ class AuthenticationTrustResolver implements AuthenticationTrustResolverInterfac
*
* @param string $anonymousClass
* @param string $rememberMeClass
- *
- * @return void
*/
public function __construct($anonymousClass, $rememberMeClass)
{
diff --git a/Core/Authorization/Voter/AuthenticatedVoter.php b/Core/Authorization/Voter/AuthenticatedVoter.php
index d750e33..5847e0d 100644
--- a/Core/Authorization/Voter/AuthenticatedVoter.php
+++ b/Core/Authorization/Voter/AuthenticatedVoter.php
@@ -35,8 +35,6 @@ class AuthenticatedVoter implements VoterInterface
* Constructor.
*
* @param AuthenticationTrustResolverInterface $authenticationTrustResolver
- *
- * @return void
*/
public function __construct(AuthenticationTrustResolverInterface $authenticationTrustResolver)
{
diff --git a/Core/SecurityContextInterface.php b/Core/SecurityContextInterface.php
index d57c409..d0c7214 100644
--- a/Core/SecurityContextInterface.php
+++ b/Core/SecurityContextInterface.php
@@ -35,7 +35,6 @@ interface SecurityContextInterface
* Sets the authentication token.
*
* @param TokenInterface $token
- * @return void
*/
function setToken(TokenInterface $token = null);
diff --git a/Core/User/UserInterface.php b/Core/User/UserInterface.php
index 9091bfc..f6356fe 100644
--- a/Core/User/UserInterface.php
+++ b/Core/User/UserInterface.php
@@ -48,8 +48,6 @@ interface UserInterface
/**
* Removes sensitive data from the user.
- *
- * @return void
*/
function eraseCredentials();