summaryrefslogtreecommitdiffstats
path: root/Core
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2012-10-24 17:41:27 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2012-10-24 17:41:27 +0200
commite3d359180c41a80803e06a5d277b3b319952c8ee (patch)
tree07c8f9edcd909eb7a049cc8f4faa4feb25f29d13 /Core
parentc8eee73f855b1c1b0af8f6292c7f291866d06b21 (diff)
parent3d287a5e46b6c915449616b1800e1984dbd83966 (diff)
downloadsymfony-security-e3d359180c41a80803e06a5d277b3b319952c8ee.zip
symfony-security-e3d359180c41a80803e06a5d277b3b319952c8ee.tar.gz
symfony-security-e3d359180c41a80803e06a5d277b3b319952c8ee.tar.bz2
Merge branch '2.1'
* 2.1: added missing use statment (closes #5825) Code cleanup [WebProfilerBundle] Fixed the use of nested macros Removed unused use statements. Nsdocblocks [ConfigDumpReference] avoid notice for variable nodes fixed fallback locale UniqueValidatorTest, Change message on assertions Documented removed _form_is_choice_group function Conflicts: src/Symfony/Bundle/FrameworkBundle/Command/ConfigDumpReferenceCommand.php src/Symfony/Bundle/WebProfilerBundle/Profiler/TemplateManager.php
Diffstat (limited to 'Core')
-rw-r--r--Core/Authentication/RememberMe/PersistentToken.php10
-rw-r--r--Core/Authentication/RememberMe/TokenProviderInterface.php6
2 files changed, 8 insertions, 8 deletions
diff --git a/Core/Authentication/RememberMe/PersistentToken.php b/Core/Authentication/RememberMe/PersistentToken.php
index a31c878..88b0413 100644
--- a/Core/Authentication/RememberMe/PersistentToken.php
+++ b/Core/Authentication/RememberMe/PersistentToken.php
@@ -27,11 +27,11 @@ final class PersistentToken implements PersistentTokenInterface
/**
* Constructor
*
- * @param string $class
- * @param string $username
- * @param string $series
- * @param string $tokenValue
- * @param DateTime $lastUsed
+ * @param string $class
+ * @param string $username
+ * @param string $series
+ * @param string $tokenValue
+ * @param \DateTime $lastUsed
*/
public function __construct($class, $username, $series, $tokenValue, \DateTime $lastUsed)
{
diff --git a/Core/Authentication/RememberMe/TokenProviderInterface.php b/Core/Authentication/RememberMe/TokenProviderInterface.php
index c8cfbd1..0c6f75e 100644
--- a/Core/Authentication/RememberMe/TokenProviderInterface.php
+++ b/Core/Authentication/RememberMe/TokenProviderInterface.php
@@ -39,9 +39,9 @@ interface TokenProviderInterface
/**
* Updates the token according to this data.
*
- * @param string $series
- * @param string $tokenValue
- * @param DateTime $lastUsed
+ * @param string $series
+ * @param string $tokenValue
+ * @param \DateTime $lastUsed
*/
public function updateToken($series, $tokenValue, \DateTime $lastUsed);