| 1 | <?php |
||
| 10 | class Route extends LeagueRoute |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var callable |
||
| 14 | */ |
||
| 15 | protected $middleware; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param callable $middleware |
||
| 19 | * @return $this |
||
| 20 | */ |
||
| 21 | public function setMiddleware($middleware) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function dispatch(ServerRequestInterface $request, ResponseInterface $response, array $vars) |
||
| 47 | } |
||
| 48 |