Custom local renderer

This commit is contained in:
Andy Miller
2017-08-25 17:58:29 -06:00
parent 2f63859bd3
commit 13601eee94
70 changed files with 9126 additions and 4 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];
};