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