From 2eb3c0eb7fcc6e732f2451c0367afa5625f153fb Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 18 Jun 2020 20:15:32 +0200 Subject: [PATCH] [VarDumper] fix typo --- src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php b/src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php index c0e9e5c03b..81a2da7298 100644 --- a/src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php +++ b/src/Symfony/Component/VarDumper/Caster/ReflectionCaster.php @@ -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;