Lighthouse 5

This commit is contained in:
Your Name
2021-07-26 19:52:47 +02:00
parent fd19e442b6
commit ab132b67e8
10 changed files with 5028 additions and 784 deletions
+7 -2
View File
@@ -13,19 +13,24 @@ class ComposerAutoloaderInit02b791b67b928853969b061eb6816088
}
}
/**
* @return \Composer\Autoload\ClassLoader
*/
public static function getLoader()
{
if (null !== self::$loader) {
return self::$loader;
}
require __DIR__ . '/platform_check.php';
spl_autoload_register(array('ComposerAutoloaderInit02b791b67b928853969b061eb6816088', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
spl_autoload_unregister(array('ComposerAutoloaderInit02b791b67b928853969b061eb6816088', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) {
require_once __DIR__ . '/autoload_static.php';
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit02b791b67b928853969b061eb6816088::getInitializer($loader));
} else {