summaryrefslogtreecommitdiffstats
path: root/Core
diff options
context:
space:
mode:
Diffstat (limited to 'Core')
-rw-r--r--Core/User/ComparableInterface.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/Core/User/ComparableInterface.php b/Core/User/ComparableInterface.php
index 2d1fe8f..0dde4f1 100644
--- a/Core/User/ComparableInterface.php
+++ b/Core/User/ComparableInterface.php
@@ -12,7 +12,7 @@
namespace Symfony\Component\Security\Core\User;
/**
- * ComparatorInterface used to test if two object are equal in security
+ * ComparableInterface used to test if two objects are equal in security
* and re-authentication context.
*
* @author Dariusz Górecki <darek.krk@gmail.com>
@@ -26,7 +26,9 @@ interface ComparableInterface
* However, you do not need to compare every attribute, but only those that
* are relevant for assessing whether re-authentication is required.
*
- * @return boolean
+ * @param UserInterface $user
+ *
+ * @return Boolean
*/
- public function compareTo($object);
+ function compareTo(UserInterface $user);
}