1 | <?php |
||
16 | class AuthProvider implements ProviderInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var TokenExtractorInterface |
||
20 | */ |
||
21 | private $tokenExtractor; |
||
22 | |||
23 | /** |
||
24 | * @var JwtEncoderInterface |
||
25 | */ |
||
26 | private $jwtEncoder; |
||
27 | |||
28 | public function __construct(TokenExtractorInterface $tokenExtractor, JwtEncoderInterface $jwtEncoder) |
||
33 | |||
34 | /** |
||
35 | * @return Auth |
||
36 | */ |
||
37 | public function get() |
||
59 | } |
||
60 |