[VarDumper] fix typo

This commit is contained in:
Nicolas Grekas 2020-06-18 20:15:32 +02:00
parent 453c3a7187
commit 2eb3c0eb7f
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ class ReflectionCaster
if (!$param->isOptional() && $param->allowsNull()) {
$signature .= '?';
}
$signature .= substr(strrchr('\\'.$type->getName(), '\\'), 1);
$signature .= substr(strrchr('\\'.$type->getName(), '\\'), 1).' ';
}
}
$signature .= $k;