| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Ntholenaar\MultiSafepayClient\Http\Plugin; |
||
| 25 | public function handleRequest(RequestInterface $request, callable $next, callable $first) |
||
| 26 | { |
||
| 27 | $uri = $request->getUri(); |
||
| 28 | |||
| 29 | $request = $request->withUri( |
||
| 30 | $uri->withPath($this->path . $uri->getPath()) |
||
| 31 | ); |
||
| 32 | |||
| 33 | return $next($request); |
||
| 34 | } |
||
| 35 | } |