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 1212namespace Symfony \Bundle \FrameworkBundle \Tests \Templating ;
1313
1414use Symfony \Bundle \FrameworkBundle \Templating \GlobalVariables ;
15+ use Symfony \Bundle \FrameworkBundle \Tests \Fixtures \TokenInterface ;
1516use Symfony \Bundle \FrameworkBundle \Tests \TestCase ;
1617use Symfony \Component \DependencyInjection \Container ;
1718use Symfony \Component \Security \Core \Authentication \Token \Storage \TokenStorageInterface ;
18- use Symfony \Component \Security \Core \Authentication \Token \TokenInterface ;
1919use Symfony \Component \Security \Core \User \UserInterface ;
2020
2121/**
You can’t perform that action at this time.
0 commit comments