diff options
author | Jakub Zalas <jakub@zalas.pl> | 2013-09-13 12:48:12 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-09-13 14:06:44 +0200 |
commit | d871dc4f0a969fced05085dada3f6e03974a21a9 (patch) | |
tree | ec3e401b3e090b27bdcf09f18d4abaae9ef2a9b2 | |
parent | 390b3dbf915f9f5b0d2d8b591f37057d60a37879 (diff) | |
download | symfony-security-d871dc4f0a969fced05085dada3f6e03974a21a9.zip symfony-security-d871dc4f0a969fced05085dada3f6e03974a21a9.tar.gz symfony-security-d871dc4f0a969fced05085dada3f6e03974a21a9.tar.bz2 |
[FrameworkBundle][Security] Replaced void return type with null for consistency
-rw-r--r-- | Core/User/UserInterface.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Core/User/UserInterface.php b/Core/User/UserInterface.php index f5bbde2..6e9b0f1 100644 --- a/Core/User/UserInterface.php +++ b/Core/User/UserInterface.php @@ -80,8 +80,6 @@ interface UserInterface * * This is important if, at any given point, sensitive information like * the plain-text password is stored on this object. - * - * @return void */ public function eraseCredentials(); } |