mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-12 11:30:31 +01:00
8e7ba00e50
remove last empty token on new printed content; go for newline by default as best practise conventions (#13)
65 lines
2.1 KiB
PHP
65 lines
2.1 KiB
PHP
<?php
|
|
|
|
// autoload_real.php @generated by Composer
|
|
|
|
class ComposerAutoloaderInit2640128c56620c7437d13afa595f94d5
|
|
{
|
|
private static $loader;
|
|
|
|
public static function loadClassLoader($class)
|
|
{
|
|
if ('Composer\Autoload\ClassLoader' === $class) {
|
|
require __DIR__ . '/ClassLoader.php';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return \Composer\Autoload\ClassLoader
|
|
*/
|
|
public static function getLoader()
|
|
{
|
|
if (null !== self::$loader) {
|
|
return self::$loader;
|
|
}
|
|
|
|
spl_autoload_register(array('ComposerAutoloaderInit2640128c56620c7437d13afa595f94d5', 'loadClassLoader'), true, true);
|
|
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
|
spl_autoload_unregister(array('ComposerAutoloaderInit2640128c56620c7437d13afa595f94d5', 'loadClassLoader'));
|
|
|
|
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
|
if ($useStaticLoader) {
|
|
require __DIR__ . '/autoload_static.php';
|
|
|
|
call_user_func(\Composer\Autoload\ComposerStaticInit2640128c56620c7437d13afa595f94d5::getInitializer($loader));
|
|
} else {
|
|
$classMap = require __DIR__ . '/autoload_classmap.php';
|
|
if ($classMap) {
|
|
$loader->addClassMap($classMap);
|
|
}
|
|
}
|
|
|
|
$loader->setClassMapAuthoritative(true);
|
|
$loader->register(true);
|
|
|
|
if ($useStaticLoader) {
|
|
$includeFiles = Composer\Autoload\ComposerStaticInit2640128c56620c7437d13afa595f94d5::$files;
|
|
} else {
|
|
$includeFiles = require __DIR__ . '/autoload_files.php';
|
|
}
|
|
foreach ($includeFiles as $fileIdentifier => $file) {
|
|
composerRequire2640128c56620c7437d13afa595f94d5($fileIdentifier, $file);
|
|
}
|
|
|
|
return $loader;
|
|
}
|
|
}
|
|
|
|
function composerRequire2640128c56620c7437d13afa595f94d5($fileIdentifier, $file)
|
|
{
|
|
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
|
require $file;
|
|
|
|
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
|
}
|
|
}
|