iflrandevu/application/helpers/debug_helper.php

36 lines
986 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php use JetBrains\PhpStorm\NoReturn;
defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
* IFLRandevu - İzmir Fen Lisesi Randevu Portalı
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @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 '<pre>';
var_dump($vars);
echo '</pre>';
exit(1);
}
}