loglib2/src/LogLib2/autoload_patch.php
2025-01-22 01:02:17 -05:00

11 lines
No EOL
586 B
PHP

<?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';