autoload
[m6w6/atick] / lib / autoload.php
1 <?php
2
3 spl_autoload_register(function($c) {
4 if (substr($c, 0, 6) === "atick\\") {
5 return include_once __DIR__ . "/" . strtr($c, "\\", "/") . ".php";
6 }
7 });