We have detected an error in your notification set-up
(Event-ID dab39dc24f564ec7bd4628d1305fd03c).
Currently, we cannot inform you about inspection progress.
Please check that the user
557058:bca11929-8c2d-43f2-8a82-c5416880d395
still has access to your repository or
update the API account.
Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function handleRequest(RequestInterface $request, callable $next, callable $first) |
||
29 | { |
||
30 | $uri = $request->getUri(); |
||
31 | if (strpos($uri->getPath(), '/' . $this->version) !== 0) { |
||
32 | $request = $request->withUri($uri->withPath('/' . $this->version . $uri->getPath())); |
||
33 | } |
||
34 | |||
35 | return $next($request); |
||
36 | } |
||
37 | } |
||
38 |