| Current Path : /var/www/html/mmishra/mpdf-development/src/ |
| Current File : /var/www/html/mmishra/mpdf-development/src/functions-dev.php |
<?php
if (!function_exists('dd')) {
function dd(...$args)
{
if (function_exists('dump')) {
dump(...$args);
} else {
var_dump(...$args);
}
die;
}
}