12 lines
No EOL
261 B
PHP
12 lines
No EOL
261 B
PHP
<?php
|
|
require ROOT_DIR . "/vendor/autoload.php";
|
|
|
|
function autoLoader($classname) {
|
|
$file = ROOT_DIR . '\\' . $classname . '.php';
|
|
$file = str_replace('\\', DIRECTORY_SEPARATOR, $file);
|
|
include_once $file;
|
|
}
|
|
|
|
|
|
spl_autoload_register('autoLoader');
|
|
?>
|