Added initial codebase
This commit is contained in:
parent
493a86bc9b
commit
80a6af74ed
41 changed files with 5676 additions and 29 deletions
11
src/LogLib2/autoload_patch.php
Normal file
11
src/LogLib2/autoload_patch.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* This file is used to patch the autoloader, ncc will load this file first before evaluating the package's class
|
||||
* files. Without this file, ncc will run into a recursive dependency issue where classes are trying to load each
|
||||
* other before they are defined.
|
||||
*/
|
||||
|
||||
require __DIR__ . DIRECTORY_SEPARATOR . 'Objects' . DIRECTORY_SEPARATOR . 'Event.php';
|
||||
require __DIR__ . DIRECTORY_SEPARATOR . 'Objects' . DIRECTORY_SEPARATOR . 'ExceptionDetails.php';
|
||||
require __DIR__ . DIRECTORY_SEPARATOR . 'Objects' . DIRECTORY_SEPARATOR . 'StackTrace.php';
|
Loading…
Add table
Add a link
Reference in a new issue