1 | <?php |
||
24 | abstract class RouteMatchSpecification implements RouteMatchSpecificationInterface |
||
25 | { |
||
26 | |||
27 | /** |
||
28 | * @var RequestInterface $request |
||
29 | */ |
||
30 | protected $request; |
||
31 | |||
32 | /** |
||
33 | * RouteMatch constructor. |
||
34 | * @param RequestInterface $request |
||
35 | */ |
||
36 | public function __construct(RequestInterface $request) |
||
40 | } |
||
41 |