mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-10 21:08:41 +00:00
14 lines
165 B
PHP
Executable File
14 lines
165 B
PHP
Executable File
<?php
|
|
|
|
if (!function_exists('dd')) {
|
|
function dd(...$args)
|
|
{
|
|
if (function_exists('dump')) {
|
|
dump(...$args);
|
|
} else {
|
|
var_dump(...$args);
|
|
}
|
|
die;
|
|
}
|
|
}
|