2023-03-13 11:06:18 +03:00
|
|
|
<?php use JetBrains\PhpStorm\NoReturn;
|
|
|
|
|
|
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
2021-10-23 14:07:00 +03:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
2022-01-18 15:05:42 +03:00
|
|
|
* Easy!Appointments - Online Appointment Scheduler
|
2021-10-23 14:07:00 +03:00
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2021-12-18 19:43:45 +03:00
|
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
2021-10-23 14:29:31 +03:00
|
|
|
* @since v1.5.0
|
2021-10-23 14:07:00 +03:00
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
if (!function_exists('dd')) {
|
2021-10-23 14:07:00 +03:00
|
|
|
/**
|
|
|
|
* Output the provided variables with "var_dump" and stop the execution.
|
2023-11-29 12:24:09 +03:00
|
|
|
*
|
2021-10-23 14:07:00 +03:00
|
|
|
* Example:
|
2023-11-29 12:24:09 +03:00
|
|
|
*
|
|
|
|
* dd($appointment, $service, $provider, $customer);
|
2021-10-23 14:07:00 +03:00
|
|
|
*
|
|
|
|
* @param mixed ...$vars
|
|
|
|
*/
|
2023-11-29 12:24:09 +03:00
|
|
|
#[NoReturn]
|
|
|
|
function dd(...$vars): void
|
2021-10-23 14:07:00 +03:00
|
|
|
{
|
2024-02-16 19:08:18 +03:00
|
|
|
echo is_cli() ? PHP_EOL : '<pre>';
|
2021-10-23 14:07:00 +03:00
|
|
|
var_dump($vars);
|
2024-02-16 19:08:18 +03:00
|
|
|
echo is_cli() ? PHP_EOL : '</pre>';
|
2021-10-23 14:07:00 +03:00
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|