Added new helper file with debugging related functions

This commit is contained in:
Alex Tselegidis 2021-10-23 13:07:00 +02:00
parent 85a6be1d7d
commit 8abeb4dbf2
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.1.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
*/
function dd(...$vars)
{
var_dump($vars);
exit(1);
}
}