<?php 
 
/** 
 * PHP Development Tools. 
 * PHP Version required 7.4.* or higher 
 * 
 * @see https://github.com/arcanisgk/PHP-Development-Tools 
 * 
 * @author    Walter Nuñez (arcanisgk/original founder) 
 * @email     [email protected] 
 * @copyright 2020 - 2022 Walter Nuñez/Icaros Net S.A. 
 * @license   For the full copyright and licence information, please view the LICENSE 
 * @note      This program is distributed in the hope that it will be useful 
 *            WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
 *            or FITNESS FOR A PARTICULAR PURPOSE. 
 */ 
 
declare(strict_types=1); 
 
require_once __DIR__ . "/../vendor/autoload.php"; 
 
sd(['test' => 'Hello World', 2022]); 
 
sda(['test' => 'Hello World', 2022]);
 
 |