summaryrefslogtreecommitdiffstats
path: root/Core/Authentication/Token/TokenInterface.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2014-12-02 21:19:20 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2014-12-02 21:19:20 +0100
commit95579d91a123f8b2af6709bcf1e4b2157a65c6ce (patch)
treef17bcfadb6a066bc4704e75aa2158e483c82f443 /Core/Authentication/Token/TokenInterface.php
parentc2c3bd12e70eb8c74471ecba8254057b12affb1e (diff)
parentaba0b41e79aaae3c8eb9c52f9b2da2f01adb80ca (diff)
downloadsymfony-security-95579d91a123f8b2af6709bcf1e4b2157a65c6ce.zip
symfony-security-95579d91a123f8b2af6709bcf1e4b2157a65c6ce.tar.gz
symfony-security-95579d91a123f8b2af6709bcf1e4b2157a65c6ce.tar.bz2
Merge branch '2.5' into 2.6v2.6.1
* 2.5: Configure firewall's kernel exception listener with configured entry point or a default entry point PSR-2 fixes [DependencyInjection] make paths relative to __DIR__ in the generated container Fixed the syntax of a composer.json file Fixed the symfony/config version constraint Tweaked the password-compat version constraint Docblock fixes Remove dialog usage define constant only if it wasn't defined before Fix incorrect spanish translation Fixed typos Conflicts: src/Symfony/Bundle/TwigBundle/Controller/ExceptionController.php src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php src/Symfony/Component/OptionsResolver/Options.php src/Symfony/Component/OptionsResolver/OptionsResolverInterface.php src/Symfony/Component/Process/ProcessPipes.php src/Symfony/Component/Security/Http/Tests/Firewall/RememberMeListenerTest.php src/Symfony/Component/Serializer/Normalizer/DenormalizableInterface.php src/Symfony/Component/Validator/ConstraintViolation.php src/Symfony/Component/Yaml/Inline.php src/Symfony/Component/Yaml/Parser.php
Diffstat (limited to 'Core/Authentication/Token/TokenInterface.php')
-rw-r--r--Core/Authentication/Token/TokenInterface.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/Core/Authentication/Token/TokenInterface.php b/Core/Authentication/Token/TokenInterface.php
index 8f7d03f..fb9fd14 100644
--- a/Core/Authentication/Token/TokenInterface.php
+++ b/Core/Authentication/Token/TokenInterface.php
@@ -48,7 +48,7 @@ interface TokenInterface extends \Serializable
* Returns a user representation.
*
* @return mixed either returns an object which implements __toString(), or
- * a primitive string is returned.
+ * a primitive string is returned.
*/
public function getUser();
@@ -69,14 +69,14 @@ interface TokenInterface extends \Serializable
/**
* Returns whether the user is authenticated or not.
*
- * @return bool true if the token has been authenticated, false otherwise
+ * @return bool true if the token has been authenticated, false otherwise
*/
public function isAuthenticated();
/**
* Sets the authenticated flag.
*
- * @param bool $isAuthenticated The authenticated flag
+ * @param bool $isAuthenticated The authenticated flag
*/
public function setAuthenticated($isAuthenticated);
@@ -104,7 +104,7 @@ interface TokenInterface extends \Serializable
*
* @param string $name The attribute name
*
- * @return bool true if the attribute exists, false otherwise
+ * @return bool true if the attribute exists, false otherwise
*/
public function hasAttribute($name);