Skip to content

Commit 1eeb7a8

Browse files
minor symfony#48363 [VarDumper] Fix typo in deprecation message (alexandre-daubois)
This PR was merged into the 6.2 branch. Discussion ---------- [VarDumper] Fix typo in deprecation message | Q | A | ------------- | --- | Branch? | 6.2 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | _N/A_ | License | MIT | Doc PR | _N/A_ Commits ------- dc22f2a [VarDumper] Fix typo in deprecation message
2 parents faa55a6 + dc22f2a commit 1eeb7a8

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)