2014-02-06 14:44:16 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @codeCoverageIgnore
|
|
|
|
*/
|
|
|
|
class Autoloader
|
|
|
|
{
|
2015-03-22 15:33:18 +01:00
|
|
|
/** @var bool Whether the autoloader has been registered. */
|
|
|
|
private static $registered = false;
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
/**
|
2014-02-12 14:06:32 +01:00
|
|
|
* Registers PhpParser\Autoloader as an SPL autoloader.
|
|
|
|
*
|
|
|
|
* @param bool $prepend Whether to prepend the autoloader instead of appending
|
|
|
|
*/
|
|
|
|
static public function register($prepend = false) {
|
2015-03-22 15:33:18 +01:00
|
|
|
if (self::$registered === true) {
|
2015-03-13 23:54:32 +01:00
|
|
|
return;
|
|
|
|
}
|
2015-03-22 15:33:18 +01:00
|
|
|
|
2014-02-12 14:06:32 +01:00
|
|
|
spl_autoload_register(array(__CLASS__, 'autoload'), true, $prepend);
|
2015-03-22 15:33:18 +01:00
|
|
|
self::$registered = true;
|
2014-02-06 14:44:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-02-12 14:06:32 +01:00
|
|
|
* Handles autoloading of classes.
|
|
|
|
*
|
|
|
|
* @param string $class A class name.
|
|
|
|
*/
|
2014-02-06 14:44:16 +01:00
|
|
|
static public function autoload($class) {
|
|
|
|
if (0 === strpos($class, 'PhpParser\\')) {
|
2014-04-02 09:44:45 +02:00
|
|
|
$fileName = dirname(__DIR__) . '/' . strtr($class, '\\', '/') . '.php';
|
2014-03-27 15:40:08 +01:00
|
|
|
if (file_exists($fileName)) {
|
|
|
|
require $fileName;
|
|
|
|
}
|
2014-02-06 14:44:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|