| 1 | <?php namespace Ntholenaar\MultiSafepayClient\Http\Plugin; |
||
| 7 | final class PrependPathPlugin implements Plugin |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var UriInterface |
||
| 11 | */ |
||
| 12 | private $path; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param UriInterface $path |
||
| 16 | */ |
||
| 17 | public function __construct(UriInterface $path) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function handleRequest(RequestInterface $request, callable $next, callable $first) |
||
| 35 | } |