1 | <?php declare(strict_types = 1); |
||
19 | class RequestMatcher implements RequestMatcherInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var Repository |
||
23 | */ |
||
24 | private $repository; |
||
25 | |||
26 | /** |
||
27 | * @param Repository $repository |
||
28 | */ |
||
29 | public function __construct(Repository $repository) |
||
33 | |||
34 | /** |
||
35 | * @param Request $request |
||
36 | * @return bool |
||
37 | */ |
||
38 | public function matches(Request $request) |
||
50 | } |
||
51 |