modified: update-api/autoload.php

This commit is contained in:
nikolai@vontainment.com 2025-07-09 04:45:04 -04:00
parent 03ba97e873
commit 9927da4060

View file

@ -1,7 +1,9 @@
<?php
/**
* Simple PSR-4 autoloader for the App namespace.
*/
spl_autoload_register(function ($class) {
$prefix = 'App\\';
$baseDir = __DIR__ . '/app/';
@ -15,4 +17,3 @@ spl_autoload_register(function ($class) {
require_once $file;
}
});