From 6edb9e1b06ade62511798bf3d9cfa7de4424fcab Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Mon, 18 May 2015 08:52:38 -0400 Subject: [PATCH] Tweaking docblock on interface thanks to @iltar --- .../Component/Security/Guard/Token/GuardTokenInterface.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Security/Guard/Token/GuardTokenInterface.php b/src/Symfony/Component/Security/Guard/Token/GuardTokenInterface.php index de3d08601b..8ad57b3b2a 100644 --- a/src/Symfony/Component/Security/Guard/Token/GuardTokenInterface.php +++ b/src/Symfony/Component/Security/Guard/Token/GuardTokenInterface.php @@ -3,10 +3,11 @@ namespace Symfony\Component\Security\Guard\Token; /** - * An empty interface that both guard tokens implement. + * A marker interface that both guard tokens implement. * - * This interface is used by the GuardAuthenticationProvider to know - * that a token belongs to its system. + * Any tokens passed to GuardAuthenticationProvider (i.e. any tokens that + * are handled by the guard auth system) must implement this + * interface. * * @author Ryan Weaver */