diff options
author | Johannes M. Schmitt <schmittjoh@gmail.com> | 2011-06-01 11:45:43 +0200 |
---|---|---|
committer | Johannes M. Schmitt <schmittjoh@gmail.com> | 2011-06-01 11:48:19 +0200 |
commit | b2e8f7b03812902eb6e9306c1c26aff75f6b3a06 (patch) | |
tree | 4ba8a0ce57f9072024234f3788a6736b45e9a310 /Core/Authentication | |
parent | 8f07a78709a3f33161df45e2458c06e550fdf7d3 (diff) | |
download | symfony-security-b2e8f7b03812902eb6e9306c1c26aff75f6b3a06.zip symfony-security-b2e8f7b03812902eb6e9306c1c26aff75f6b3a06.tar.gz symfony-security-b2e8f7b03812902eb6e9306c1c26aff75f6b3a06.tar.bz2 |
[Security/Core] added missing method to interface
Diffstat (limited to 'Core/Authentication')
-rw-r--r-- | Core/Authentication/RememberMe/PersistentTokenInterface.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Core/Authentication/RememberMe/PersistentTokenInterface.php b/Core/Authentication/RememberMe/PersistentTokenInterface.php index fe1db51..7d76a1d 100644 --- a/Core/Authentication/RememberMe/PersistentTokenInterface.php +++ b/Core/Authentication/RememberMe/PersistentTokenInterface.php @@ -20,6 +20,12 @@ namespace Symfony\Component\Security\Core\Authentication\RememberMe; interface PersistentTokenInterface { /** + * Returns the class of the user + * @return string + */ + function getClass(); + + /** * Returns the username * @return string */ |