Fetch/autoload.php

25 lines
518 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.
*/
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;
}
});