<?php 
 
/** 
 * Initialization script for PHPUnit. 
 * 
 * @copyright 2020 Fernando Val 
 * @author    Fernando Val <[email protected]> 
 * @license   https://github.com/springy-framework/business-days-calculator/blob/main/LICENSE MIT 
 * 
 * @version   1.0.0 
 */ 
 
// Registers the Composer autoload 
require __DIR__ . '/../vendor/autoload.php'; 
 
// Sets the default timezone 
date_default_timezone_set('UTC'); 
 
 |