1 | <?php |
||
17 | class RequestMatcher implements RequestMatcherInterface |
||
18 | { |
||
19 | private $method; |
||
20 | |||
21 | private $accept; |
||
22 | |||
23 | 22 | public function __construct($accept = 'application/vnd.fos.user-context-hash', $method = null) |
|
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 20 | public function matches(Request $request) |
|
44 | } |
||
45 |