Mods-for-HESK-Netsyms/api/bootstrap.php

8 lines
197 B
PHP
Raw Normal View History

2017-02-01 22:04:52 -05:00
<?php
spl_autoload_register(function ($class) {
$file = __DIR__ . DIRECTORY_SEPARATOR . str_replace('\\', '/', $class) . '.php';
if (file_exists($file)) {
require($file);
}
});