mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-19 15:45:43 +01:00
acabcfc456
[TypeDeclaration] Do not add return type on parent Closure for deep closure has return type on ReturnTypeFromStrictTypedCallRector (#439)
65 lines
2.1 KiB
PHP
65 lines
2.1 KiB
PHP
<?php
|
|
|
|
// autoload_real.php @generated by Composer
|
|
|
|
class ComposerAutoloaderInitc3f7a47dcc1e46bd4612e40ad4cb6787
|
|
{
|
|
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('ComposerAutoloaderInitc3f7a47dcc1e46bd4612e40ad4cb6787', 'loadClassLoader'), true, true);
|
|
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
|
spl_autoload_unregister(array('ComposerAutoloaderInitc3f7a47dcc1e46bd4612e40ad4cb6787', '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\ComposerStaticInitc3f7a47dcc1e46bd4612e40ad4cb6787::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\ComposerStaticInitc3f7a47dcc1e46bd4612e40ad4cb6787::$files;
|
|
} else {
|
|
$includeFiles = require __DIR__ . '/autoload_files.php';
|
|
}
|
|
foreach ($includeFiles as $fileIdentifier => $file) {
|
|
composerRequirec3f7a47dcc1e46bd4612e40ad4cb6787($fileIdentifier, $file);
|
|
}
|
|
|
|
return $loader;
|
|
}
|
|
}
|
|
|
|
function composerRequirec3f7a47dcc1e46bd4612e40ad4cb6787($fileIdentifier, $file)
|
|
{
|
|
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
|
require $file;
|
|
|
|
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
|
}
|
|
}
|