* @copyright Copyright (c) Alex Tselegidis * @license https://opensource.org/licenses/GPL-3.0 - GPLv3 * @link https://easyappointments.org * @since v1.5.0 * ---------------------------------------------------------------------------- */ if (!function_exists('dd')) { /** * Output the provided variables with "var_dump" and stop the execution. * * Example: * * dd($appointment, $service, $provider, $customer); * * @param mixed ...$vars */ #[NoReturn] function dd(...$vars): void { echo '
';
        var_dump($vars);
        echo '
'; exit(1); } }