Compare commits

...

2 Commits

Author SHA1 Message Date
osaajani e95677aec5 . 2023-05-31 18:43:18 +02:00
osaajani c90da4bd5d Fix type detection in router invocation descartes for php >= 8 2023-05-31 18:34:46 +02:00
1 changed files with 1 additions and 0 deletions

View File

@ -252,6 +252,7 @@
$type = $parameter->getType();
$type = $type ?? false;
$type = ($type instanceof \ReflectionNamedType) ? $type->getName() : $type;
if ($type)
{