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
1
+ <?php
2
+
3
+ namespace Symfony \Bundle \FrameworkBundle \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
+ }
Original file line number Diff line number Diff line change 12
12
namespace Symfony \Bundle \FrameworkBundle \Tests \Templating ;
13
13
14
14
use Symfony \Bundle \FrameworkBundle \Templating \GlobalVariables ;
15
+ use Symfony \Bundle \FrameworkBundle \Tests \Fixtures \TokenInterface ;
15
16
use Symfony \Bundle \FrameworkBundle \Tests \TestCase ;
16
17
use Symfony \Component \DependencyInjection \Container ;
17
18
use Symfony \Component \Security \Core \Authentication \Token \Storage \TokenStorageInterface ;
18
- use Symfony \Component \Security \Core \Authentication \Token \TokenInterface ;
19
19
use Symfony \Component \Security \Core \User \UserInterface ;
20
20
21
21
/**
You can’t perform that action at this time.
0 commit comments