mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
* Moved to ned IBootstrap * Register everything via the capabilities api (So clients can use it as well) - This applies to the enforcing passwords * Updated the sharing js code to use it * removed app.php * removed unused settings now * typehints * strict typing Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> Signed-off-by: Morris Jobke <hey@morrisjobke.de>
42 lines
1.4 KiB
PHP
42 lines
1.4 KiB
PHP
<?php
|
|
|
|
// autoload_static.php @generated by Composer
|
|
|
|
namespace Composer\Autoload;
|
|
|
|
class ComposerStaticInitShareByMail
|
|
{
|
|
public static $prefixLengthsPsr4 = array (
|
|
'O' =>
|
|
array (
|
|
'OCA\\ShareByMail\\' => 16,
|
|
),
|
|
);
|
|
|
|
public static $prefixDirsPsr4 = array (
|
|
'OCA\\ShareByMail\\' =>
|
|
array (
|
|
0 => __DIR__ . '/..' . '/../lib',
|
|
),
|
|
);
|
|
|
|
public static $classMap = array (
|
|
'OCA\\ShareByMail\\Activity' => __DIR__ . '/..' . '/../lib/Activity.php',
|
|
'OCA\\ShareByMail\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php',
|
|
'OCA\\ShareByMail\\Capabilities' => __DIR__ . '/..' . '/../lib/Capabilities.php',
|
|
'OCA\\ShareByMail\\Settings\\Admin' => __DIR__ . '/..' . '/../lib/Settings/Admin.php',
|
|
'OCA\\ShareByMail\\Settings\\SettingsManager' => __DIR__ . '/..' . '/../lib/Settings/SettingsManager.php',
|
|
'OCA\\ShareByMail\\ShareByMailProvider' => __DIR__ . '/..' . '/../lib/ShareByMailProvider.php',
|
|
);
|
|
|
|
public static function getInitializer(ClassLoader $loader)
|
|
{
|
|
return \Closure::bind(function () use ($loader) {
|
|
$loader->prefixLengthsPsr4 = ComposerStaticInitShareByMail::$prefixLengthsPsr4;
|
|
$loader->prefixDirsPsr4 = ComposerStaticInitShareByMail::$prefixDirsPsr4;
|
|
$loader->classMap = ComposerStaticInitShareByMail::$classMap;
|
|
|
|
}, null, ClassLoader::class);
|
|
}
|
|
}
|