PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 2.4.4
Booking for Appointments and Events Calendar – Amelia v2.4.4
2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / vendor / composer / autoload_real.php
ameliabooking / vendor / composer Last commit date
ClassLoader.php 2 years ago InstalledVersions.php 2 years ago LICENSE 7 years ago autoload_aliases.php 3 weeks ago autoload_classmap.php 3 weeks ago autoload_files.php 1 month ago autoload_namespaces.php 1 month ago autoload_psr4.php 3 weeks ago autoload_real.php 1 week ago autoload_static.php 1 week ago installed.json 3 weeks ago installed.php 3 weeks ago platform_check.php 1 year ago
autoload_real.php
51 lines
1 <?php
2
3 // autoload_real.php @generated by Composer
4
5 class ComposerAutoloaderInitc5ac0b0d70a9b27a9d5a54dcecdb7887
6 {
7 private static $loader;
8
9 public static function loadClassLoader($class)
10 {
11 if ('Composer\Autoload\ClassLoader' === $class) {
12 require __DIR__ . '/ClassLoader.php';
13 }
14 }
15
16 /**
17 * @return \Composer\Autoload\ClassLoader
18 */
19 public static function getLoader()
20 {
21 if (null !== self::$loader) {
22 return self::$loader;
23 }
24
25 require __DIR__ . '/platform_check.php';
26
27 spl_autoload_register(array('ComposerAutoloaderInitc5ac0b0d70a9b27a9d5a54dcecdb7887', 'loadClassLoader'), true, true);
28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29 spl_autoload_unregister(array('ComposerAutoloaderInitc5ac0b0d70a9b27a9d5a54dcecdb7887', 'loadClassLoader'));
30
31 require __DIR__ . '/autoload_static.php';
32 call_user_func(\Composer\Autoload\ComposerStaticInitc5ac0b0d70a9b27a9d5a54dcecdb7887::getInitializer($loader));
33
34 $loader->register(true);
35
36 $filesToLoad = \Composer\Autoload\ComposerStaticInitc5ac0b0d70a9b27a9d5a54dcecdb7887::$files;
37 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
38 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
39 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
40
41 require $file;
42 }
43 }, null, null);
44 foreach ($filesToLoad as $fileIdentifier => $file) {
45 $requireFile($fileIdentifier, $file);
46 }
47
48 return $loader;
49 }
50 }
51