Files
Peninsula/backend/app/autoload.php
T

11 lines
282 B
PHP
Raw Normal View History

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