From 066f9aaa842b870dd6966b5e70787ee5a2be5820 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..9d5fd0bc59e4b 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 is returned. */ public function getUser();