1 | <?php |
||
13 | class RouteUri extends BaseProperty implements Uri |
||
14 | { |
||
15 | /** @var string */ |
||
16 | private $route; |
||
17 | /** @var array */ |
||
18 | private $parameters; |
||
19 | |||
20 | public function __construct(string $route, array $parameters = []) |
||
25 | |||
26 | /** |
||
27 | * @return string |
||
28 | */ |
||
29 | public function getRoute(): string |
||
33 | |||
34 | /** |
||
35 | * @return array |
||
36 | */ |
||
37 | public function getParameters(): array |
||
41 | } |
||
42 |