We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63a0b64 commit 85b5952Copy full SHA for 85b5952
src/helper.php
@@ -0,0 +1,11 @@
1
+<?php
2
+
3
+if (!function_exists('dd'))
4
+{
5
+ function dd()
6
+ {
7
+ $args = func_get_args();
8
+ call_user_func_array('dump', $args);
9
+ die();
10
+ }
11
+}
0 commit comments