| 1 | <?php |
||
| 25 | final class AuthenticatedUserProvider implements AuthenticatedUserProviderInterface |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @var TokenStorageInterface |
||
| 29 | */ |
||
| 30 | private $tokenStorage; |
||
| 31 | |||
| 32 | public function __construct(TokenStorageInterface $tokenStorage) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return AuthenticatedUser |
||
| 39 | */ |
||
| 40 | public function getCurrentUser() |
||
| 44 | } |
||
| 45 |