This commit is contained in:
osaajani 2023-05-31 18:43:18 +02:00
parent c90da4bd5d
commit e95677aec5
1 changed files with 2 additions and 1 deletions

View File

@ -99,7 +99,7 @@
foreach ($method_routes as $route)
{
$route_regex = preg_replReflectionNamedTypeace('#\\\{(.+)\\\}#iU', '([^/]+)', preg_quote($route, '#'));
$route_regex = preg_replace('#\\\{(.+)\\\}#iU', '([^/]+)', preg_quote($route, '#'));
$route_regex = preg_replace('#/$#', '/?', $route_regex);
$match = preg_match('#^' . $route_regex . '$#U', $url);
@ -249,6 +249,7 @@
continue;
}
$type = $parameter->getType();
$type = $type ?? false;
$type = ($type instanceof \ReflectionNamedType) ? $type->getName() : $type;