This commit is contained in:
Julian Haagsma 2018-02-12 21:43:41 +00:00 committed by GitHub
commit 5440f71ebd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 603 additions and 542 deletions

21
autoloader.php Normal file
View file

@ -0,0 +1,21 @@
<?php
/**
* This Autoloads dBug
*
* PHP version 7
*
* @category Classes
* @package dBug
* @author Julian Haagsma <jhaagsma@gmail.com>
* @link https://github.com/jhaagsma/dBug
* @since Feb 2018
*/
spl_autoload_register(
function ($class) {
if ($class == 'dBug') {
include_once dirname(__FILE__).'/dBug.php';
}
}
);

1124
dBug.php

File diff suppressed because it is too large Load diff