From 9783f1bdeeb49aebdb441036159cbd56687e5a37 Mon Sep 17 00:00:00 2001 From: Giorgio Premi Date: Fri, 28 Nov 2014 17:26:05 +0100 Subject: [PATCH] Fix misleading TokenInterface docblock --- .../Security/Core/Authentication/Token/TokenInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Security/Core/Authentication/Token/TokenInterface.php b/src/Symfony/Component/Security/Core/Authentication/Token/TokenInterface.php index 8f7d03fd27dfd..93af354df2ef6 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Token/TokenInterface.php +++ b/src/Symfony/Component/Security/Core/Authentication/Token/TokenInterface.php @@ -47,8 +47,8 @@ public function getCredentials(); /** * Returns a user representation. * - * @return mixed either returns an object which implements __toString(), or - * a primitive string is returned. + * @return mixed Either returns an object which implements Symfony\Component\Security\Core\User\UserInterface, + * or a primitive string. */ public function getUser();