bug #15927 Making GuardTokenInterface extend TokenInterface (weaverryan)

This PR was merged into the 2.8 branch.

Discussion
----------

Making GuardTokenInterface extend TokenInterface

| Q             | A
| ------------- | ---
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #15884
| License       | MIT
| Doc PR        | n/a

See #15884

Commits
-------

7f04fbb Making GuardTokenInterface extend TokenInterface
This commit is contained in:
Fabien Potencier 2015-09-27 11:18:08 +02:00
commit 709cc13887

View File

@ -11,6 +11,8 @@
namespace Symfony\Component\Security\Guard\Token;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
/**
* A marker interface that both guard tokens implement.
*
@ -20,6 +22,6 @@ namespace Symfony\Component\Security\Guard\Token;
*
* @author Ryan Weaver <ryan@knpuniversity.com>
*/
interface GuardTokenInterface
interface GuardTokenInterface extends TokenInterface
{
}