File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 44
55use PHPUnit \Framework \TestCase ;
66use Symfony \Bridge \Twig \AppVariable ;
7+ use Symfony \Bridge \Twig \Tests \Fixtures \TokenInterface ;
78use Symfony \Component \HttpFoundation \Request ;
89use Symfony \Component \HttpFoundation \RequestStack ;
910use Symfony \Component \HttpFoundation \Session \Flash \FlashBag ;
1011use Symfony \Component \HttpFoundation \Session \Session ;
1112use Symfony \Component \Security \Core \Authentication \Token \Storage \TokenStorageInterface ;
12- use Symfony \Component \Security \Core \Authentication \Token \TokenInterface ;
1313use Symfony \Component \Security \Core \User \UserInterface ;
1414
1515class AppVariableTest extends TestCase
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Symfony \Bridge \Twig \Tests \Fixtures ;
4+
5+ use Symfony \Component \Security \Core \Authentication \Token \TokenInterface as BaseTokenInterface ;
6+
7+ interface TokenInterface extends BaseTokenInterface
8+ {
9+ public function __serialize (): array ;
10+ public function __unserialize (array $ data ): void ;
11+ }
You can’t perform that action at this time.
0 commit comments