video-generater / autoload.php
stephenz007's picture
initial commit
ae8c95b
raw
history blame
No virus
169 Bytes
<?php
spl_autoload_register(function ($class) {
$classPath = __DIR__ . '/classes/' . $class . '.php';
if (file_exists($classPath)) {
require_once $classPath;
}
});