1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00
amp/autoload.php

12 lines
282 B
PHP
Raw Normal View History

2013-08-05 22:05:08 +02:00
<?php
spl_autoload_register(function($class) {
if (0 === strpos($class, 'Alert\\')) {
$class = str_replace('\\', DIRECTORY_SEPARATOR, $class);
$file = __DIR__ . "/src/$class.php";
if (file_exists($file)) {
require $file;
}
}
});