Skip to content

Commit dc22f2a

Browse files
[VarDumper] Fix typo in deprecation message
1 parent faa55a6 commit dc22f2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/VarDumper/VarDumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static function dump(mixed $var)
4949
public static function setHandler(callable $callable = null): ?callable
5050
{
5151
if (1 > \func_num_args()) {
52-
trigger_deprecation('symfony/va-dumper', '6.2', 'Calling "%s()" without any arguments is deprecated, pass null explicitly instead.', __METHOD__);
52+
trigger_deprecation('symfony/var-dumper', '6.2', 'Calling "%s()" without any arguments is deprecated, pass null explicitly instead.', __METHOD__);
5353
}
5454
$prevHandler = self::$handler;
5555

0 commit comments

Comments
 (0)