11 lines
288 B
PHP
11 lines
288 B
PHP
<?php declare(strict_types=1);
|
|
|
|
spl_autoload_register(function(string $class_name) {
|
|
$parts = explode("\\", mb_strtolower($class_name));
|
|
if ($parts[0] === "peninsula") {
|
|
array_shift($parts); // Remove the prefix.
|
|
$path = join("/", $parts);
|
|
require(__DIR__."/{$path}.php");
|
|
}
|
|
});
|