| 1 | <?php |
||
| 19 | final class LoggedInShopUserProvider implements LoggedInShopUserProviderInterface |
||
| 20 | { |
||
| 21 | /** @var TokenStorageInterface */ |
||
| 22 | private $tokenStorage; |
||
| 23 | |||
| 24 | public function __construct(TokenStorageInterface $tokenStorage) |
||
| 28 | |||
| 29 | public function provide(): ShopUserInterface |
||
| 46 | |||
| 47 | public function isUserLoggedIn(): bool |
||
| 53 | } |
||
| 54 |