Mods-for-HESK-Netsyms/api/bootstrap.php
2017-02-01 22:04:52 -05:00

8 lines
197 B
PHP

<?php
spl_autoload_register(function ($class) {
$file = __DIR__ . DIRECTORY_SEPARATOR . str_replace('\\', '/', $class) . '.php';
if (file_exists($file)) {
require($file);
}
});