1 | <?php |
||
16 | abstract class MultiRouteSpecification extends RouteMatchSpecification |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * @var RouteMatchSpecificationInterface[] $specifications |
||
21 | */ |
||
22 | protected $specifications; |
||
23 | |||
24 | /** |
||
25 | * MultiRouteSpecification constructor. |
||
26 | * |
||
27 | * @param RouteMatchSpecificationInterface[] $specifications |
||
28 | * @param RequestInterface $request |
||
29 | * @throws InvalidEntityException |
||
30 | */ |
||
31 | public function __construct(array $specifications, RequestInterface $request) |
||
44 | } |
||
45 |