Skip to content

Commit 85b5952

Browse files
committed
Create helper.php
1 parent 63a0b64 commit 85b5952

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/helper.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)