diff options
author | Johannes Schmitt <schmittjoh@gmail.com> | 2011-02-11 00:04:55 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-02-12 21:53:04 +0100 |
commit | 0c9e3edd50a02b8ac80f5ba9165df792b28575c7 (patch) | |
tree | 200e573f7395055357f350de15884a43d2f38a0b /Core/User | |
parent | 40698c0c3004d1dd5f83394ba8a0a90918590da8 (diff) | |
download | symfony-security-0c9e3edd50a02b8ac80f5ba9165df792b28575c7.zip symfony-security-0c9e3edd50a02b8ac80f5ba9165df792b28575c7.tar.gz symfony-security-0c9e3edd50a02b8ac80f5ba9165df792b28575c7.tar.bz2 |
[Security] removed __toString() from AccountInterface
Diffstat (limited to 'Core/User')
-rw-r--r-- | Core/User/AccountInterface.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Core/User/AccountInterface.php b/Core/User/AccountInterface.php index 1863302..0c6f188 100644 --- a/Core/User/AccountInterface.php +++ b/Core/User/AccountInterface.php @@ -19,13 +19,6 @@ namespace Symfony\Component\Security\Core\User; interface AccountInterface { /** - * Returns a string representation of the User. - * - * @return string A string return of the User - */ - function __toString(); - - /** * Returns the roles granted to the user. * * @return Role[] The user roles |