1 | <?php |
||
21 | final class ReplaceUriPlugin implements Plugin |
||
22 | { |
||
23 | /** |
||
24 | * @var UriInterface |
||
25 | */ |
||
26 | private $uri; |
||
27 | |||
28 | /** |
||
29 | * @param UriInterface $uri |
||
30 | */ |
||
31 | public function __construct(UriInterface $uri) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function handleRequest(RequestInterface $request, callable $next, callable $first) |
||
45 | } |
||
46 |