We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d398cc commit daeafdaCopy full SHA for daeafda
src/Processors/RouteProcessor.php
@@ -84,10 +84,7 @@ protected function processRoute(Route $route)
84
$routeHeaders[] = $this->authentication->toArray();
85
}
86
87
- $uri = Str::of($route->uri())
88
- ->after('/')
89
- ->replaceMatches('/{([[:alnum:]]+)}/', ':$1')
90
- ->prepend($route->getPrefix(), '/');
+ $uri = Str::of($route->uri())->replaceMatches('/{([[:alnum:]]+)}/', ':$1');
91
92
// if (!$uri->toString()) {
93
// return [];
0 commit comments