2012-08-01 08:12:46 +00:00
|
|
|
<?php
|
|
|
|
|
2013-08-27 23:08:38 +00:00
|
|
|
// autoload_real.php @generated by Composer
|
2012-08-01 08:12:46 +00:00
|
|
|
|
|
|
|
class ComposerAutoloaderInitFilesAutoload
|
|
|
|
{
|
2012-09-14 09:21:34 +00:00
|
|
|
private static $loader;
|
|
|
|
|
2012-11-10 20:54:23 +00:00
|
|
|
public static function loadClassLoader($class)
|
|
|
|
{
|
|
|
|
if ('Composer\Autoload\ClassLoader' === $class) {
|
|
|
|
require __DIR__ . '/ClassLoader.php';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-29 13:08:33 +00:00
|
|
|
/**
|
|
|
|
* @return \Composer\Autoload\ClassLoader
|
|
|
|
*/
|
2012-08-01 08:12:46 +00:00
|
|
|
public static function getLoader()
|
|
|
|
{
|
2012-12-25 15:08:36 +00:00
|
|
|
if (null !== self::$loader) {
|
|
|
|
return self::$loader;
|
2012-09-14 09:21:34 +00:00
|
|
|
}
|
|
|
|
|
2013-03-16 15:14:55 +00:00
|
|
|
spl_autoload_register(array('ComposerAutoloaderInitFilesAutoload', 'loadClassLoader'), true, true);
|
2022-01-04 10:55:36 +00:00
|
|
|
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
2012-11-10 20:54:23 +00:00
|
|
|
spl_autoload_unregister(array('ComposerAutoloaderInitFilesAutoload', 'loadClassLoader'));
|
|
|
|
|
2022-01-04 10:55:36 +00:00
|
|
|
require __DIR__ . '/autoload_static.php';
|
2022-04-06 20:07:16 +00:00
|
|
|
call_user_func(\Composer\Autoload\ComposerStaticInitFilesAutoload::getInitializer($loader));
|
2012-08-01 08:12:46 +00:00
|
|
|
|
2013-01-08 16:34:37 +00:00
|
|
|
$loader->register(true);
|
2012-08-01 08:12:46 +00:00
|
|
|
|
2022-08-31 10:07:23 +00:00
|
|
|
$filesToLoad = \Composer\Autoload\ComposerStaticInitFilesAutoload::$files;
|
2022-12-22 20:01:38 +00:00
|
|
|
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
|
2022-08-31 10:07:23 +00:00
|
|
|
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
|
|
|
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
|
|
|
|
|
|
|
require $file;
|
|
|
|
}
|
2022-12-22 20:01:38 +00:00
|
|
|
}, null, null);
|
2022-08-31 10:07:23 +00:00
|
|
|
foreach ($filesToLoad as $fileIdentifier => $file) {
|
2023-01-27 15:26:04 +00:00
|
|
|
$requireFile($fileIdentifier, $file);
|
2013-08-01 13:42:30 +00:00
|
|
|
}
|
2012-08-01 08:12:46 +00:00
|
|
|
|
|
|
|
return $loader;
|
|
|
|
}
|
|
|
|
}
|