summaryrefslogtreecommitdiffstats
path: root/Core
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2011-04-19 14:06:30 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2011-04-19 14:06:30 +0200
commit72d6402d0f47a8dfa4502a22baba9056334f0f78 (patch)
tree748fb7b09a73cc3526f07bf0f9f08497bc2f138a /Core
parentd70af2f43eeaaa05e0c74bf470000cdc2295ef7c (diff)
parent8c104f24799cdeaceb65624a768e3dc10fee8550 (diff)
downloadsymfony-security-72d6402d0f47a8dfa4502a22baba9056334f0f78.zip
symfony-security-72d6402d0f47a8dfa4502a22baba9056334f0f78.tar.gz
symfony-security-72d6402d0f47a8dfa4502a22baba9056334f0f78.tar.bz2
Merge remote branch 'brikou/coding_standards'
* brikou/coding_standards: removed empty lines/trailing spaces
Diffstat (limited to 'Core')
-rw-r--r--Core/Authentication/RememberMe/PersistentTokenInterface.php8
-rw-r--r--Core/Exception/CookieTheftException.php2
-rw-r--r--Core/Exception/TokenNotFoundException.php2
3 files changed, 6 insertions, 6 deletions
diff --git a/Core/Authentication/RememberMe/PersistentTokenInterface.php b/Core/Authentication/RememberMe/PersistentTokenInterface.php
index bfd077e..fe1db51 100644
--- a/Core/Authentication/RememberMe/PersistentTokenInterface.php
+++ b/Core/Authentication/RememberMe/PersistentTokenInterface.php
@@ -14,7 +14,7 @@ namespace Symfony\Component\Security\Core\Authentication\RememberMe;
/**
* Interface to be implemented by persistent token classes (such as
* Doctrine entities representing a remember-me token)
- *
+ *
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
*/
interface PersistentTokenInterface
@@ -24,19 +24,19 @@ interface PersistentTokenInterface
* @return string
*/
function getUsername();
-
+
/**
* Returns the series
* @return string
*/
function getSeries();
-
+
/**
* Returns the token value
* @return string
*/
function getTokenValue();
-
+
/**
* Returns the last time the cookie was used
* @return \DateTime
diff --git a/Core/Exception/CookieTheftException.php b/Core/Exception/CookieTheftException.php
index 6dbead5..83e61d7 100644
--- a/Core/Exception/CookieTheftException.php
+++ b/Core/Exception/CookieTheftException.php
@@ -14,7 +14,7 @@ namespace Symfony\Component\Security\Core\Exception;
/**
* This exception is thrown when the RememberMeServices implementation
* detects that a presented cookie has already been used by someone else.
- *
+ *
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
*/
class CookieTheftException extends AuthenticationException
diff --git a/Core/Exception/TokenNotFoundException.php b/Core/Exception/TokenNotFoundException.php
index f25905d..593f3ad 100644
--- a/Core/Exception/TokenNotFoundException.php
+++ b/Core/Exception/TokenNotFoundException.php
@@ -1,4 +1,4 @@
-<?php
+<?php
namespace Symfony\Component\Security\Core\Exception;
/*