Batch 4a: vendor base packages

This commit is contained in:
sas.fajri
2026-04-15 15:15:07 +07:00
parent b8c0d83453
commit 5c1958aa04
739 changed files with 84446 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
return function ($class) {
static $map;
if (!$map) {
$map = include __DIR__ . '/autoload_classmap.php';
}
if (!isset($map[$class])) {
return false;
}
return include $map[$class];
};