mirror of
https://github.com/nextcloud/server.git
synced 2025-05-05 14:30:48 +00:00
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
// autoload_static.php @generated by Composer
|
|
|
|
namespace Composer\Autoload;
|
|
|
|
class ComposerStaticInitProfile
|
|
{
|
|
public static $prefixLengthsPsr4 = array (
|
|
'O' =>
|
|
array (
|
|
'OCA\\Profile\\' => 12,
|
|
),
|
|
);
|
|
|
|
public static $prefixDirsPsr4 = array (
|
|
'OCA\\Profile\\' =>
|
|
array (
|
|
0 => __DIR__ . '/..' . '/../lib',
|
|
),
|
|
);
|
|
|
|
public static $classMap = array (
|
|
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
|
'OCA\\Profile\\Controller\\ProfilePageController' => __DIR__ . '/..' . '/../lib/Controller/ProfilePageController.php',
|
|
);
|
|
|
|
public static function getInitializer(ClassLoader $loader)
|
|
{
|
|
return \Closure::bind(function () use ($loader) {
|
|
$loader->prefixLengthsPsr4 = ComposerStaticInitProfile::$prefixLengthsPsr4;
|
|
$loader->prefixDirsPsr4 = ComposerStaticInitProfile::$prefixDirsPsr4;
|
|
$loader->classMap = ComposerStaticInitProfile::$classMap;
|
|
|
|
}, null, ClassLoader::class);
|
|
}
|
|
}
|