Code Duplication    Length = 43-43 lines in 2 locations

apps/federation/composer/composer/autoload_static.php 1 location

@@ 7-49 (lines=43) @@
4
5
namespace Composer\Autoload;
6
7
class ComposerStaticInitFederation
8
{
9
    public static $prefixLengthsPsr4 = array (
10
        'O' => 
11
        array (
12
            'OCA\\Federation\\' => 15,
13
        ),
14
    );
15
16
    public static $prefixDirsPsr4 = array (
17
        'OCA\\Federation\\' => 
18
        array (
19
            0 => __DIR__ . '/..' . '/../lib',
20
        ),
21
    );
22
23
    public static $classMap = array (
24
        'OCA\\Federation\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php',
25
        'OCA\\Federation\\BackgroundJob\\GetSharedSecret' => __DIR__ . '/..' . '/../lib/BackgroundJob/GetSharedSecret.php',
26
        'OCA\\Federation\\BackgroundJob\\RequestSharedSecret' => __DIR__ . '/..' . '/../lib/BackgroundJob/RequestSharedSecret.php',
27
        'OCA\\Federation\\Command\\SyncFederationAddressBooks' => __DIR__ . '/..' . '/../lib/Command/SyncFederationAddressBooks.php',
28
        'OCA\\Federation\\Controller\\OCSAuthAPIController' => __DIR__ . '/..' . '/../lib/Controller/OCSAuthAPIController.php',
29
        'OCA\\Federation\\Controller\\SettingsController' => __DIR__ . '/..' . '/../lib/Controller/SettingsController.php',
30
        'OCA\\Federation\\DAV\\FedAuth' => __DIR__ . '/..' . '/../lib/DAV/FedAuth.php',
31
        'OCA\\Federation\\DbHandler' => __DIR__ . '/..' . '/../lib/DbHandler.php',
32
        'OCA\\Federation\\Hooks' => __DIR__ . '/..' . '/../lib/Hooks.php',
33
        'OCA\\Federation\\Middleware\\AddServerMiddleware' => __DIR__ . '/..' . '/../lib/Middleware/AddServerMiddleware.php',
34
        'OCA\\Federation\\Settings\\Admin' => __DIR__ . '/..' . '/../lib/Settings/Admin.php',
35
        'OCA\\Federation\\SyncFederationAddressBooks' => __DIR__ . '/..' . '/../lib/SyncFederationAddressBooks.php',
36
        'OCA\\Federation\\SyncJob' => __DIR__ . '/..' . '/../lib/SyncJob.php',
37
        'OCA\\Federation\\TrustedServers' => __DIR__ . '/..' . '/../lib/TrustedServers.php',
38
    );
39
40
    public static function getInitializer(ClassLoader $loader)
41
    {
42
        return \Closure::bind(function () use ($loader) {
43
            $loader->prefixLengthsPsr4 = ComposerStaticInitFederation::$prefixLengthsPsr4;
44
            $loader->prefixDirsPsr4 = ComposerStaticInitFederation::$prefixDirsPsr4;
45
            $loader->classMap = ComposerStaticInitFederation::$classMap;
46
47
        }, null, ClassLoader::class);
48
    }
49
}
50

apps/files_trashbin/composer/composer/autoload_static.php 1 location

@@ 7-49 (lines=43) @@
4
5
namespace Composer\Autoload;
6
7
class ComposerStaticInitFiles_Trashbin
8
{
9
    public static $prefixLengthsPsr4 = array (
10
        'O' => 
11
        array (
12
            'OCA\\Files_Trashbin\\' => 19,
13
        ),
14
    );
15
16
    public static $prefixDirsPsr4 = array (
17
        'OCA\\Files_Trashbin\\' => 
18
        array (
19
            0 => __DIR__ . '/..' . '/../lib',
20
        ),
21
    );
22
23
    public static $classMap = array (
24
        'OCA\\Files_Trashbin\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php',
25
        'OCA\\Files_Trashbin\\BackgroundJob\\ExpireTrash' => __DIR__ . '/..' . '/../lib/BackgroundJob/ExpireTrash.php',
26
        'OCA\\Files_Trashbin\\Capabilities' => __DIR__ . '/..' . '/../lib/Capabilities.php',
27
        'OCA\\Files_Trashbin\\Command\\CleanUp' => __DIR__ . '/..' . '/../lib/Command/CleanUp.php',
28
        'OCA\\Files_Trashbin\\Command\\Expire' => __DIR__ . '/..' . '/../lib/Command/Expire.php',
29
        'OCA\\Files_Trashbin\\Command\\ExpireTrash' => __DIR__ . '/..' . '/../lib/Command/ExpireTrash.php',
30
        'OCA\\Files_Trashbin\\Controller\\PreviewController' => __DIR__ . '/..' . '/../lib/Controller/PreviewController.php',
31
        'OCA\\Files_Trashbin\\Events\\MoveToTrashEvent' => __DIR__ . '/..' . '/../lib/Events/MoveToTrashEvent.php',
32
        'OCA\\Files_Trashbin\\Exceptions\\CopyRecursiveException' => __DIR__ . '/..' . '/../lib/Exceptions/CopyRecursiveException.php',
33
        'OCA\\Files_Trashbin\\Expiration' => __DIR__ . '/..' . '/../lib/Expiration.php',
34
        'OCA\\Files_Trashbin\\Helper' => __DIR__ . '/..' . '/../lib/Helper.php',
35
        'OCA\\Files_Trashbin\\Hooks' => __DIR__ . '/..' . '/../lib/Hooks.php',
36
        'OCA\\Files_Trashbin\\Storage' => __DIR__ . '/..' . '/../lib/Storage.php',
37
        'OCA\\Files_Trashbin\\Trashbin' => __DIR__ . '/..' . '/../lib/Trashbin.php',
38
    );
39
40
    public static function getInitializer(ClassLoader $loader)
41
    {
42
        return \Closure::bind(function () use ($loader) {
43
            $loader->prefixLengthsPsr4 = ComposerStaticInitFiles_Trashbin::$prefixLengthsPsr4;
44
            $loader->prefixDirsPsr4 = ComposerStaticInitFiles_Trashbin::$prefixDirsPsr4;
45
            $loader->classMap = ComposerStaticInitFiles_Trashbin::$classMap;
46
47
        }, null, ClassLoader::class);
48
    }
49
}
50