Skip to content

Commit 4f6ea6f

Browse files
committed
minor #19524 add missing return statement (xabbuh)
This PR was merged into the 6.4 branch. Discussion ---------- add missing return statement completes #19505 Commits ------- ba7d7b7 add missing return statement
2 parents 8aa1148 + ba7d7b7 commit 4f6ea6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/var_dumper.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ like this::
513513
$cloner = new VarCloner();
514514
$dumper = 'cli' === PHP_SAPI ? new CliDumper() : new HtmlDumper();
515515

516-
$dumper->dump($cloner->cloneVar($var));
516+
return $dumper->dump($cloner->cloneVar($var));
517517
});
518518

519519
Cloners

0 commit comments

Comments
 (0)