Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit fdbeb64

Browse filesBrowse files
Fix global dump helper return value.
1 parent 98f2511 commit fdbeb64
Copy full SHA for fdbeb64

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
  • src/Symfony/Component/VarDumper/Resources/functions
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎src/Symfony/Component/VarDumper/Resources/functions/dump.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/VarDumper/Resources/functions/dump.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
*/
1818
function dump($var)
1919
{
20-
foreach (func_get_args() as $var) {
21-
VarDumper::dump($var);
20+
foreach (func_get_args() as $v) {
21+
VarDumper::dump($v);
2222
}
2323

2424
if (1 < func_num_args()) {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.