8000 Merge pull request #9590 from SelimSalihovic/5.1 · laravel/framework@7a15f85 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7a15f85

Browse files
committed
Merge pull request #9590 from SelimSalihovic/5.1
Modify dd() to conform to PSR2
2 parents ac5c52b + 4ffb4a3 commit 7a15f85

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Illuminate/Support/helpers.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,9 @@ function data_get($target, $key, $default = null)
430430
*/
431431
function dd()
432432
{
433-
array_map(function ($x) { (new Dumper)->dump($x); }, func_get_args());
433+
array_map(function ($x) {
434+
(new Dumper)->dump($x);
435+
}, func_get_args());
434436

435437
die(1);
436438
}

0 commit comments

Comments
 (0)
0