diff options
Diffstat (limited to 'Core/User/UserInterface.php')
-rw-r--r-- | Core/User/UserInterface.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Core/User/UserInterface.php b/Core/User/UserInterface.php index 85356b7..ce3b3a8 100644 --- a/Core/User/UserInterface.php +++ b/Core/User/UserInterface.php @@ -84,19 +84,4 @@ interface UserInterface * @return void */ function eraseCredentials(); - - /** - * Returns whether or not the given user is equivalent to *this* user. - * - * The equality comparison should neither be done by referential equality - * nor by comparing identities (i.e. getId() === getId()). - * - * However, you do not need to compare every attribute, but only those that - * are relevant for assessing whether re-authentication is required. - * - * @param UserInterface $user - * - * @return Boolean - */ - function equals(UserInterface $user); } |