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 4
4
5
5
use PHPUnit \Framework \TestCase ;
6
6
use Symfony \Bridge \Twig \AppVariable ;
7
+ use Symfony \Bridge \Twig \Tests \Fixtures \TokenInterface ;
7
8
use Symfony \Component \HttpFoundation \Request ;
8
9
use Symfony \Component \HttpFoundation \RequestStack ;
9
10
use Symfony \Component \HttpFoundation \Session \Flash \FlashBag ;
10
11
use Symfony \Component \HttpFoundation \Session \Session ;
11
12
use Symfony \Component \Security \Core \Authentication \Token \Storage \TokenStorageInterface ;
12
- use Symfony \Component \Security \Core \Authentication \Token \TokenInterface ;
13
13
use Symfony \Component \Security \Core \User \UserInterface ;
14
14
15
15
class 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