| @@ 7-46 (lines=40) @@ | ||
| 4 | ||
| 5 | namespace Composer\Autoload; |
|
| 6 | ||
| 7 | class ComposerStaticInitAdminAudit |
|
| 8 | { |
|
| 9 | public static $prefixLengthsPsr4 = array ( |
|
| 10 | 'O' => |
|
| 11 | array ( |
|
| 12 | 'OCA\\AdminAudit\\' => 15, |
|
| 13 | ), |
|
| 14 | ); |
|
| 15 | ||
| 16 | public static $prefixDirsPsr4 = array ( |
|
| 17 | 'OCA\\AdminAudit\\' => |
|
| 18 | array ( |
|
| 19 | 0 => __DIR__ . '/..' . '/../lib', |
|
| 20 | ), |
|
| 21 | ); |
|
| 22 | ||
| 23 | public static $classMap = array ( |
|
| 24 | 'OCA\\AdminAudit\\Actions\\Action' => __DIR__ . '/..' . '/../lib/Actions/Action.php', |
|
| 25 | 'OCA\\AdminAudit\\Actions\\AppManagement' => __DIR__ . '/..' . '/../lib/Actions/AppManagement.php', |
|
| 26 | 'OCA\\AdminAudit\\Actions\\Auth' => __DIR__ . '/..' . '/../lib/Actions/Auth.php', |
|
| 27 | 'OCA\\AdminAudit\\Actions\\Console' => __DIR__ . '/..' . '/../lib/Actions/Console.php', |
|
| 28 | 'OCA\\AdminAudit\\Actions\\Files' => __DIR__ . '/..' . '/../lib/Actions/Files.php', |
|
| 29 | 'OCA\\AdminAudit\\Actions\\GroupManagement' => __DIR__ . '/..' . '/../lib/Actions/GroupManagement.php', |
|
| 30 | 'OCA\\AdminAudit\\Actions\\Sharing' => __DIR__ . '/..' . '/../lib/Actions/Sharing.php', |
|
| 31 | 'OCA\\AdminAudit\\Actions\\Trashbin' => __DIR__ . '/..' . '/../lib/Actions/Trashbin.php', |
|
| 32 | 'OCA\\AdminAudit\\Actions\\UserManagement' => __DIR__ . '/..' . '/../lib/Actions/UserManagement.php', |
|
| 33 | 'OCA\\AdminAudit\\Actions\\Versions' => __DIR__ . '/..' . '/../lib/Actions/Versions.php', |
|
| 34 | 'OCA\\AdminAudit\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', |
|
| 35 | ); |
|
| 36 | ||
| 37 | public static function getInitializer(ClassLoader $loader) |
|
| 38 | { |
|
| 39 | return \Closure::bind(function () use ($loader) { |
|
| 40 | $loader->prefixLengthsPsr4 = ComposerStaticInitAdminAudit::$prefixLengthsPsr4; |
|
| 41 | $loader->prefixDirsPsr4 = ComposerStaticInitAdminAudit::$prefixDirsPsr4; |
|
| 42 | $loader->classMap = ComposerStaticInitAdminAudit::$classMap; |
|
| 43 | ||
| 44 | }, null, ClassLoader::class); |
|
| 45 | } |
|
| 46 | } |
|
| 47 | ||
| @@ 7-46 (lines=40) @@ | ||
| 4 | ||
| 5 | namespace Composer\Autoload; |
|
| 6 | ||
| 7 | class ComposerStaticInitFiles_Versions |
|
| 8 | { |
|
| 9 | public static $prefixLengthsPsr4 = array ( |
|
| 10 | 'O' => |
|
| 11 | array ( |
|
| 12 | 'OCA\\Files_Versions\\' => 19, |
|
| 13 | ), |
|
| 14 | ); |
|
| 15 | ||
| 16 | public static $prefixDirsPsr4 = array ( |
|
| 17 | 'OCA\\Files_Versions\\' => |
|
| 18 | array ( |
|
| 19 | 0 => __DIR__ . '/..' . '/../lib', |
|
| 20 | ), |
|
| 21 | ); |
|
| 22 | ||
| 23 | public static $classMap = array ( |
|
| 24 | 'OCA\\Files_Versions\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', |
|
| 25 | 'OCA\\Files_Versions\\BackgroundJob\\ExpireVersions' => __DIR__ . '/..' . '/../lib/BackgroundJob/ExpireVersions.php', |
|
| 26 | 'OCA\\Files_Versions\\Capabilities' => __DIR__ . '/..' . '/../lib/Capabilities.php', |
|
| 27 | 'OCA\\Files_Versions\\Command\\CleanUp' => __DIR__ . '/..' . '/../lib/Command/CleanUp.php', |
|
| 28 | 'OCA\\Files_Versions\\Command\\Expire' => __DIR__ . '/..' . '/../lib/Command/Expire.php', |
|
| 29 | 'OCA\\Files_Versions\\Command\\ExpireVersions' => __DIR__ . '/..' . '/../lib/Command/ExpireVersions.php', |
|
| 30 | 'OCA\\Files_Versions\\Controller\\PreviewController' => __DIR__ . '/..' . '/../lib/Controller/PreviewController.php', |
|
| 31 | 'OCA\\Files_Versions\\Events\\CreateVersionEvent' => __DIR__ . '/..' . '/../lib/Events/CreateVersionEvent.php', |
|
| 32 | 'OCA\\Files_Versions\\Expiration' => __DIR__ . '/..' . '/../lib/Expiration.php', |
|
| 33 | 'OCA\\Files_Versions\\Hooks' => __DIR__ . '/..' . '/../lib/Hooks.php', |
|
| 34 | 'OCA\\Files_Versions\\Storage' => __DIR__ . '/..' . '/../lib/Storage.php', |
|
| 35 | ); |
|
| 36 | ||
| 37 | public static function getInitializer(ClassLoader $loader) |
|
| 38 | { |
|
| 39 | return \Closure::bind(function () use ($loader) { |
|
| 40 | $loader->prefixLengthsPsr4 = ComposerStaticInitFiles_Versions::$prefixLengthsPsr4; |
|
| 41 | $loader->prefixDirsPsr4 = ComposerStaticInitFiles_Versions::$prefixDirsPsr4; |
|
| 42 | $loader->classMap = ComposerStaticInitFiles_Versions::$classMap; |
|
| 43 | ||
| 44 | }, null, ClassLoader::class); |
|
| 45 | } |
|
| 46 | } |
|
| 47 | ||