Fetch/autoload.php

26 lines
520 B
PHP
Raw Normal View History

2012-06-11 04:54:57 +04:00
<?php
/*
* This file is part of the Fetch package.
*
* (c) Robert Hafner <tedivm@tedivm.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2014-04-16 11:35:51 +04:00
spl_autoload_register(function ($class) {
$base = '/src/';
if (strpos($class, 'Fetch\Test') === 0) {
$base = '/tests/';
}
$file = __DIR__.$base.strtr($class, '\\', '/').'.php';
2012-06-11 04:54:57 +04:00
if (file_exists($file)) {
require $file;
2012-06-11 04:54:57 +04:00
return true;
}
2014-04-16 11:35:51 +04:00
});