add support for one-dimensional arrays; type input parameters
[m6w6/pq-gateway] / lib / autoload.php
1 <?php
2
3 spl_autoload_register(function($c) {
4 if (substr($c, 0, 10) === "pq\\Gateway" || substr($c, 0, 8) === "pq\\Query") {
5 return include __DIR__ . "/" . strtr($c, "\\", "/") . ".php";
6 }
7 });