diff --git a/functions.php b/functions.php index 0ceab97..4790449 100644 --- a/functions.php +++ b/functions.php @@ -2,16 +2,22 @@ if(!function_exists('dd')) { function dd($input) { + dump($input); + die(); + } +} + +if(!function_exists('dump')) { + function dump($input) { if(BD_WEB_REQUEST) { echo '
';
         }
-        
+
         var_dump($input);
-        
+
         if(BD_WEB_REQUEST) {
             echo '
'; } - die(); } }