1 | <?php |
||
16 | class OAuth2RequestParser implements RequestParserInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $authentication; |
||
22 | |||
23 | /** |
||
24 | * @param string $authentication |
||
25 | */ |
||
26 | 3 | public function __construct($authentication) |
|
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | 1 | public function parse(Request $request) |
|
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | 2 | public function supports(Request $request) |
|
46 | } |
||
47 |