1 | <?php |
||
16 | trait ControllerRoutingTrait |
||
17 | { |
||
18 | /** |
||
19 | * @var RouterInterface |
||
20 | */ |
||
21 | private $router; |
||
22 | |||
23 | public function setRouter(RouterInterface $router) |
||
27 | |||
28 | protected function generateUrl( |
||
35 | |||
36 | protected function redirect(string $url, int $status = 302) : RedirectResponse |
||
40 | |||
41 | protected function redirectToRoute(string $route, array $parameters = [], int $status = 302) : RedirectResponse |
||
45 | } |
||
46 |