@@ -17,71 +17,71 @@ |
||
17 | 17 | use OCP\TaskProcessing\Task; |
18 | 18 | |
19 | 19 | class TaskProcessingSuccessRate implements ISetupCheck { |
20 | - public const MAX_FAILURE_PERCENTAGE = 0.2; |
|
20 | + public const MAX_FAILURE_PERCENTAGE = 0.2; |
|
21 | 21 | |
22 | - public const MAX_DAYS = 14; |
|
22 | + public const MAX_DAYS = 14; |
|
23 | 23 | |
24 | - public function __construct( |
|
25 | - private IL10N $l10n, |
|
26 | - private IManager $taskProcessingManager, |
|
27 | - private ITimeFactory $timeFactory, |
|
28 | - ) { |
|
29 | - } |
|
24 | + public function __construct( |
|
25 | + private IL10N $l10n, |
|
26 | + private IManager $taskProcessingManager, |
|
27 | + private ITimeFactory $timeFactory, |
|
28 | + ) { |
|
29 | + } |
|
30 | 30 | |
31 | - public function getCategory(): string { |
|
32 | - return 'ai'; |
|
33 | - } |
|
31 | + public function getCategory(): string { |
|
32 | + return 'ai'; |
|
33 | + } |
|
34 | 34 | |
35 | - public function getName(): string { |
|
36 | - return $this->l10n->t('Task Processing pickup speed'); |
|
37 | - } |
|
35 | + public function getName(): string { |
|
36 | + return $this->l10n->t('Task Processing pickup speed'); |
|
37 | + } |
|
38 | 38 | |
39 | - public function run(): SetupResult { |
|
40 | - $taskCount = 0; |
|
41 | - $lastNDays = 0; |
|
42 | - while ($taskCount === 0 && $lastNDays < self::MAX_DAYS) { |
|
43 | - $lastNDays++; |
|
44 | - // userId: '' means no filter, whereas null would mean guest |
|
45 | - $tasks = $this->taskProcessingManager->getTasks(userId: '', scheduleAfter: $this->timeFactory->now()->getTimestamp() - (60 * 60 * 24 * $lastNDays)); |
|
46 | - $taskCount = count($tasks); |
|
47 | - } |
|
48 | - if ($taskCount === 0) { |
|
49 | - return SetupResult::success( |
|
50 | - $this->l10n->n( |
|
51 | - 'No scheduled tasks in the last day.', |
|
52 | - 'No scheduled tasks in the last %n days.', |
|
53 | - $lastNDays |
|
54 | - ) |
|
55 | - ); |
|
56 | - } |
|
57 | - $failedCount = 0; |
|
58 | - foreach ($tasks as $task) { |
|
59 | - if ($task->getEndedAt() === null) { |
|
60 | - continue; // task was not picked up yet |
|
61 | - } |
|
62 | - $status = $task->getStatus(); |
|
63 | - if ($status === Task::STATUS_FAILED) { |
|
64 | - $failedCount++; |
|
65 | - } |
|
66 | - } |
|
39 | + public function run(): SetupResult { |
|
40 | + $taskCount = 0; |
|
41 | + $lastNDays = 0; |
|
42 | + while ($taskCount === 0 && $lastNDays < self::MAX_DAYS) { |
|
43 | + $lastNDays++; |
|
44 | + // userId: '' means no filter, whereas null would mean guest |
|
45 | + $tasks = $this->taskProcessingManager->getTasks(userId: '', scheduleAfter: $this->timeFactory->now()->getTimestamp() - (60 * 60 * 24 * $lastNDays)); |
|
46 | + $taskCount = count($tasks); |
|
47 | + } |
|
48 | + if ($taskCount === 0) { |
|
49 | + return SetupResult::success( |
|
50 | + $this->l10n->n( |
|
51 | + 'No scheduled tasks in the last day.', |
|
52 | + 'No scheduled tasks in the last %n days.', |
|
53 | + $lastNDays |
|
54 | + ) |
|
55 | + ); |
|
56 | + } |
|
57 | + $failedCount = 0; |
|
58 | + foreach ($tasks as $task) { |
|
59 | + if ($task->getEndedAt() === null) { |
|
60 | + continue; // task was not picked up yet |
|
61 | + } |
|
62 | + $status = $task->getStatus(); |
|
63 | + if ($status === Task::STATUS_FAILED) { |
|
64 | + $failedCount++; |
|
65 | + } |
|
66 | + } |
|
67 | 67 | |
68 | - if (($failedCount / $taskCount) < self::MAX_FAILURE_PERCENTAGE) { |
|
69 | - return SetupResult::success( |
|
70 | - $this->l10n->n( |
|
71 | - 'Most tasks were successful in the last day.', |
|
72 | - 'Most tasks were successful in the last %n days.', |
|
73 | - $lastNDays |
|
74 | - ) |
|
75 | - ); |
|
76 | - } else { |
|
77 | - return SetupResult::warning( |
|
78 | - $this->l10n->n( |
|
79 | - 'A lot of tasks failed in the last day. Consider checking the nextcloud log for errors and investigating whether the AI provider apps have been set up correctly.', |
|
80 | - 'A lot of tasks failed in the last %n days. Consider checking the nextcloud log for errors and investigating whether the AI provider apps have been set up correctly.', |
|
81 | - $lastNDays |
|
82 | - ), |
|
83 | - 'https://docs.nextcloud.com/server/latest/admin_manual/ai/insight_and_debugging.html' |
|
84 | - ); |
|
85 | - } |
|
86 | - } |
|
68 | + if (($failedCount / $taskCount) < self::MAX_FAILURE_PERCENTAGE) { |
|
69 | + return SetupResult::success( |
|
70 | + $this->l10n->n( |
|
71 | + 'Most tasks were successful in the last day.', |
|
72 | + 'Most tasks were successful in the last %n days.', |
|
73 | + $lastNDays |
|
74 | + ) |
|
75 | + ); |
|
76 | + } else { |
|
77 | + return SetupResult::warning( |
|
78 | + $this->l10n->n( |
|
79 | + 'A lot of tasks failed in the last day. Consider checking the nextcloud log for errors and investigating whether the AI provider apps have been set up correctly.', |
|
80 | + 'A lot of tasks failed in the last %n days. Consider checking the nextcloud log for errors and investigating whether the AI provider apps have been set up correctly.', |
|
81 | + $lastNDays |
|
82 | + ), |
|
83 | + 'https://docs.nextcloud.com/server/latest/admin_manual/ai/insight_and_debugging.html' |
|
84 | + ); |
|
85 | + } |
|
86 | + } |
|
87 | 87 | } |
@@ -6,164 +6,164 @@ |
||
6 | 6 | |
7 | 7 | class ComposerStaticInitSettings |
8 | 8 | { |
9 | - public static $prefixLengthsPsr4 = array ( |
|
9 | + public static $prefixLengthsPsr4 = array( |
|
10 | 10 | 'O' => |
11 | - array ( |
|
11 | + array( |
|
12 | 12 | 'OCA\\Settings\\' => 13, |
13 | 13 | ), |
14 | 14 | ); |
15 | 15 | |
16 | - public static $prefixDirsPsr4 = array ( |
|
16 | + public static $prefixDirsPsr4 = array( |
|
17 | 17 | 'OCA\\Settings\\' => |
18 | - array ( |
|
19 | - 0 => __DIR__ . '/..' . '/../lib', |
|
18 | + array( |
|
19 | + 0 => __DIR__.'/..'.'/../lib', |
|
20 | 20 | ), |
21 | 21 | ); |
22 | 22 | |
23 | - public static $classMap = array ( |
|
24 | - 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', |
|
25 | - 'OCA\\Settings\\Activity\\GroupProvider' => __DIR__ . '/..' . '/../lib/Activity/GroupProvider.php', |
|
26 | - 'OCA\\Settings\\Activity\\GroupSetting' => __DIR__ . '/..' . '/../lib/Activity/GroupSetting.php', |
|
27 | - 'OCA\\Settings\\Activity\\Provider' => __DIR__ . '/..' . '/../lib/Activity/Provider.php', |
|
28 | - 'OCA\\Settings\\Activity\\SecurityFilter' => __DIR__ . '/..' . '/../lib/Activity/SecurityFilter.php', |
|
29 | - 'OCA\\Settings\\Activity\\SecurityProvider' => __DIR__ . '/..' . '/../lib/Activity/SecurityProvider.php', |
|
30 | - 'OCA\\Settings\\Activity\\SecuritySetting' => __DIR__ . '/..' . '/../lib/Activity/SecuritySetting.php', |
|
31 | - 'OCA\\Settings\\Activity\\Setting' => __DIR__ . '/..' . '/../lib/Activity/Setting.php', |
|
32 | - 'OCA\\Settings\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', |
|
33 | - 'OCA\\Settings\\BackgroundJobs\\VerifyUserData' => __DIR__ . '/..' . '/../lib/BackgroundJobs/VerifyUserData.php', |
|
34 | - 'OCA\\Settings\\Command\\AdminDelegation\\Add' => __DIR__ . '/..' . '/../lib/Command/AdminDelegation/Add.php', |
|
35 | - 'OCA\\Settings\\Command\\AdminDelegation\\Remove' => __DIR__ . '/..' . '/../lib/Command/AdminDelegation/Remove.php', |
|
36 | - 'OCA\\Settings\\Command\\AdminDelegation\\Show' => __DIR__ . '/..' . '/../lib/Command/AdminDelegation/Show.php', |
|
37 | - 'OCA\\Settings\\ConfigLexicon' => __DIR__ . '/..' . '/../lib/ConfigLexicon.php', |
|
38 | - 'OCA\\Settings\\Controller\\AISettingsController' => __DIR__ . '/..' . '/../lib/Controller/AISettingsController.php', |
|
39 | - 'OCA\\Settings\\Controller\\AdminSettingsController' => __DIR__ . '/..' . '/../lib/Controller/AdminSettingsController.php', |
|
40 | - 'OCA\\Settings\\Controller\\AppSettingsController' => __DIR__ . '/..' . '/../lib/Controller/AppSettingsController.php', |
|
41 | - 'OCA\\Settings\\Controller\\AuthSettingsController' => __DIR__ . '/..' . '/../lib/Controller/AuthSettingsController.php', |
|
42 | - 'OCA\\Settings\\Controller\\AuthorizedGroupController' => __DIR__ . '/..' . '/../lib/Controller/AuthorizedGroupController.php', |
|
43 | - 'OCA\\Settings\\Controller\\ChangePasswordController' => __DIR__ . '/..' . '/../lib/Controller/ChangePasswordController.php', |
|
44 | - 'OCA\\Settings\\Controller\\CheckSetupController' => __DIR__ . '/..' . '/../lib/Controller/CheckSetupController.php', |
|
45 | - 'OCA\\Settings\\Controller\\CommonSettingsTrait' => __DIR__ . '/..' . '/../lib/Controller/CommonSettingsTrait.php', |
|
46 | - 'OCA\\Settings\\Controller\\DeclarativeSettingsController' => __DIR__ . '/..' . '/../lib/Controller/DeclarativeSettingsController.php', |
|
47 | - 'OCA\\Settings\\Controller\\HelpController' => __DIR__ . '/..' . '/../lib/Controller/HelpController.php', |
|
48 | - 'OCA\\Settings\\Controller\\LogSettingsController' => __DIR__ . '/..' . '/../lib/Controller/LogSettingsController.php', |
|
49 | - 'OCA\\Settings\\Controller\\MailSettingsController' => __DIR__ . '/..' . '/../lib/Controller/MailSettingsController.php', |
|
50 | - 'OCA\\Settings\\Controller\\PersonalSettingsController' => __DIR__ . '/..' . '/../lib/Controller/PersonalSettingsController.php', |
|
51 | - 'OCA\\Settings\\Controller\\PresetController' => __DIR__ . '/..' . '/../lib/Controller/PresetController.php', |
|
52 | - 'OCA\\Settings\\Controller\\ReasonsController' => __DIR__ . '/..' . '/../lib/Controller/ReasonsController.php', |
|
53 | - 'OCA\\Settings\\Controller\\TwoFactorSettingsController' => __DIR__ . '/..' . '/../lib/Controller/TwoFactorSettingsController.php', |
|
54 | - 'OCA\\Settings\\Controller\\UsersController' => __DIR__ . '/..' . '/../lib/Controller/UsersController.php', |
|
55 | - 'OCA\\Settings\\Controller\\WebAuthnController' => __DIR__ . '/..' . '/../lib/Controller/WebAuthnController.php', |
|
56 | - 'OCA\\Settings\\Events\\BeforeTemplateRenderedEvent' => __DIR__ . '/..' . '/../lib/Events/BeforeTemplateRenderedEvent.php', |
|
57 | - 'OCA\\Settings\\Hooks' => __DIR__ . '/..' . '/../lib/Hooks.php', |
|
58 | - 'OCA\\Settings\\Listener\\AppPasswordCreatedActivityListener' => __DIR__ . '/..' . '/../lib/Listener/AppPasswordCreatedActivityListener.php', |
|
59 | - 'OCA\\Settings\\Listener\\GroupRemovedListener' => __DIR__ . '/..' . '/../lib/Listener/GroupRemovedListener.php', |
|
60 | - 'OCA\\Settings\\Listener\\MailProviderListener' => __DIR__ . '/..' . '/../lib/Listener/MailProviderListener.php', |
|
61 | - 'OCA\\Settings\\Listener\\UserAddedToGroupActivityListener' => __DIR__ . '/..' . '/../lib/Listener/UserAddedToGroupActivityListener.php', |
|
62 | - 'OCA\\Settings\\Listener\\UserRemovedFromGroupActivityListener' => __DIR__ . '/..' . '/../lib/Listener/UserRemovedFromGroupActivityListener.php', |
|
63 | - 'OCA\\Settings\\Mailer\\NewUserMailHelper' => __DIR__ . '/..' . '/../lib/Mailer/NewUserMailHelper.php', |
|
64 | - 'OCA\\Settings\\Middleware\\SubadminMiddleware' => __DIR__ . '/..' . '/../lib/Middleware/SubadminMiddleware.php', |
|
65 | - 'OCA\\Settings\\ResponseDefinitions' => __DIR__ . '/..' . '/../lib/ResponseDefinitions.php', |
|
66 | - 'OCA\\Settings\\Search\\AppSearch' => __DIR__ . '/..' . '/../lib/Search/AppSearch.php', |
|
67 | - 'OCA\\Settings\\Search\\SectionSearch' => __DIR__ . '/..' . '/../lib/Search/SectionSearch.php', |
|
68 | - 'OCA\\Settings\\Search\\UserSearch' => __DIR__ . '/..' . '/../lib/Search/UserSearch.php', |
|
69 | - 'OCA\\Settings\\Sections\\Admin\\Additional' => __DIR__ . '/..' . '/../lib/Sections/Admin/Additional.php', |
|
70 | - 'OCA\\Settings\\Sections\\Admin\\ArtificialIntelligence' => __DIR__ . '/..' . '/../lib/Sections/Admin/ArtificialIntelligence.php', |
|
71 | - 'OCA\\Settings\\Sections\\Admin\\Delegation' => __DIR__ . '/..' . '/../lib/Sections/Admin/Delegation.php', |
|
72 | - 'OCA\\Settings\\Sections\\Admin\\Groupware' => __DIR__ . '/..' . '/../lib/Sections/Admin/Groupware.php', |
|
73 | - 'OCA\\Settings\\Sections\\Admin\\Overview' => __DIR__ . '/..' . '/../lib/Sections/Admin/Overview.php', |
|
74 | - 'OCA\\Settings\\Sections\\Admin\\Presets' => __DIR__ . '/..' . '/../lib/Sections/Admin/Presets.php', |
|
75 | - 'OCA\\Settings\\Sections\\Admin\\Security' => __DIR__ . '/..' . '/../lib/Sections/Admin/Security.php', |
|
76 | - 'OCA\\Settings\\Sections\\Admin\\Server' => __DIR__ . '/..' . '/../lib/Sections/Admin/Server.php', |
|
77 | - 'OCA\\Settings\\Sections\\Admin\\Sharing' => __DIR__ . '/..' . '/../lib/Sections/Admin/Sharing.php', |
|
78 | - 'OCA\\Settings\\Sections\\Admin\\Users' => __DIR__ . '/..' . '/../lib/Sections/Admin/Users.php', |
|
79 | - 'OCA\\Settings\\Sections\\Personal\\Availability' => __DIR__ . '/..' . '/../lib/Sections/Personal/Availability.php', |
|
80 | - 'OCA\\Settings\\Sections\\Personal\\Calendar' => __DIR__ . '/..' . '/../lib/Sections/Personal/Calendar.php', |
|
81 | - 'OCA\\Settings\\Sections\\Personal\\PersonalInfo' => __DIR__ . '/..' . '/../lib/Sections/Personal/PersonalInfo.php', |
|
82 | - 'OCA\\Settings\\Sections\\Personal\\Security' => __DIR__ . '/..' . '/../lib/Sections/Personal/Security.php', |
|
83 | - 'OCA\\Settings\\Sections\\Personal\\SyncClients' => __DIR__ . '/..' . '/../lib/Sections/Personal/SyncClients.php', |
|
84 | - 'OCA\\Settings\\Service\\AuthorizedGroupService' => __DIR__ . '/..' . '/../lib/Service/AuthorizedGroupService.php', |
|
85 | - 'OCA\\Settings\\Service\\NotFoundException' => __DIR__ . '/..' . '/../lib/Service/NotFoundException.php', |
|
86 | - 'OCA\\Settings\\Service\\ServiceException' => __DIR__ . '/..' . '/../lib/Service/ServiceException.php', |
|
87 | - 'OCA\\Settings\\Settings\\Admin\\ArtificialIntelligence' => __DIR__ . '/..' . '/../lib/Settings/Admin/ArtificialIntelligence.php', |
|
88 | - 'OCA\\Settings\\Settings\\Admin\\Delegation' => __DIR__ . '/..' . '/../lib/Settings/Admin/Delegation.php', |
|
89 | - 'OCA\\Settings\\Settings\\Admin\\Mail' => __DIR__ . '/..' . '/../lib/Settings/Admin/Mail.php', |
|
90 | - 'OCA\\Settings\\Settings\\Admin\\MailProvider' => __DIR__ . '/..' . '/../lib/Settings/Admin/MailProvider.php', |
|
91 | - 'OCA\\Settings\\Settings\\Admin\\Overview' => __DIR__ . '/..' . '/../lib/Settings/Admin/Overview.php', |
|
92 | - 'OCA\\Settings\\Settings\\Admin\\Presets' => __DIR__ . '/..' . '/../lib/Settings/Admin/Presets.php', |
|
93 | - 'OCA\\Settings\\Settings\\Admin\\Security' => __DIR__ . '/..' . '/../lib/Settings/Admin/Security.php', |
|
94 | - 'OCA\\Settings\\Settings\\Admin\\Server' => __DIR__ . '/..' . '/../lib/Settings/Admin/Server.php', |
|
95 | - 'OCA\\Settings\\Settings\\Admin\\Sharing' => __DIR__ . '/..' . '/../lib/Settings/Admin/Sharing.php', |
|
96 | - 'OCA\\Settings\\Settings\\Admin\\Users' => __DIR__ . '/..' . '/../lib/Settings/Admin/Users.php', |
|
97 | - 'OCA\\Settings\\Settings\\Personal\\Additional' => __DIR__ . '/..' . '/../lib/Settings/Personal/Additional.php', |
|
98 | - 'OCA\\Settings\\Settings\\Personal\\PersonalInfo' => __DIR__ . '/..' . '/../lib/Settings/Personal/PersonalInfo.php', |
|
99 | - 'OCA\\Settings\\Settings\\Personal\\Security\\Authtokens' => __DIR__ . '/..' . '/../lib/Settings/Personal/Security/Authtokens.php', |
|
100 | - 'OCA\\Settings\\Settings\\Personal\\Security\\Password' => __DIR__ . '/..' . '/../lib/Settings/Personal/Security/Password.php', |
|
101 | - 'OCA\\Settings\\Settings\\Personal\\Security\\TwoFactor' => __DIR__ . '/..' . '/../lib/Settings/Personal/Security/TwoFactor.php', |
|
102 | - 'OCA\\Settings\\Settings\\Personal\\Security\\WebAuthn' => __DIR__ . '/..' . '/../lib/Settings/Personal/Security/WebAuthn.php', |
|
103 | - 'OCA\\Settings\\Settings\\Personal\\ServerDevNotice' => __DIR__ . '/..' . '/../lib/Settings/Personal/ServerDevNotice.php', |
|
104 | - 'OCA\\Settings\\SetupChecks\\AllowedAdminRanges' => __DIR__ . '/..' . '/../lib/SetupChecks/AllowedAdminRanges.php', |
|
105 | - 'OCA\\Settings\\SetupChecks\\AppDirsWithDifferentOwner' => __DIR__ . '/..' . '/../lib/SetupChecks/AppDirsWithDifferentOwner.php', |
|
106 | - 'OCA\\Settings\\SetupChecks\\BruteForceThrottler' => __DIR__ . '/..' . '/../lib/SetupChecks/BruteForceThrottler.php', |
|
107 | - 'OCA\\Settings\\SetupChecks\\CheckUserCertificates' => __DIR__ . '/..' . '/../lib/SetupChecks/CheckUserCertificates.php', |
|
108 | - 'OCA\\Settings\\SetupChecks\\CodeIntegrity' => __DIR__ . '/..' . '/../lib/SetupChecks/CodeIntegrity.php', |
|
109 | - 'OCA\\Settings\\SetupChecks\\CronErrors' => __DIR__ . '/..' . '/../lib/SetupChecks/CronErrors.php', |
|
110 | - 'OCA\\Settings\\SetupChecks\\CronInfo' => __DIR__ . '/..' . '/../lib/SetupChecks/CronInfo.php', |
|
111 | - 'OCA\\Settings\\SetupChecks\\DataDirectoryProtected' => __DIR__ . '/..' . '/../lib/SetupChecks/DataDirectoryProtected.php', |
|
112 | - 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingColumns' => __DIR__ . '/..' . '/../lib/SetupChecks/DatabaseHasMissingColumns.php', |
|
113 | - 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingIndices' => __DIR__ . '/..' . '/../lib/SetupChecks/DatabaseHasMissingIndices.php', |
|
114 | - 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingPrimaryKeys' => __DIR__ . '/..' . '/../lib/SetupChecks/DatabaseHasMissingPrimaryKeys.php', |
|
115 | - 'OCA\\Settings\\SetupChecks\\DatabasePendingBigIntConversions' => __DIR__ . '/..' . '/../lib/SetupChecks/DatabasePendingBigIntConversions.php', |
|
116 | - 'OCA\\Settings\\SetupChecks\\DebugMode' => __DIR__ . '/..' . '/../lib/SetupChecks/DebugMode.php', |
|
117 | - 'OCA\\Settings\\SetupChecks\\DefaultPhoneRegionSet' => __DIR__ . '/..' . '/../lib/SetupChecks/DefaultPhoneRegionSet.php', |
|
118 | - 'OCA\\Settings\\SetupChecks\\EmailTestSuccessful' => __DIR__ . '/..' . '/../lib/SetupChecks/EmailTestSuccessful.php', |
|
119 | - 'OCA\\Settings\\SetupChecks\\FileLocking' => __DIR__ . '/..' . '/../lib/SetupChecks/FileLocking.php', |
|
120 | - 'OCA\\Settings\\SetupChecks\\ForwardedForHeaders' => __DIR__ . '/..' . '/../lib/SetupChecks/ForwardedForHeaders.php', |
|
121 | - 'OCA\\Settings\\SetupChecks\\HttpsUrlGeneration' => __DIR__ . '/..' . '/../lib/SetupChecks/HttpsUrlGeneration.php', |
|
122 | - 'OCA\\Settings\\SetupChecks\\InternetConnectivity' => __DIR__ . '/..' . '/../lib/SetupChecks/InternetConnectivity.php', |
|
123 | - 'OCA\\Settings\\SetupChecks\\JavaScriptModules' => __DIR__ . '/..' . '/../lib/SetupChecks/JavaScriptModules.php', |
|
124 | - 'OCA\\Settings\\SetupChecks\\JavaScriptSourceMaps' => __DIR__ . '/..' . '/../lib/SetupChecks/JavaScriptSourceMaps.php', |
|
125 | - 'OCA\\Settings\\SetupChecks\\LegacySSEKeyFormat' => __DIR__ . '/..' . '/../lib/SetupChecks/LegacySSEKeyFormat.php', |
|
126 | - 'OCA\\Settings\\SetupChecks\\LoggingLevel' => __DIR__ . '/..' . '/../lib/SetupChecks/LoggingLevel.php', |
|
127 | - 'OCA\\Settings\\SetupChecks\\MaintenanceWindowStart' => __DIR__ . '/..' . '/../lib/SetupChecks/MaintenanceWindowStart.php', |
|
128 | - 'OCA\\Settings\\SetupChecks\\MemcacheConfigured' => __DIR__ . '/..' . '/../lib/SetupChecks/MemcacheConfigured.php', |
|
129 | - 'OCA\\Settings\\SetupChecks\\MimeTypeMigrationAvailable' => __DIR__ . '/..' . '/../lib/SetupChecks/MimeTypeMigrationAvailable.php', |
|
130 | - 'OCA\\Settings\\SetupChecks\\MysqlRowFormat' => __DIR__ . '/..' . '/../lib/SetupChecks/MysqlRowFormat.php', |
|
131 | - 'OCA\\Settings\\SetupChecks\\MysqlUnicodeSupport' => __DIR__ . '/..' . '/../lib/SetupChecks/MysqlUnicodeSupport.php', |
|
132 | - 'OCA\\Settings\\SetupChecks\\OcxProviders' => __DIR__ . '/..' . '/../lib/SetupChecks/OcxProviders.php', |
|
133 | - 'OCA\\Settings\\SetupChecks\\OverwriteCliUrl' => __DIR__ . '/..' . '/../lib/SetupChecks/OverwriteCliUrl.php', |
|
134 | - 'OCA\\Settings\\SetupChecks\\PhpApcuConfig' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpApcuConfig.php', |
|
135 | - 'OCA\\Settings\\SetupChecks\\PhpDefaultCharset' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpDefaultCharset.php', |
|
136 | - 'OCA\\Settings\\SetupChecks\\PhpDisabledFunctions' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpDisabledFunctions.php', |
|
137 | - 'OCA\\Settings\\SetupChecks\\PhpFreetypeSupport' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpFreetypeSupport.php', |
|
138 | - 'OCA\\Settings\\SetupChecks\\PhpGetEnv' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpGetEnv.php', |
|
139 | - 'OCA\\Settings\\SetupChecks\\PhpMaxFileSize' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpMaxFileSize.php', |
|
140 | - 'OCA\\Settings\\SetupChecks\\PhpMemoryLimit' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpMemoryLimit.php', |
|
141 | - 'OCA\\Settings\\SetupChecks\\PhpModules' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpModules.php', |
|
142 | - 'OCA\\Settings\\SetupChecks\\PhpOpcacheSetup' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpOpcacheSetup.php', |
|
143 | - 'OCA\\Settings\\SetupChecks\\PhpOutdated' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpOutdated.php', |
|
144 | - 'OCA\\Settings\\SetupChecks\\PhpOutputBuffering' => __DIR__ . '/..' . '/../lib/SetupChecks/PhpOutputBuffering.php', |
|
145 | - 'OCA\\Settings\\SetupChecks\\PushService' => __DIR__ . '/..' . '/../lib/SetupChecks/PushService.php', |
|
146 | - 'OCA\\Settings\\SetupChecks\\RandomnessSecure' => __DIR__ . '/..' . '/../lib/SetupChecks/RandomnessSecure.php', |
|
147 | - 'OCA\\Settings\\SetupChecks\\ReadOnlyConfig' => __DIR__ . '/..' . '/../lib/SetupChecks/ReadOnlyConfig.php', |
|
148 | - 'OCA\\Settings\\SetupChecks\\SchedulingTableSize' => __DIR__ . '/..' . '/../lib/SetupChecks/SchedulingTableSize.php', |
|
149 | - 'OCA\\Settings\\SetupChecks\\SecurityHeaders' => __DIR__ . '/..' . '/../lib/SetupChecks/SecurityHeaders.php', |
|
150 | - 'OCA\\Settings\\SetupChecks\\SupportedDatabase' => __DIR__ . '/..' . '/../lib/SetupChecks/SupportedDatabase.php', |
|
151 | - 'OCA\\Settings\\SetupChecks\\SystemIs64bit' => __DIR__ . '/..' . '/../lib/SetupChecks/SystemIs64bit.php', |
|
152 | - 'OCA\\Settings\\SetupChecks\\TaskProcessingPickupSpeed' => __DIR__ . '/..' . '/../lib/SetupChecks/TaskProcessingPickupSpeed.php', |
|
153 | - 'OCA\\Settings\\SetupChecks\\TaskProcessingSuccessRate' => __DIR__ . '/..' . '/../lib/SetupChecks/TaskProcessingSuccessRate.php', |
|
154 | - 'OCA\\Settings\\SetupChecks\\TempSpaceAvailable' => __DIR__ . '/..' . '/../lib/SetupChecks/TempSpaceAvailable.php', |
|
155 | - 'OCA\\Settings\\SetupChecks\\TransactionIsolation' => __DIR__ . '/..' . '/../lib/SetupChecks/TransactionIsolation.php', |
|
156 | - 'OCA\\Settings\\SetupChecks\\WellKnownUrls' => __DIR__ . '/..' . '/../lib/SetupChecks/WellKnownUrls.php', |
|
157 | - 'OCA\\Settings\\SetupChecks\\Woff2Loading' => __DIR__ . '/..' . '/../lib/SetupChecks/Woff2Loading.php', |
|
158 | - 'OCA\\Settings\\UserMigration\\AccountMigrator' => __DIR__ . '/..' . '/../lib/UserMigration/AccountMigrator.php', |
|
159 | - 'OCA\\Settings\\UserMigration\\AccountMigratorException' => __DIR__ . '/..' . '/../lib/UserMigration/AccountMigratorException.php', |
|
160 | - 'OCA\\Settings\\WellKnown\\ChangePasswordHandler' => __DIR__ . '/..' . '/../lib/WellKnown/ChangePasswordHandler.php', |
|
161 | - 'OCA\\Settings\\WellKnown\\SecurityTxtHandler' => __DIR__ . '/..' . '/../lib/WellKnown/SecurityTxtHandler.php', |
|
23 | + public static $classMap = array( |
|
24 | + 'Composer\\InstalledVersions' => __DIR__.'/..'.'/composer/InstalledVersions.php', |
|
25 | + 'OCA\\Settings\\Activity\\GroupProvider' => __DIR__.'/..'.'/../lib/Activity/GroupProvider.php', |
|
26 | + 'OCA\\Settings\\Activity\\GroupSetting' => __DIR__.'/..'.'/../lib/Activity/GroupSetting.php', |
|
27 | + 'OCA\\Settings\\Activity\\Provider' => __DIR__.'/..'.'/../lib/Activity/Provider.php', |
|
28 | + 'OCA\\Settings\\Activity\\SecurityFilter' => __DIR__.'/..'.'/../lib/Activity/SecurityFilter.php', |
|
29 | + 'OCA\\Settings\\Activity\\SecurityProvider' => __DIR__.'/..'.'/../lib/Activity/SecurityProvider.php', |
|
30 | + 'OCA\\Settings\\Activity\\SecuritySetting' => __DIR__.'/..'.'/../lib/Activity/SecuritySetting.php', |
|
31 | + 'OCA\\Settings\\Activity\\Setting' => __DIR__.'/..'.'/../lib/Activity/Setting.php', |
|
32 | + 'OCA\\Settings\\AppInfo\\Application' => __DIR__.'/..'.'/../lib/AppInfo/Application.php', |
|
33 | + 'OCA\\Settings\\BackgroundJobs\\VerifyUserData' => __DIR__.'/..'.'/../lib/BackgroundJobs/VerifyUserData.php', |
|
34 | + 'OCA\\Settings\\Command\\AdminDelegation\\Add' => __DIR__.'/..'.'/../lib/Command/AdminDelegation/Add.php', |
|
35 | + 'OCA\\Settings\\Command\\AdminDelegation\\Remove' => __DIR__.'/..'.'/../lib/Command/AdminDelegation/Remove.php', |
|
36 | + 'OCA\\Settings\\Command\\AdminDelegation\\Show' => __DIR__.'/..'.'/../lib/Command/AdminDelegation/Show.php', |
|
37 | + 'OCA\\Settings\\ConfigLexicon' => __DIR__.'/..'.'/../lib/ConfigLexicon.php', |
|
38 | + 'OCA\\Settings\\Controller\\AISettingsController' => __DIR__.'/..'.'/../lib/Controller/AISettingsController.php', |
|
39 | + 'OCA\\Settings\\Controller\\AdminSettingsController' => __DIR__.'/..'.'/../lib/Controller/AdminSettingsController.php', |
|
40 | + 'OCA\\Settings\\Controller\\AppSettingsController' => __DIR__.'/..'.'/../lib/Controller/AppSettingsController.php', |
|
41 | + 'OCA\\Settings\\Controller\\AuthSettingsController' => __DIR__.'/..'.'/../lib/Controller/AuthSettingsController.php', |
|
42 | + 'OCA\\Settings\\Controller\\AuthorizedGroupController' => __DIR__.'/..'.'/../lib/Controller/AuthorizedGroupController.php', |
|
43 | + 'OCA\\Settings\\Controller\\ChangePasswordController' => __DIR__.'/..'.'/../lib/Controller/ChangePasswordController.php', |
|
44 | + 'OCA\\Settings\\Controller\\CheckSetupController' => __DIR__.'/..'.'/../lib/Controller/CheckSetupController.php', |
|
45 | + 'OCA\\Settings\\Controller\\CommonSettingsTrait' => __DIR__.'/..'.'/../lib/Controller/CommonSettingsTrait.php', |
|
46 | + 'OCA\\Settings\\Controller\\DeclarativeSettingsController' => __DIR__.'/..'.'/../lib/Controller/DeclarativeSettingsController.php', |
|
47 | + 'OCA\\Settings\\Controller\\HelpController' => __DIR__.'/..'.'/../lib/Controller/HelpController.php', |
|
48 | + 'OCA\\Settings\\Controller\\LogSettingsController' => __DIR__.'/..'.'/../lib/Controller/LogSettingsController.php', |
|
49 | + 'OCA\\Settings\\Controller\\MailSettingsController' => __DIR__.'/..'.'/../lib/Controller/MailSettingsController.php', |
|
50 | + 'OCA\\Settings\\Controller\\PersonalSettingsController' => __DIR__.'/..'.'/../lib/Controller/PersonalSettingsController.php', |
|
51 | + 'OCA\\Settings\\Controller\\PresetController' => __DIR__.'/..'.'/../lib/Controller/PresetController.php', |
|
52 | + 'OCA\\Settings\\Controller\\ReasonsController' => __DIR__.'/..'.'/../lib/Controller/ReasonsController.php', |
|
53 | + 'OCA\\Settings\\Controller\\TwoFactorSettingsController' => __DIR__.'/..'.'/../lib/Controller/TwoFactorSettingsController.php', |
|
54 | + 'OCA\\Settings\\Controller\\UsersController' => __DIR__.'/..'.'/../lib/Controller/UsersController.php', |
|
55 | + 'OCA\\Settings\\Controller\\WebAuthnController' => __DIR__.'/..'.'/../lib/Controller/WebAuthnController.php', |
|
56 | + 'OCA\\Settings\\Events\\BeforeTemplateRenderedEvent' => __DIR__.'/..'.'/../lib/Events/BeforeTemplateRenderedEvent.php', |
|
57 | + 'OCA\\Settings\\Hooks' => __DIR__.'/..'.'/../lib/Hooks.php', |
|
58 | + 'OCA\\Settings\\Listener\\AppPasswordCreatedActivityListener' => __DIR__.'/..'.'/../lib/Listener/AppPasswordCreatedActivityListener.php', |
|
59 | + 'OCA\\Settings\\Listener\\GroupRemovedListener' => __DIR__.'/..'.'/../lib/Listener/GroupRemovedListener.php', |
|
60 | + 'OCA\\Settings\\Listener\\MailProviderListener' => __DIR__.'/..'.'/../lib/Listener/MailProviderListener.php', |
|
61 | + 'OCA\\Settings\\Listener\\UserAddedToGroupActivityListener' => __DIR__.'/..'.'/../lib/Listener/UserAddedToGroupActivityListener.php', |
|
62 | + 'OCA\\Settings\\Listener\\UserRemovedFromGroupActivityListener' => __DIR__.'/..'.'/../lib/Listener/UserRemovedFromGroupActivityListener.php', |
|
63 | + 'OCA\\Settings\\Mailer\\NewUserMailHelper' => __DIR__.'/..'.'/../lib/Mailer/NewUserMailHelper.php', |
|
64 | + 'OCA\\Settings\\Middleware\\SubadminMiddleware' => __DIR__.'/..'.'/../lib/Middleware/SubadminMiddleware.php', |
|
65 | + 'OCA\\Settings\\ResponseDefinitions' => __DIR__.'/..'.'/../lib/ResponseDefinitions.php', |
|
66 | + 'OCA\\Settings\\Search\\AppSearch' => __DIR__.'/..'.'/../lib/Search/AppSearch.php', |
|
67 | + 'OCA\\Settings\\Search\\SectionSearch' => __DIR__.'/..'.'/../lib/Search/SectionSearch.php', |
|
68 | + 'OCA\\Settings\\Search\\UserSearch' => __DIR__.'/..'.'/../lib/Search/UserSearch.php', |
|
69 | + 'OCA\\Settings\\Sections\\Admin\\Additional' => __DIR__.'/..'.'/../lib/Sections/Admin/Additional.php', |
|
70 | + 'OCA\\Settings\\Sections\\Admin\\ArtificialIntelligence' => __DIR__.'/..'.'/../lib/Sections/Admin/ArtificialIntelligence.php', |
|
71 | + 'OCA\\Settings\\Sections\\Admin\\Delegation' => __DIR__.'/..'.'/../lib/Sections/Admin/Delegation.php', |
|
72 | + 'OCA\\Settings\\Sections\\Admin\\Groupware' => __DIR__.'/..'.'/../lib/Sections/Admin/Groupware.php', |
|
73 | + 'OCA\\Settings\\Sections\\Admin\\Overview' => __DIR__.'/..'.'/../lib/Sections/Admin/Overview.php', |
|
74 | + 'OCA\\Settings\\Sections\\Admin\\Presets' => __DIR__.'/..'.'/../lib/Sections/Admin/Presets.php', |
|
75 | + 'OCA\\Settings\\Sections\\Admin\\Security' => __DIR__.'/..'.'/../lib/Sections/Admin/Security.php', |
|
76 | + 'OCA\\Settings\\Sections\\Admin\\Server' => __DIR__.'/..'.'/../lib/Sections/Admin/Server.php', |
|
77 | + 'OCA\\Settings\\Sections\\Admin\\Sharing' => __DIR__.'/..'.'/../lib/Sections/Admin/Sharing.php', |
|
78 | + 'OCA\\Settings\\Sections\\Admin\\Users' => __DIR__.'/..'.'/../lib/Sections/Admin/Users.php', |
|
79 | + 'OCA\\Settings\\Sections\\Personal\\Availability' => __DIR__.'/..'.'/../lib/Sections/Personal/Availability.php', |
|
80 | + 'OCA\\Settings\\Sections\\Personal\\Calendar' => __DIR__.'/..'.'/../lib/Sections/Personal/Calendar.php', |
|
81 | + 'OCA\\Settings\\Sections\\Personal\\PersonalInfo' => __DIR__.'/..'.'/../lib/Sections/Personal/PersonalInfo.php', |
|
82 | + 'OCA\\Settings\\Sections\\Personal\\Security' => __DIR__.'/..'.'/../lib/Sections/Personal/Security.php', |
|
83 | + 'OCA\\Settings\\Sections\\Personal\\SyncClients' => __DIR__.'/..'.'/../lib/Sections/Personal/SyncClients.php', |
|
84 | + 'OCA\\Settings\\Service\\AuthorizedGroupService' => __DIR__.'/..'.'/../lib/Service/AuthorizedGroupService.php', |
|
85 | + 'OCA\\Settings\\Service\\NotFoundException' => __DIR__.'/..'.'/../lib/Service/NotFoundException.php', |
|
86 | + 'OCA\\Settings\\Service\\ServiceException' => __DIR__.'/..'.'/../lib/Service/ServiceException.php', |
|
87 | + 'OCA\\Settings\\Settings\\Admin\\ArtificialIntelligence' => __DIR__.'/..'.'/../lib/Settings/Admin/ArtificialIntelligence.php', |
|
88 | + 'OCA\\Settings\\Settings\\Admin\\Delegation' => __DIR__.'/..'.'/../lib/Settings/Admin/Delegation.php', |
|
89 | + 'OCA\\Settings\\Settings\\Admin\\Mail' => __DIR__.'/..'.'/../lib/Settings/Admin/Mail.php', |
|
90 | + 'OCA\\Settings\\Settings\\Admin\\MailProvider' => __DIR__.'/..'.'/../lib/Settings/Admin/MailProvider.php', |
|
91 | + 'OCA\\Settings\\Settings\\Admin\\Overview' => __DIR__.'/..'.'/../lib/Settings/Admin/Overview.php', |
|
92 | + 'OCA\\Settings\\Settings\\Admin\\Presets' => __DIR__.'/..'.'/../lib/Settings/Admin/Presets.php', |
|
93 | + 'OCA\\Settings\\Settings\\Admin\\Security' => __DIR__.'/..'.'/../lib/Settings/Admin/Security.php', |
|
94 | + 'OCA\\Settings\\Settings\\Admin\\Server' => __DIR__.'/..'.'/../lib/Settings/Admin/Server.php', |
|
95 | + 'OCA\\Settings\\Settings\\Admin\\Sharing' => __DIR__.'/..'.'/../lib/Settings/Admin/Sharing.php', |
|
96 | + 'OCA\\Settings\\Settings\\Admin\\Users' => __DIR__.'/..'.'/../lib/Settings/Admin/Users.php', |
|
97 | + 'OCA\\Settings\\Settings\\Personal\\Additional' => __DIR__.'/..'.'/../lib/Settings/Personal/Additional.php', |
|
98 | + 'OCA\\Settings\\Settings\\Personal\\PersonalInfo' => __DIR__.'/..'.'/../lib/Settings/Personal/PersonalInfo.php', |
|
99 | + 'OCA\\Settings\\Settings\\Personal\\Security\\Authtokens' => __DIR__.'/..'.'/../lib/Settings/Personal/Security/Authtokens.php', |
|
100 | + 'OCA\\Settings\\Settings\\Personal\\Security\\Password' => __DIR__.'/..'.'/../lib/Settings/Personal/Security/Password.php', |
|
101 | + 'OCA\\Settings\\Settings\\Personal\\Security\\TwoFactor' => __DIR__.'/..'.'/../lib/Settings/Personal/Security/TwoFactor.php', |
|
102 | + 'OCA\\Settings\\Settings\\Personal\\Security\\WebAuthn' => __DIR__.'/..'.'/../lib/Settings/Personal/Security/WebAuthn.php', |
|
103 | + 'OCA\\Settings\\Settings\\Personal\\ServerDevNotice' => __DIR__.'/..'.'/../lib/Settings/Personal/ServerDevNotice.php', |
|
104 | + 'OCA\\Settings\\SetupChecks\\AllowedAdminRanges' => __DIR__.'/..'.'/../lib/SetupChecks/AllowedAdminRanges.php', |
|
105 | + 'OCA\\Settings\\SetupChecks\\AppDirsWithDifferentOwner' => __DIR__.'/..'.'/../lib/SetupChecks/AppDirsWithDifferentOwner.php', |
|
106 | + 'OCA\\Settings\\SetupChecks\\BruteForceThrottler' => __DIR__.'/..'.'/../lib/SetupChecks/BruteForceThrottler.php', |
|
107 | + 'OCA\\Settings\\SetupChecks\\CheckUserCertificates' => __DIR__.'/..'.'/../lib/SetupChecks/CheckUserCertificates.php', |
|
108 | + 'OCA\\Settings\\SetupChecks\\CodeIntegrity' => __DIR__.'/..'.'/../lib/SetupChecks/CodeIntegrity.php', |
|
109 | + 'OCA\\Settings\\SetupChecks\\CronErrors' => __DIR__.'/..'.'/../lib/SetupChecks/CronErrors.php', |
|
110 | + 'OCA\\Settings\\SetupChecks\\CronInfo' => __DIR__.'/..'.'/../lib/SetupChecks/CronInfo.php', |
|
111 | + 'OCA\\Settings\\SetupChecks\\DataDirectoryProtected' => __DIR__.'/..'.'/../lib/SetupChecks/DataDirectoryProtected.php', |
|
112 | + 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingColumns' => __DIR__.'/..'.'/../lib/SetupChecks/DatabaseHasMissingColumns.php', |
|
113 | + 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingIndices' => __DIR__.'/..'.'/../lib/SetupChecks/DatabaseHasMissingIndices.php', |
|
114 | + 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingPrimaryKeys' => __DIR__.'/..'.'/../lib/SetupChecks/DatabaseHasMissingPrimaryKeys.php', |
|
115 | + 'OCA\\Settings\\SetupChecks\\DatabasePendingBigIntConversions' => __DIR__.'/..'.'/../lib/SetupChecks/DatabasePendingBigIntConversions.php', |
|
116 | + 'OCA\\Settings\\SetupChecks\\DebugMode' => __DIR__.'/..'.'/../lib/SetupChecks/DebugMode.php', |
|
117 | + 'OCA\\Settings\\SetupChecks\\DefaultPhoneRegionSet' => __DIR__.'/..'.'/../lib/SetupChecks/DefaultPhoneRegionSet.php', |
|
118 | + 'OCA\\Settings\\SetupChecks\\EmailTestSuccessful' => __DIR__.'/..'.'/../lib/SetupChecks/EmailTestSuccessful.php', |
|
119 | + 'OCA\\Settings\\SetupChecks\\FileLocking' => __DIR__.'/..'.'/../lib/SetupChecks/FileLocking.php', |
|
120 | + 'OCA\\Settings\\SetupChecks\\ForwardedForHeaders' => __DIR__.'/..'.'/../lib/SetupChecks/ForwardedForHeaders.php', |
|
121 | + 'OCA\\Settings\\SetupChecks\\HttpsUrlGeneration' => __DIR__.'/..'.'/../lib/SetupChecks/HttpsUrlGeneration.php', |
|
122 | + 'OCA\\Settings\\SetupChecks\\InternetConnectivity' => __DIR__.'/..'.'/../lib/SetupChecks/InternetConnectivity.php', |
|
123 | + 'OCA\\Settings\\SetupChecks\\JavaScriptModules' => __DIR__.'/..'.'/../lib/SetupChecks/JavaScriptModules.php', |
|
124 | + 'OCA\\Settings\\SetupChecks\\JavaScriptSourceMaps' => __DIR__.'/..'.'/../lib/SetupChecks/JavaScriptSourceMaps.php', |
|
125 | + 'OCA\\Settings\\SetupChecks\\LegacySSEKeyFormat' => __DIR__.'/..'.'/../lib/SetupChecks/LegacySSEKeyFormat.php', |
|
126 | + 'OCA\\Settings\\SetupChecks\\LoggingLevel' => __DIR__.'/..'.'/../lib/SetupChecks/LoggingLevel.php', |
|
127 | + 'OCA\\Settings\\SetupChecks\\MaintenanceWindowStart' => __DIR__.'/..'.'/../lib/SetupChecks/MaintenanceWindowStart.php', |
|
128 | + 'OCA\\Settings\\SetupChecks\\MemcacheConfigured' => __DIR__.'/..'.'/../lib/SetupChecks/MemcacheConfigured.php', |
|
129 | + 'OCA\\Settings\\SetupChecks\\MimeTypeMigrationAvailable' => __DIR__.'/..'.'/../lib/SetupChecks/MimeTypeMigrationAvailable.php', |
|
130 | + 'OCA\\Settings\\SetupChecks\\MysqlRowFormat' => __DIR__.'/..'.'/../lib/SetupChecks/MysqlRowFormat.php', |
|
131 | + 'OCA\\Settings\\SetupChecks\\MysqlUnicodeSupport' => __DIR__.'/..'.'/../lib/SetupChecks/MysqlUnicodeSupport.php', |
|
132 | + 'OCA\\Settings\\SetupChecks\\OcxProviders' => __DIR__.'/..'.'/../lib/SetupChecks/OcxProviders.php', |
|
133 | + 'OCA\\Settings\\SetupChecks\\OverwriteCliUrl' => __DIR__.'/..'.'/../lib/SetupChecks/OverwriteCliUrl.php', |
|
134 | + 'OCA\\Settings\\SetupChecks\\PhpApcuConfig' => __DIR__.'/..'.'/../lib/SetupChecks/PhpApcuConfig.php', |
|
135 | + 'OCA\\Settings\\SetupChecks\\PhpDefaultCharset' => __DIR__.'/..'.'/../lib/SetupChecks/PhpDefaultCharset.php', |
|
136 | + 'OCA\\Settings\\SetupChecks\\PhpDisabledFunctions' => __DIR__.'/..'.'/../lib/SetupChecks/PhpDisabledFunctions.php', |
|
137 | + 'OCA\\Settings\\SetupChecks\\PhpFreetypeSupport' => __DIR__.'/..'.'/../lib/SetupChecks/PhpFreetypeSupport.php', |
|
138 | + 'OCA\\Settings\\SetupChecks\\PhpGetEnv' => __DIR__.'/..'.'/../lib/SetupChecks/PhpGetEnv.php', |
|
139 | + 'OCA\\Settings\\SetupChecks\\PhpMaxFileSize' => __DIR__.'/..'.'/../lib/SetupChecks/PhpMaxFileSize.php', |
|
140 | + 'OCA\\Settings\\SetupChecks\\PhpMemoryLimit' => __DIR__.'/..'.'/../lib/SetupChecks/PhpMemoryLimit.php', |
|
141 | + 'OCA\\Settings\\SetupChecks\\PhpModules' => __DIR__.'/..'.'/../lib/SetupChecks/PhpModules.php', |
|
142 | + 'OCA\\Settings\\SetupChecks\\PhpOpcacheSetup' => __DIR__.'/..'.'/../lib/SetupChecks/PhpOpcacheSetup.php', |
|
143 | + 'OCA\\Settings\\SetupChecks\\PhpOutdated' => __DIR__.'/..'.'/../lib/SetupChecks/PhpOutdated.php', |
|
144 | + 'OCA\\Settings\\SetupChecks\\PhpOutputBuffering' => __DIR__.'/..'.'/../lib/SetupChecks/PhpOutputBuffering.php', |
|
145 | + 'OCA\\Settings\\SetupChecks\\PushService' => __DIR__.'/..'.'/../lib/SetupChecks/PushService.php', |
|
146 | + 'OCA\\Settings\\SetupChecks\\RandomnessSecure' => __DIR__.'/..'.'/../lib/SetupChecks/RandomnessSecure.php', |
|
147 | + 'OCA\\Settings\\SetupChecks\\ReadOnlyConfig' => __DIR__.'/..'.'/../lib/SetupChecks/ReadOnlyConfig.php', |
|
148 | + 'OCA\\Settings\\SetupChecks\\SchedulingTableSize' => __DIR__.'/..'.'/../lib/SetupChecks/SchedulingTableSize.php', |
|
149 | + 'OCA\\Settings\\SetupChecks\\SecurityHeaders' => __DIR__.'/..'.'/../lib/SetupChecks/SecurityHeaders.php', |
|
150 | + 'OCA\\Settings\\SetupChecks\\SupportedDatabase' => __DIR__.'/..'.'/../lib/SetupChecks/SupportedDatabase.php', |
|
151 | + 'OCA\\Settings\\SetupChecks\\SystemIs64bit' => __DIR__.'/..'.'/../lib/SetupChecks/SystemIs64bit.php', |
|
152 | + 'OCA\\Settings\\SetupChecks\\TaskProcessingPickupSpeed' => __DIR__.'/..'.'/../lib/SetupChecks/TaskProcessingPickupSpeed.php', |
|
153 | + 'OCA\\Settings\\SetupChecks\\TaskProcessingSuccessRate' => __DIR__.'/..'.'/../lib/SetupChecks/TaskProcessingSuccessRate.php', |
|
154 | + 'OCA\\Settings\\SetupChecks\\TempSpaceAvailable' => __DIR__.'/..'.'/../lib/SetupChecks/TempSpaceAvailable.php', |
|
155 | + 'OCA\\Settings\\SetupChecks\\TransactionIsolation' => __DIR__.'/..'.'/../lib/SetupChecks/TransactionIsolation.php', |
|
156 | + 'OCA\\Settings\\SetupChecks\\WellKnownUrls' => __DIR__.'/..'.'/../lib/SetupChecks/WellKnownUrls.php', |
|
157 | + 'OCA\\Settings\\SetupChecks\\Woff2Loading' => __DIR__.'/..'.'/../lib/SetupChecks/Woff2Loading.php', |
|
158 | + 'OCA\\Settings\\UserMigration\\AccountMigrator' => __DIR__.'/..'.'/../lib/UserMigration/AccountMigrator.php', |
|
159 | + 'OCA\\Settings\\UserMigration\\AccountMigratorException' => __DIR__.'/..'.'/../lib/UserMigration/AccountMigratorException.php', |
|
160 | + 'OCA\\Settings\\WellKnown\\ChangePasswordHandler' => __DIR__.'/..'.'/../lib/WellKnown/ChangePasswordHandler.php', |
|
161 | + 'OCA\\Settings\\WellKnown\\SecurityTxtHandler' => __DIR__.'/..'.'/../lib/WellKnown/SecurityTxtHandler.php', |
|
162 | 162 | ); |
163 | 163 | |
164 | 164 | public static function getInitializer(ClassLoader $loader) |
165 | 165 | { |
166 | - return \Closure::bind(function () use ($loader) { |
|
166 | + return \Closure::bind(function() use ($loader) { |
|
167 | 167 | $loader->prefixLengthsPsr4 = ComposerStaticInitSettings::$prefixLengthsPsr4; |
168 | 168 | $loader->prefixDirsPsr4 = ComposerStaticInitSettings::$prefixDirsPsr4; |
169 | 169 | $loader->classMap = ComposerStaticInitSettings::$classMap; |
@@ -6,142 +6,142 @@ |
||
6 | 6 | $baseDir = $vendorDir; |
7 | 7 | |
8 | 8 | return array( |
9 | - 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', |
|
10 | - 'OCA\\Settings\\Activity\\GroupProvider' => $baseDir . '/../lib/Activity/GroupProvider.php', |
|
11 | - 'OCA\\Settings\\Activity\\GroupSetting' => $baseDir . '/../lib/Activity/GroupSetting.php', |
|
12 | - 'OCA\\Settings\\Activity\\Provider' => $baseDir . '/../lib/Activity/Provider.php', |
|
13 | - 'OCA\\Settings\\Activity\\SecurityFilter' => $baseDir . '/../lib/Activity/SecurityFilter.php', |
|
14 | - 'OCA\\Settings\\Activity\\SecurityProvider' => $baseDir . '/../lib/Activity/SecurityProvider.php', |
|
15 | - 'OCA\\Settings\\Activity\\SecuritySetting' => $baseDir . '/../lib/Activity/SecuritySetting.php', |
|
16 | - 'OCA\\Settings\\Activity\\Setting' => $baseDir . '/../lib/Activity/Setting.php', |
|
17 | - 'OCA\\Settings\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php', |
|
18 | - 'OCA\\Settings\\BackgroundJobs\\VerifyUserData' => $baseDir . '/../lib/BackgroundJobs/VerifyUserData.php', |
|
19 | - 'OCA\\Settings\\Command\\AdminDelegation\\Add' => $baseDir . '/../lib/Command/AdminDelegation/Add.php', |
|
20 | - 'OCA\\Settings\\Command\\AdminDelegation\\Remove' => $baseDir . '/../lib/Command/AdminDelegation/Remove.php', |
|
21 | - 'OCA\\Settings\\Command\\AdminDelegation\\Show' => $baseDir . '/../lib/Command/AdminDelegation/Show.php', |
|
22 | - 'OCA\\Settings\\ConfigLexicon' => $baseDir . '/../lib/ConfigLexicon.php', |
|
23 | - 'OCA\\Settings\\Controller\\AISettingsController' => $baseDir . '/../lib/Controller/AISettingsController.php', |
|
24 | - 'OCA\\Settings\\Controller\\AdminSettingsController' => $baseDir . '/../lib/Controller/AdminSettingsController.php', |
|
25 | - 'OCA\\Settings\\Controller\\AppSettingsController' => $baseDir . '/../lib/Controller/AppSettingsController.php', |
|
26 | - 'OCA\\Settings\\Controller\\AuthSettingsController' => $baseDir . '/../lib/Controller/AuthSettingsController.php', |
|
27 | - 'OCA\\Settings\\Controller\\AuthorizedGroupController' => $baseDir . '/../lib/Controller/AuthorizedGroupController.php', |
|
28 | - 'OCA\\Settings\\Controller\\ChangePasswordController' => $baseDir . '/../lib/Controller/ChangePasswordController.php', |
|
29 | - 'OCA\\Settings\\Controller\\CheckSetupController' => $baseDir . '/../lib/Controller/CheckSetupController.php', |
|
30 | - 'OCA\\Settings\\Controller\\CommonSettingsTrait' => $baseDir . '/../lib/Controller/CommonSettingsTrait.php', |
|
31 | - 'OCA\\Settings\\Controller\\DeclarativeSettingsController' => $baseDir . '/../lib/Controller/DeclarativeSettingsController.php', |
|
32 | - 'OCA\\Settings\\Controller\\HelpController' => $baseDir . '/../lib/Controller/HelpController.php', |
|
33 | - 'OCA\\Settings\\Controller\\LogSettingsController' => $baseDir . '/../lib/Controller/LogSettingsController.php', |
|
34 | - 'OCA\\Settings\\Controller\\MailSettingsController' => $baseDir . '/../lib/Controller/MailSettingsController.php', |
|
35 | - 'OCA\\Settings\\Controller\\PersonalSettingsController' => $baseDir . '/../lib/Controller/PersonalSettingsController.php', |
|
36 | - 'OCA\\Settings\\Controller\\PresetController' => $baseDir . '/../lib/Controller/PresetController.php', |
|
37 | - 'OCA\\Settings\\Controller\\ReasonsController' => $baseDir . '/../lib/Controller/ReasonsController.php', |
|
38 | - 'OCA\\Settings\\Controller\\TwoFactorSettingsController' => $baseDir . '/../lib/Controller/TwoFactorSettingsController.php', |
|
39 | - 'OCA\\Settings\\Controller\\UsersController' => $baseDir . '/../lib/Controller/UsersController.php', |
|
40 | - 'OCA\\Settings\\Controller\\WebAuthnController' => $baseDir . '/../lib/Controller/WebAuthnController.php', |
|
41 | - 'OCA\\Settings\\Events\\BeforeTemplateRenderedEvent' => $baseDir . '/../lib/Events/BeforeTemplateRenderedEvent.php', |
|
42 | - 'OCA\\Settings\\Hooks' => $baseDir . '/../lib/Hooks.php', |
|
43 | - 'OCA\\Settings\\Listener\\AppPasswordCreatedActivityListener' => $baseDir . '/../lib/Listener/AppPasswordCreatedActivityListener.php', |
|
44 | - 'OCA\\Settings\\Listener\\GroupRemovedListener' => $baseDir . '/../lib/Listener/GroupRemovedListener.php', |
|
45 | - 'OCA\\Settings\\Listener\\MailProviderListener' => $baseDir . '/../lib/Listener/MailProviderListener.php', |
|
46 | - 'OCA\\Settings\\Listener\\UserAddedToGroupActivityListener' => $baseDir . '/../lib/Listener/UserAddedToGroupActivityListener.php', |
|
47 | - 'OCA\\Settings\\Listener\\UserRemovedFromGroupActivityListener' => $baseDir . '/../lib/Listener/UserRemovedFromGroupActivityListener.php', |
|
48 | - 'OCA\\Settings\\Mailer\\NewUserMailHelper' => $baseDir . '/../lib/Mailer/NewUserMailHelper.php', |
|
49 | - 'OCA\\Settings\\Middleware\\SubadminMiddleware' => $baseDir . '/../lib/Middleware/SubadminMiddleware.php', |
|
50 | - 'OCA\\Settings\\ResponseDefinitions' => $baseDir . '/../lib/ResponseDefinitions.php', |
|
51 | - 'OCA\\Settings\\Search\\AppSearch' => $baseDir . '/../lib/Search/AppSearch.php', |
|
52 | - 'OCA\\Settings\\Search\\SectionSearch' => $baseDir . '/../lib/Search/SectionSearch.php', |
|
53 | - 'OCA\\Settings\\Search\\UserSearch' => $baseDir . '/../lib/Search/UserSearch.php', |
|
54 | - 'OCA\\Settings\\Sections\\Admin\\Additional' => $baseDir . '/../lib/Sections/Admin/Additional.php', |
|
55 | - 'OCA\\Settings\\Sections\\Admin\\ArtificialIntelligence' => $baseDir . '/../lib/Sections/Admin/ArtificialIntelligence.php', |
|
56 | - 'OCA\\Settings\\Sections\\Admin\\Delegation' => $baseDir . '/../lib/Sections/Admin/Delegation.php', |
|
57 | - 'OCA\\Settings\\Sections\\Admin\\Groupware' => $baseDir . '/../lib/Sections/Admin/Groupware.php', |
|
58 | - 'OCA\\Settings\\Sections\\Admin\\Overview' => $baseDir . '/../lib/Sections/Admin/Overview.php', |
|
59 | - 'OCA\\Settings\\Sections\\Admin\\Presets' => $baseDir . '/../lib/Sections/Admin/Presets.php', |
|
60 | - 'OCA\\Settings\\Sections\\Admin\\Security' => $baseDir . '/../lib/Sections/Admin/Security.php', |
|
61 | - 'OCA\\Settings\\Sections\\Admin\\Server' => $baseDir . '/../lib/Sections/Admin/Server.php', |
|
62 | - 'OCA\\Settings\\Sections\\Admin\\Sharing' => $baseDir . '/../lib/Sections/Admin/Sharing.php', |
|
63 | - 'OCA\\Settings\\Sections\\Admin\\Users' => $baseDir . '/../lib/Sections/Admin/Users.php', |
|
64 | - 'OCA\\Settings\\Sections\\Personal\\Availability' => $baseDir . '/../lib/Sections/Personal/Availability.php', |
|
65 | - 'OCA\\Settings\\Sections\\Personal\\Calendar' => $baseDir . '/../lib/Sections/Personal/Calendar.php', |
|
66 | - 'OCA\\Settings\\Sections\\Personal\\PersonalInfo' => $baseDir . '/../lib/Sections/Personal/PersonalInfo.php', |
|
67 | - 'OCA\\Settings\\Sections\\Personal\\Security' => $baseDir . '/../lib/Sections/Personal/Security.php', |
|
68 | - 'OCA\\Settings\\Sections\\Personal\\SyncClients' => $baseDir . '/../lib/Sections/Personal/SyncClients.php', |
|
69 | - 'OCA\\Settings\\Service\\AuthorizedGroupService' => $baseDir . '/../lib/Service/AuthorizedGroupService.php', |
|
70 | - 'OCA\\Settings\\Service\\NotFoundException' => $baseDir . '/../lib/Service/NotFoundException.php', |
|
71 | - 'OCA\\Settings\\Service\\ServiceException' => $baseDir . '/../lib/Service/ServiceException.php', |
|
72 | - 'OCA\\Settings\\Settings\\Admin\\ArtificialIntelligence' => $baseDir . '/../lib/Settings/Admin/ArtificialIntelligence.php', |
|
73 | - 'OCA\\Settings\\Settings\\Admin\\Delegation' => $baseDir . '/../lib/Settings/Admin/Delegation.php', |
|
74 | - 'OCA\\Settings\\Settings\\Admin\\Mail' => $baseDir . '/../lib/Settings/Admin/Mail.php', |
|
75 | - 'OCA\\Settings\\Settings\\Admin\\MailProvider' => $baseDir . '/../lib/Settings/Admin/MailProvider.php', |
|
76 | - 'OCA\\Settings\\Settings\\Admin\\Overview' => $baseDir . '/../lib/Settings/Admin/Overview.php', |
|
77 | - 'OCA\\Settings\\Settings\\Admin\\Presets' => $baseDir . '/../lib/Settings/Admin/Presets.php', |
|
78 | - 'OCA\\Settings\\Settings\\Admin\\Security' => $baseDir . '/../lib/Settings/Admin/Security.php', |
|
79 | - 'OCA\\Settings\\Settings\\Admin\\Server' => $baseDir . '/../lib/Settings/Admin/Server.php', |
|
80 | - 'OCA\\Settings\\Settings\\Admin\\Sharing' => $baseDir . '/../lib/Settings/Admin/Sharing.php', |
|
81 | - 'OCA\\Settings\\Settings\\Admin\\Users' => $baseDir . '/../lib/Settings/Admin/Users.php', |
|
82 | - 'OCA\\Settings\\Settings\\Personal\\Additional' => $baseDir . '/../lib/Settings/Personal/Additional.php', |
|
83 | - 'OCA\\Settings\\Settings\\Personal\\PersonalInfo' => $baseDir . '/../lib/Settings/Personal/PersonalInfo.php', |
|
84 | - 'OCA\\Settings\\Settings\\Personal\\Security\\Authtokens' => $baseDir . '/../lib/Settings/Personal/Security/Authtokens.php', |
|
85 | - 'OCA\\Settings\\Settings\\Personal\\Security\\Password' => $baseDir . '/../lib/Settings/Personal/Security/Password.php', |
|
86 | - 'OCA\\Settings\\Settings\\Personal\\Security\\TwoFactor' => $baseDir . '/../lib/Settings/Personal/Security/TwoFactor.php', |
|
87 | - 'OCA\\Settings\\Settings\\Personal\\Security\\WebAuthn' => $baseDir . '/../lib/Settings/Personal/Security/WebAuthn.php', |
|
88 | - 'OCA\\Settings\\Settings\\Personal\\ServerDevNotice' => $baseDir . '/../lib/Settings/Personal/ServerDevNotice.php', |
|
89 | - 'OCA\\Settings\\SetupChecks\\AllowedAdminRanges' => $baseDir . '/../lib/SetupChecks/AllowedAdminRanges.php', |
|
90 | - 'OCA\\Settings\\SetupChecks\\AppDirsWithDifferentOwner' => $baseDir . '/../lib/SetupChecks/AppDirsWithDifferentOwner.php', |
|
91 | - 'OCA\\Settings\\SetupChecks\\BruteForceThrottler' => $baseDir . '/../lib/SetupChecks/BruteForceThrottler.php', |
|
92 | - 'OCA\\Settings\\SetupChecks\\CheckUserCertificates' => $baseDir . '/../lib/SetupChecks/CheckUserCertificates.php', |
|
93 | - 'OCA\\Settings\\SetupChecks\\CodeIntegrity' => $baseDir . '/../lib/SetupChecks/CodeIntegrity.php', |
|
94 | - 'OCA\\Settings\\SetupChecks\\CronErrors' => $baseDir . '/../lib/SetupChecks/CronErrors.php', |
|
95 | - 'OCA\\Settings\\SetupChecks\\CronInfo' => $baseDir . '/../lib/SetupChecks/CronInfo.php', |
|
96 | - 'OCA\\Settings\\SetupChecks\\DataDirectoryProtected' => $baseDir . '/../lib/SetupChecks/DataDirectoryProtected.php', |
|
97 | - 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingColumns' => $baseDir . '/../lib/SetupChecks/DatabaseHasMissingColumns.php', |
|
98 | - 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingIndices' => $baseDir . '/../lib/SetupChecks/DatabaseHasMissingIndices.php', |
|
99 | - 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingPrimaryKeys' => $baseDir . '/../lib/SetupChecks/DatabaseHasMissingPrimaryKeys.php', |
|
100 | - 'OCA\\Settings\\SetupChecks\\DatabasePendingBigIntConversions' => $baseDir . '/../lib/SetupChecks/DatabasePendingBigIntConversions.php', |
|
101 | - 'OCA\\Settings\\SetupChecks\\DebugMode' => $baseDir . '/../lib/SetupChecks/DebugMode.php', |
|
102 | - 'OCA\\Settings\\SetupChecks\\DefaultPhoneRegionSet' => $baseDir . '/../lib/SetupChecks/DefaultPhoneRegionSet.php', |
|
103 | - 'OCA\\Settings\\SetupChecks\\EmailTestSuccessful' => $baseDir . '/../lib/SetupChecks/EmailTestSuccessful.php', |
|
104 | - 'OCA\\Settings\\SetupChecks\\FileLocking' => $baseDir . '/../lib/SetupChecks/FileLocking.php', |
|
105 | - 'OCA\\Settings\\SetupChecks\\ForwardedForHeaders' => $baseDir . '/../lib/SetupChecks/ForwardedForHeaders.php', |
|
106 | - 'OCA\\Settings\\SetupChecks\\HttpsUrlGeneration' => $baseDir . '/../lib/SetupChecks/HttpsUrlGeneration.php', |
|
107 | - 'OCA\\Settings\\SetupChecks\\InternetConnectivity' => $baseDir . '/../lib/SetupChecks/InternetConnectivity.php', |
|
108 | - 'OCA\\Settings\\SetupChecks\\JavaScriptModules' => $baseDir . '/../lib/SetupChecks/JavaScriptModules.php', |
|
109 | - 'OCA\\Settings\\SetupChecks\\JavaScriptSourceMaps' => $baseDir . '/../lib/SetupChecks/JavaScriptSourceMaps.php', |
|
110 | - 'OCA\\Settings\\SetupChecks\\LegacySSEKeyFormat' => $baseDir . '/../lib/SetupChecks/LegacySSEKeyFormat.php', |
|
111 | - 'OCA\\Settings\\SetupChecks\\LoggingLevel' => $baseDir . '/../lib/SetupChecks/LoggingLevel.php', |
|
112 | - 'OCA\\Settings\\SetupChecks\\MaintenanceWindowStart' => $baseDir . '/../lib/SetupChecks/MaintenanceWindowStart.php', |
|
113 | - 'OCA\\Settings\\SetupChecks\\MemcacheConfigured' => $baseDir . '/../lib/SetupChecks/MemcacheConfigured.php', |
|
114 | - 'OCA\\Settings\\SetupChecks\\MimeTypeMigrationAvailable' => $baseDir . '/../lib/SetupChecks/MimeTypeMigrationAvailable.php', |
|
115 | - 'OCA\\Settings\\SetupChecks\\MysqlRowFormat' => $baseDir . '/../lib/SetupChecks/MysqlRowFormat.php', |
|
116 | - 'OCA\\Settings\\SetupChecks\\MysqlUnicodeSupport' => $baseDir . '/../lib/SetupChecks/MysqlUnicodeSupport.php', |
|
117 | - 'OCA\\Settings\\SetupChecks\\OcxProviders' => $baseDir . '/../lib/SetupChecks/OcxProviders.php', |
|
118 | - 'OCA\\Settings\\SetupChecks\\OverwriteCliUrl' => $baseDir . '/../lib/SetupChecks/OverwriteCliUrl.php', |
|
119 | - 'OCA\\Settings\\SetupChecks\\PhpApcuConfig' => $baseDir . '/../lib/SetupChecks/PhpApcuConfig.php', |
|
120 | - 'OCA\\Settings\\SetupChecks\\PhpDefaultCharset' => $baseDir . '/../lib/SetupChecks/PhpDefaultCharset.php', |
|
121 | - 'OCA\\Settings\\SetupChecks\\PhpDisabledFunctions' => $baseDir . '/../lib/SetupChecks/PhpDisabledFunctions.php', |
|
122 | - 'OCA\\Settings\\SetupChecks\\PhpFreetypeSupport' => $baseDir . '/../lib/SetupChecks/PhpFreetypeSupport.php', |
|
123 | - 'OCA\\Settings\\SetupChecks\\PhpGetEnv' => $baseDir . '/../lib/SetupChecks/PhpGetEnv.php', |
|
124 | - 'OCA\\Settings\\SetupChecks\\PhpMaxFileSize' => $baseDir . '/../lib/SetupChecks/PhpMaxFileSize.php', |
|
125 | - 'OCA\\Settings\\SetupChecks\\PhpMemoryLimit' => $baseDir . '/../lib/SetupChecks/PhpMemoryLimit.php', |
|
126 | - 'OCA\\Settings\\SetupChecks\\PhpModules' => $baseDir . '/../lib/SetupChecks/PhpModules.php', |
|
127 | - 'OCA\\Settings\\SetupChecks\\PhpOpcacheSetup' => $baseDir . '/../lib/SetupChecks/PhpOpcacheSetup.php', |
|
128 | - 'OCA\\Settings\\SetupChecks\\PhpOutdated' => $baseDir . '/../lib/SetupChecks/PhpOutdated.php', |
|
129 | - 'OCA\\Settings\\SetupChecks\\PhpOutputBuffering' => $baseDir . '/../lib/SetupChecks/PhpOutputBuffering.php', |
|
130 | - 'OCA\\Settings\\SetupChecks\\PushService' => $baseDir . '/../lib/SetupChecks/PushService.php', |
|
131 | - 'OCA\\Settings\\SetupChecks\\RandomnessSecure' => $baseDir . '/../lib/SetupChecks/RandomnessSecure.php', |
|
132 | - 'OCA\\Settings\\SetupChecks\\ReadOnlyConfig' => $baseDir . '/../lib/SetupChecks/ReadOnlyConfig.php', |
|
133 | - 'OCA\\Settings\\SetupChecks\\SchedulingTableSize' => $baseDir . '/../lib/SetupChecks/SchedulingTableSize.php', |
|
134 | - 'OCA\\Settings\\SetupChecks\\SecurityHeaders' => $baseDir . '/../lib/SetupChecks/SecurityHeaders.php', |
|
135 | - 'OCA\\Settings\\SetupChecks\\SupportedDatabase' => $baseDir . '/../lib/SetupChecks/SupportedDatabase.php', |
|
136 | - 'OCA\\Settings\\SetupChecks\\SystemIs64bit' => $baseDir . '/../lib/SetupChecks/SystemIs64bit.php', |
|
137 | - 'OCA\\Settings\\SetupChecks\\TaskProcessingPickupSpeed' => $baseDir . '/../lib/SetupChecks/TaskProcessingPickupSpeed.php', |
|
138 | - 'OCA\\Settings\\SetupChecks\\TaskProcessingSuccessRate' => $baseDir . '/../lib/SetupChecks/TaskProcessingSuccessRate.php', |
|
139 | - 'OCA\\Settings\\SetupChecks\\TempSpaceAvailable' => $baseDir . '/../lib/SetupChecks/TempSpaceAvailable.php', |
|
140 | - 'OCA\\Settings\\SetupChecks\\TransactionIsolation' => $baseDir . '/../lib/SetupChecks/TransactionIsolation.php', |
|
141 | - 'OCA\\Settings\\SetupChecks\\WellKnownUrls' => $baseDir . '/../lib/SetupChecks/WellKnownUrls.php', |
|
142 | - 'OCA\\Settings\\SetupChecks\\Woff2Loading' => $baseDir . '/../lib/SetupChecks/Woff2Loading.php', |
|
143 | - 'OCA\\Settings\\UserMigration\\AccountMigrator' => $baseDir . '/../lib/UserMigration/AccountMigrator.php', |
|
144 | - 'OCA\\Settings\\UserMigration\\AccountMigratorException' => $baseDir . '/../lib/UserMigration/AccountMigratorException.php', |
|
145 | - 'OCA\\Settings\\WellKnown\\ChangePasswordHandler' => $baseDir . '/../lib/WellKnown/ChangePasswordHandler.php', |
|
146 | - 'OCA\\Settings\\WellKnown\\SecurityTxtHandler' => $baseDir . '/../lib/WellKnown/SecurityTxtHandler.php', |
|
9 | + 'Composer\\InstalledVersions' => $vendorDir.'/composer/InstalledVersions.php', |
|
10 | + 'OCA\\Settings\\Activity\\GroupProvider' => $baseDir.'/../lib/Activity/GroupProvider.php', |
|
11 | + 'OCA\\Settings\\Activity\\GroupSetting' => $baseDir.'/../lib/Activity/GroupSetting.php', |
|
12 | + 'OCA\\Settings\\Activity\\Provider' => $baseDir.'/../lib/Activity/Provider.php', |
|
13 | + 'OCA\\Settings\\Activity\\SecurityFilter' => $baseDir.'/../lib/Activity/SecurityFilter.php', |
|
14 | + 'OCA\\Settings\\Activity\\SecurityProvider' => $baseDir.'/../lib/Activity/SecurityProvider.php', |
|
15 | + 'OCA\\Settings\\Activity\\SecuritySetting' => $baseDir.'/../lib/Activity/SecuritySetting.php', |
|
16 | + 'OCA\\Settings\\Activity\\Setting' => $baseDir.'/../lib/Activity/Setting.php', |
|
17 | + 'OCA\\Settings\\AppInfo\\Application' => $baseDir.'/../lib/AppInfo/Application.php', |
|
18 | + 'OCA\\Settings\\BackgroundJobs\\VerifyUserData' => $baseDir.'/../lib/BackgroundJobs/VerifyUserData.php', |
|
19 | + 'OCA\\Settings\\Command\\AdminDelegation\\Add' => $baseDir.'/../lib/Command/AdminDelegation/Add.php', |
|
20 | + 'OCA\\Settings\\Command\\AdminDelegation\\Remove' => $baseDir.'/../lib/Command/AdminDelegation/Remove.php', |
|
21 | + 'OCA\\Settings\\Command\\AdminDelegation\\Show' => $baseDir.'/../lib/Command/AdminDelegation/Show.php', |
|
22 | + 'OCA\\Settings\\ConfigLexicon' => $baseDir.'/../lib/ConfigLexicon.php', |
|
23 | + 'OCA\\Settings\\Controller\\AISettingsController' => $baseDir.'/../lib/Controller/AISettingsController.php', |
|
24 | + 'OCA\\Settings\\Controller\\AdminSettingsController' => $baseDir.'/../lib/Controller/AdminSettingsController.php', |
|
25 | + 'OCA\\Settings\\Controller\\AppSettingsController' => $baseDir.'/../lib/Controller/AppSettingsController.php', |
|
26 | + 'OCA\\Settings\\Controller\\AuthSettingsController' => $baseDir.'/../lib/Controller/AuthSettingsController.php', |
|
27 | + 'OCA\\Settings\\Controller\\AuthorizedGroupController' => $baseDir.'/../lib/Controller/AuthorizedGroupController.php', |
|
28 | + 'OCA\\Settings\\Controller\\ChangePasswordController' => $baseDir.'/../lib/Controller/ChangePasswordController.php', |
|
29 | + 'OCA\\Settings\\Controller\\CheckSetupController' => $baseDir.'/../lib/Controller/CheckSetupController.php', |
|
30 | + 'OCA\\Settings\\Controller\\CommonSettingsTrait' => $baseDir.'/../lib/Controller/CommonSettingsTrait.php', |
|
31 | + 'OCA\\Settings\\Controller\\DeclarativeSettingsController' => $baseDir.'/../lib/Controller/DeclarativeSettingsController.php', |
|
32 | + 'OCA\\Settings\\Controller\\HelpController' => $baseDir.'/../lib/Controller/HelpController.php', |
|
33 | + 'OCA\\Settings\\Controller\\LogSettingsController' => $baseDir.'/../lib/Controller/LogSettingsController.php', |
|
34 | + 'OCA\\Settings\\Controller\\MailSettingsController' => $baseDir.'/../lib/Controller/MailSettingsController.php', |
|
35 | + 'OCA\\Settings\\Controller\\PersonalSettingsController' => $baseDir.'/../lib/Controller/PersonalSettingsController.php', |
|
36 | + 'OCA\\Settings\\Controller\\PresetController' => $baseDir.'/../lib/Controller/PresetController.php', |
|
37 | + 'OCA\\Settings\\Controller\\ReasonsController' => $baseDir.'/../lib/Controller/ReasonsController.php', |
|
38 | + 'OCA\\Settings\\Controller\\TwoFactorSettingsController' => $baseDir.'/../lib/Controller/TwoFactorSettingsController.php', |
|
39 | + 'OCA\\Settings\\Controller\\UsersController' => $baseDir.'/../lib/Controller/UsersController.php', |
|
40 | + 'OCA\\Settings\\Controller\\WebAuthnController' => $baseDir.'/../lib/Controller/WebAuthnController.php', |
|
41 | + 'OCA\\Settings\\Events\\BeforeTemplateRenderedEvent' => $baseDir.'/../lib/Events/BeforeTemplateRenderedEvent.php', |
|
42 | + 'OCA\\Settings\\Hooks' => $baseDir.'/../lib/Hooks.php', |
|
43 | + 'OCA\\Settings\\Listener\\AppPasswordCreatedActivityListener' => $baseDir.'/../lib/Listener/AppPasswordCreatedActivityListener.php', |
|
44 | + 'OCA\\Settings\\Listener\\GroupRemovedListener' => $baseDir.'/../lib/Listener/GroupRemovedListener.php', |
|
45 | + 'OCA\\Settings\\Listener\\MailProviderListener' => $baseDir.'/../lib/Listener/MailProviderListener.php', |
|
46 | + 'OCA\\Settings\\Listener\\UserAddedToGroupActivityListener' => $baseDir.'/../lib/Listener/UserAddedToGroupActivityListener.php', |
|
47 | + 'OCA\\Settings\\Listener\\UserRemovedFromGroupActivityListener' => $baseDir.'/../lib/Listener/UserRemovedFromGroupActivityListener.php', |
|
48 | + 'OCA\\Settings\\Mailer\\NewUserMailHelper' => $baseDir.'/../lib/Mailer/NewUserMailHelper.php', |
|
49 | + 'OCA\\Settings\\Middleware\\SubadminMiddleware' => $baseDir.'/../lib/Middleware/SubadminMiddleware.php', |
|
50 | + 'OCA\\Settings\\ResponseDefinitions' => $baseDir.'/../lib/ResponseDefinitions.php', |
|
51 | + 'OCA\\Settings\\Search\\AppSearch' => $baseDir.'/../lib/Search/AppSearch.php', |
|
52 | + 'OCA\\Settings\\Search\\SectionSearch' => $baseDir.'/../lib/Search/SectionSearch.php', |
|
53 | + 'OCA\\Settings\\Search\\UserSearch' => $baseDir.'/../lib/Search/UserSearch.php', |
|
54 | + 'OCA\\Settings\\Sections\\Admin\\Additional' => $baseDir.'/../lib/Sections/Admin/Additional.php', |
|
55 | + 'OCA\\Settings\\Sections\\Admin\\ArtificialIntelligence' => $baseDir.'/../lib/Sections/Admin/ArtificialIntelligence.php', |
|
56 | + 'OCA\\Settings\\Sections\\Admin\\Delegation' => $baseDir.'/../lib/Sections/Admin/Delegation.php', |
|
57 | + 'OCA\\Settings\\Sections\\Admin\\Groupware' => $baseDir.'/../lib/Sections/Admin/Groupware.php', |
|
58 | + 'OCA\\Settings\\Sections\\Admin\\Overview' => $baseDir.'/../lib/Sections/Admin/Overview.php', |
|
59 | + 'OCA\\Settings\\Sections\\Admin\\Presets' => $baseDir.'/../lib/Sections/Admin/Presets.php', |
|
60 | + 'OCA\\Settings\\Sections\\Admin\\Security' => $baseDir.'/../lib/Sections/Admin/Security.php', |
|
61 | + 'OCA\\Settings\\Sections\\Admin\\Server' => $baseDir.'/../lib/Sections/Admin/Server.php', |
|
62 | + 'OCA\\Settings\\Sections\\Admin\\Sharing' => $baseDir.'/../lib/Sections/Admin/Sharing.php', |
|
63 | + 'OCA\\Settings\\Sections\\Admin\\Users' => $baseDir.'/../lib/Sections/Admin/Users.php', |
|
64 | + 'OCA\\Settings\\Sections\\Personal\\Availability' => $baseDir.'/../lib/Sections/Personal/Availability.php', |
|
65 | + 'OCA\\Settings\\Sections\\Personal\\Calendar' => $baseDir.'/../lib/Sections/Personal/Calendar.php', |
|
66 | + 'OCA\\Settings\\Sections\\Personal\\PersonalInfo' => $baseDir.'/../lib/Sections/Personal/PersonalInfo.php', |
|
67 | + 'OCA\\Settings\\Sections\\Personal\\Security' => $baseDir.'/../lib/Sections/Personal/Security.php', |
|
68 | + 'OCA\\Settings\\Sections\\Personal\\SyncClients' => $baseDir.'/../lib/Sections/Personal/SyncClients.php', |
|
69 | + 'OCA\\Settings\\Service\\AuthorizedGroupService' => $baseDir.'/../lib/Service/AuthorizedGroupService.php', |
|
70 | + 'OCA\\Settings\\Service\\NotFoundException' => $baseDir.'/../lib/Service/NotFoundException.php', |
|
71 | + 'OCA\\Settings\\Service\\ServiceException' => $baseDir.'/../lib/Service/ServiceException.php', |
|
72 | + 'OCA\\Settings\\Settings\\Admin\\ArtificialIntelligence' => $baseDir.'/../lib/Settings/Admin/ArtificialIntelligence.php', |
|
73 | + 'OCA\\Settings\\Settings\\Admin\\Delegation' => $baseDir.'/../lib/Settings/Admin/Delegation.php', |
|
74 | + 'OCA\\Settings\\Settings\\Admin\\Mail' => $baseDir.'/../lib/Settings/Admin/Mail.php', |
|
75 | + 'OCA\\Settings\\Settings\\Admin\\MailProvider' => $baseDir.'/../lib/Settings/Admin/MailProvider.php', |
|
76 | + 'OCA\\Settings\\Settings\\Admin\\Overview' => $baseDir.'/../lib/Settings/Admin/Overview.php', |
|
77 | + 'OCA\\Settings\\Settings\\Admin\\Presets' => $baseDir.'/../lib/Settings/Admin/Presets.php', |
|
78 | + 'OCA\\Settings\\Settings\\Admin\\Security' => $baseDir.'/../lib/Settings/Admin/Security.php', |
|
79 | + 'OCA\\Settings\\Settings\\Admin\\Server' => $baseDir.'/../lib/Settings/Admin/Server.php', |
|
80 | + 'OCA\\Settings\\Settings\\Admin\\Sharing' => $baseDir.'/../lib/Settings/Admin/Sharing.php', |
|
81 | + 'OCA\\Settings\\Settings\\Admin\\Users' => $baseDir.'/../lib/Settings/Admin/Users.php', |
|
82 | + 'OCA\\Settings\\Settings\\Personal\\Additional' => $baseDir.'/../lib/Settings/Personal/Additional.php', |
|
83 | + 'OCA\\Settings\\Settings\\Personal\\PersonalInfo' => $baseDir.'/../lib/Settings/Personal/PersonalInfo.php', |
|
84 | + 'OCA\\Settings\\Settings\\Personal\\Security\\Authtokens' => $baseDir.'/../lib/Settings/Personal/Security/Authtokens.php', |
|
85 | + 'OCA\\Settings\\Settings\\Personal\\Security\\Password' => $baseDir.'/../lib/Settings/Personal/Security/Password.php', |
|
86 | + 'OCA\\Settings\\Settings\\Personal\\Security\\TwoFactor' => $baseDir.'/../lib/Settings/Personal/Security/TwoFactor.php', |
|
87 | + 'OCA\\Settings\\Settings\\Personal\\Security\\WebAuthn' => $baseDir.'/../lib/Settings/Personal/Security/WebAuthn.php', |
|
88 | + 'OCA\\Settings\\Settings\\Personal\\ServerDevNotice' => $baseDir.'/../lib/Settings/Personal/ServerDevNotice.php', |
|
89 | + 'OCA\\Settings\\SetupChecks\\AllowedAdminRanges' => $baseDir.'/../lib/SetupChecks/AllowedAdminRanges.php', |
|
90 | + 'OCA\\Settings\\SetupChecks\\AppDirsWithDifferentOwner' => $baseDir.'/../lib/SetupChecks/AppDirsWithDifferentOwner.php', |
|
91 | + 'OCA\\Settings\\SetupChecks\\BruteForceThrottler' => $baseDir.'/../lib/SetupChecks/BruteForceThrottler.php', |
|
92 | + 'OCA\\Settings\\SetupChecks\\CheckUserCertificates' => $baseDir.'/../lib/SetupChecks/CheckUserCertificates.php', |
|
93 | + 'OCA\\Settings\\SetupChecks\\CodeIntegrity' => $baseDir.'/../lib/SetupChecks/CodeIntegrity.php', |
|
94 | + 'OCA\\Settings\\SetupChecks\\CronErrors' => $baseDir.'/../lib/SetupChecks/CronErrors.php', |
|
95 | + 'OCA\\Settings\\SetupChecks\\CronInfo' => $baseDir.'/../lib/SetupChecks/CronInfo.php', |
|
96 | + 'OCA\\Settings\\SetupChecks\\DataDirectoryProtected' => $baseDir.'/../lib/SetupChecks/DataDirectoryProtected.php', |
|
97 | + 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingColumns' => $baseDir.'/../lib/SetupChecks/DatabaseHasMissingColumns.php', |
|
98 | + 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingIndices' => $baseDir.'/../lib/SetupChecks/DatabaseHasMissingIndices.php', |
|
99 | + 'OCA\\Settings\\SetupChecks\\DatabaseHasMissingPrimaryKeys' => $baseDir.'/../lib/SetupChecks/DatabaseHasMissingPrimaryKeys.php', |
|
100 | + 'OCA\\Settings\\SetupChecks\\DatabasePendingBigIntConversions' => $baseDir.'/../lib/SetupChecks/DatabasePendingBigIntConversions.php', |
|
101 | + 'OCA\\Settings\\SetupChecks\\DebugMode' => $baseDir.'/../lib/SetupChecks/DebugMode.php', |
|
102 | + 'OCA\\Settings\\SetupChecks\\DefaultPhoneRegionSet' => $baseDir.'/../lib/SetupChecks/DefaultPhoneRegionSet.php', |
|
103 | + 'OCA\\Settings\\SetupChecks\\EmailTestSuccessful' => $baseDir.'/../lib/SetupChecks/EmailTestSuccessful.php', |
|
104 | + 'OCA\\Settings\\SetupChecks\\FileLocking' => $baseDir.'/../lib/SetupChecks/FileLocking.php', |
|
105 | + 'OCA\\Settings\\SetupChecks\\ForwardedForHeaders' => $baseDir.'/../lib/SetupChecks/ForwardedForHeaders.php', |
|
106 | + 'OCA\\Settings\\SetupChecks\\HttpsUrlGeneration' => $baseDir.'/../lib/SetupChecks/HttpsUrlGeneration.php', |
|
107 | + 'OCA\\Settings\\SetupChecks\\InternetConnectivity' => $baseDir.'/../lib/SetupChecks/InternetConnectivity.php', |
|
108 | + 'OCA\\Settings\\SetupChecks\\JavaScriptModules' => $baseDir.'/../lib/SetupChecks/JavaScriptModules.php', |
|
109 | + 'OCA\\Settings\\SetupChecks\\JavaScriptSourceMaps' => $baseDir.'/../lib/SetupChecks/JavaScriptSourceMaps.php', |
|
110 | + 'OCA\\Settings\\SetupChecks\\LegacySSEKeyFormat' => $baseDir.'/../lib/SetupChecks/LegacySSEKeyFormat.php', |
|
111 | + 'OCA\\Settings\\SetupChecks\\LoggingLevel' => $baseDir.'/../lib/SetupChecks/LoggingLevel.php', |
|
112 | + 'OCA\\Settings\\SetupChecks\\MaintenanceWindowStart' => $baseDir.'/../lib/SetupChecks/MaintenanceWindowStart.php', |
|
113 | + 'OCA\\Settings\\SetupChecks\\MemcacheConfigured' => $baseDir.'/../lib/SetupChecks/MemcacheConfigured.php', |
|
114 | + 'OCA\\Settings\\SetupChecks\\MimeTypeMigrationAvailable' => $baseDir.'/../lib/SetupChecks/MimeTypeMigrationAvailable.php', |
|
115 | + 'OCA\\Settings\\SetupChecks\\MysqlRowFormat' => $baseDir.'/../lib/SetupChecks/MysqlRowFormat.php', |
|
116 | + 'OCA\\Settings\\SetupChecks\\MysqlUnicodeSupport' => $baseDir.'/../lib/SetupChecks/MysqlUnicodeSupport.php', |
|
117 | + 'OCA\\Settings\\SetupChecks\\OcxProviders' => $baseDir.'/../lib/SetupChecks/OcxProviders.php', |
|
118 | + 'OCA\\Settings\\SetupChecks\\OverwriteCliUrl' => $baseDir.'/../lib/SetupChecks/OverwriteCliUrl.php', |
|
119 | + 'OCA\\Settings\\SetupChecks\\PhpApcuConfig' => $baseDir.'/../lib/SetupChecks/PhpApcuConfig.php', |
|
120 | + 'OCA\\Settings\\SetupChecks\\PhpDefaultCharset' => $baseDir.'/../lib/SetupChecks/PhpDefaultCharset.php', |
|
121 | + 'OCA\\Settings\\SetupChecks\\PhpDisabledFunctions' => $baseDir.'/../lib/SetupChecks/PhpDisabledFunctions.php', |
|
122 | + 'OCA\\Settings\\SetupChecks\\PhpFreetypeSupport' => $baseDir.'/../lib/SetupChecks/PhpFreetypeSupport.php', |
|
123 | + 'OCA\\Settings\\SetupChecks\\PhpGetEnv' => $baseDir.'/../lib/SetupChecks/PhpGetEnv.php', |
|
124 | + 'OCA\\Settings\\SetupChecks\\PhpMaxFileSize' => $baseDir.'/../lib/SetupChecks/PhpMaxFileSize.php', |
|
125 | + 'OCA\\Settings\\SetupChecks\\PhpMemoryLimit' => $baseDir.'/../lib/SetupChecks/PhpMemoryLimit.php', |
|
126 | + 'OCA\\Settings\\SetupChecks\\PhpModules' => $baseDir.'/../lib/SetupChecks/PhpModules.php', |
|
127 | + 'OCA\\Settings\\SetupChecks\\PhpOpcacheSetup' => $baseDir.'/../lib/SetupChecks/PhpOpcacheSetup.php', |
|
128 | + 'OCA\\Settings\\SetupChecks\\PhpOutdated' => $baseDir.'/../lib/SetupChecks/PhpOutdated.php', |
|
129 | + 'OCA\\Settings\\SetupChecks\\PhpOutputBuffering' => $baseDir.'/../lib/SetupChecks/PhpOutputBuffering.php', |
|
130 | + 'OCA\\Settings\\SetupChecks\\PushService' => $baseDir.'/../lib/SetupChecks/PushService.php', |
|
131 | + 'OCA\\Settings\\SetupChecks\\RandomnessSecure' => $baseDir.'/../lib/SetupChecks/RandomnessSecure.php', |
|
132 | + 'OCA\\Settings\\SetupChecks\\ReadOnlyConfig' => $baseDir.'/../lib/SetupChecks/ReadOnlyConfig.php', |
|
133 | + 'OCA\\Settings\\SetupChecks\\SchedulingTableSize' => $baseDir.'/../lib/SetupChecks/SchedulingTableSize.php', |
|
134 | + 'OCA\\Settings\\SetupChecks\\SecurityHeaders' => $baseDir.'/../lib/SetupChecks/SecurityHeaders.php', |
|
135 | + 'OCA\\Settings\\SetupChecks\\SupportedDatabase' => $baseDir.'/../lib/SetupChecks/SupportedDatabase.php', |
|
136 | + 'OCA\\Settings\\SetupChecks\\SystemIs64bit' => $baseDir.'/../lib/SetupChecks/SystemIs64bit.php', |
|
137 | + 'OCA\\Settings\\SetupChecks\\TaskProcessingPickupSpeed' => $baseDir.'/../lib/SetupChecks/TaskProcessingPickupSpeed.php', |
|
138 | + 'OCA\\Settings\\SetupChecks\\TaskProcessingSuccessRate' => $baseDir.'/../lib/SetupChecks/TaskProcessingSuccessRate.php', |
|
139 | + 'OCA\\Settings\\SetupChecks\\TempSpaceAvailable' => $baseDir.'/../lib/SetupChecks/TempSpaceAvailable.php', |
|
140 | + 'OCA\\Settings\\SetupChecks\\TransactionIsolation' => $baseDir.'/../lib/SetupChecks/TransactionIsolation.php', |
|
141 | + 'OCA\\Settings\\SetupChecks\\WellKnownUrls' => $baseDir.'/../lib/SetupChecks/WellKnownUrls.php', |
|
142 | + 'OCA\\Settings\\SetupChecks\\Woff2Loading' => $baseDir.'/../lib/SetupChecks/Woff2Loading.php', |
|
143 | + 'OCA\\Settings\\UserMigration\\AccountMigrator' => $baseDir.'/../lib/UserMigration/AccountMigrator.php', |
|
144 | + 'OCA\\Settings\\UserMigration\\AccountMigratorException' => $baseDir.'/../lib/UserMigration/AccountMigratorException.php', |
|
145 | + 'OCA\\Settings\\WellKnown\\ChangePasswordHandler' => $baseDir.'/../lib/WellKnown/ChangePasswordHandler.php', |
|
146 | + 'OCA\\Settings\\WellKnown\\SecurityTxtHandler' => $baseDir.'/../lib/WellKnown/SecurityTxtHandler.php', |
|
147 | 147 | ); |
@@ -17,59 +17,59 @@ |
||
17 | 17 | use Test\TestCase; |
18 | 18 | |
19 | 19 | class TaskProcessingSuccessRateTest extends TestCase { |
20 | - private IL10N $l10n; |
|
21 | - private ITimeFactory $timeFactory; |
|
22 | - private IManager $taskProcessingManager; |
|
20 | + private IL10N $l10n; |
|
21 | + private ITimeFactory $timeFactory; |
|
22 | + private IManager $taskProcessingManager; |
|
23 | 23 | |
24 | - private TaskProcessingSuccessRate $check; |
|
24 | + private TaskProcessingSuccessRate $check; |
|
25 | 25 | |
26 | - protected function setUp(): void { |
|
27 | - parent::setUp(); |
|
26 | + protected function setUp(): void { |
|
27 | + parent::setUp(); |
|
28 | 28 | |
29 | - $this->l10n = $this->getMockBuilder(IL10N::class)->getMock(); |
|
30 | - $this->timeFactory = $this->getMockBuilder(ITimeFactory::class)->getMock(); |
|
31 | - $this->taskProcessingManager = $this->getMockBuilder(IManager::class)->getMock(); |
|
29 | + $this->l10n = $this->getMockBuilder(IL10N::class)->getMock(); |
|
30 | + $this->timeFactory = $this->getMockBuilder(ITimeFactory::class)->getMock(); |
|
31 | + $this->taskProcessingManager = $this->getMockBuilder(IManager::class)->getMock(); |
|
32 | 32 | |
33 | - $this->check = new TaskProcessingSuccessRate( |
|
34 | - $this->l10n, |
|
35 | - $this->taskProcessingManager, |
|
36 | - $this->timeFactory, |
|
37 | - ); |
|
38 | - } |
|
33 | + $this->check = new TaskProcessingSuccessRate( |
|
34 | + $this->l10n, |
|
35 | + $this->taskProcessingManager, |
|
36 | + $this->timeFactory, |
|
37 | + ); |
|
38 | + } |
|
39 | 39 | |
40 | - public function testPass(): void { |
|
41 | - $tasks = []; |
|
42 | - for ($i = 0; $i < 100; $i++) { |
|
43 | - $task = new Task('test', ['test' => 'test'], 'settings', 'user' . $i); |
|
44 | - $task->setStartedAt(0); |
|
45 | - $task->setEndedAt(1); |
|
46 | - if ($i < 15) { |
|
47 | - $task->setStatus(Task::STATUS_FAILED); // 15% get status FAILED |
|
48 | - } else { |
|
49 | - $task->setStatus(Task::STATUS_SUCCESSFUL); |
|
50 | - } |
|
51 | - $tasks[] = $task; |
|
52 | - } |
|
53 | - $this->taskProcessingManager->method('getTasks')->willReturn($tasks); |
|
40 | + public function testPass(): void { |
|
41 | + $tasks = []; |
|
42 | + for ($i = 0; $i < 100; $i++) { |
|
43 | + $task = new Task('test', ['test' => 'test'], 'settings', 'user' . $i); |
|
44 | + $task->setStartedAt(0); |
|
45 | + $task->setEndedAt(1); |
|
46 | + if ($i < 15) { |
|
47 | + $task->setStatus(Task::STATUS_FAILED); // 15% get status FAILED |
|
48 | + } else { |
|
49 | + $task->setStatus(Task::STATUS_SUCCESSFUL); |
|
50 | + } |
|
51 | + $tasks[] = $task; |
|
52 | + } |
|
53 | + $this->taskProcessingManager->method('getTasks')->willReturn($tasks); |
|
54 | 54 | |
55 | - $this->assertEquals(SetupResult::SUCCESS, $this->check->run()->getSeverity()); |
|
56 | - } |
|
55 | + $this->assertEquals(SetupResult::SUCCESS, $this->check->run()->getSeverity()); |
|
56 | + } |
|
57 | 57 | |
58 | - public function testFail(): void { |
|
59 | - $tasks = []; |
|
60 | - for ($i = 0; $i < 100; $i++) { |
|
61 | - $task = new Task('test', ['test' => 'test'], 'settings', 'user' . $i); |
|
62 | - $task->setStartedAt(0); |
|
63 | - $task->setEndedAt(1); |
|
64 | - if ($i < 30) { |
|
65 | - $task->setStatus(Task::STATUS_FAILED); // 30% get status FAILED |
|
66 | - } else { |
|
67 | - $task->setStatus(Task::STATUS_SUCCESSFUL); |
|
68 | - } |
|
69 | - $tasks[] = $task; |
|
70 | - } |
|
71 | - $this->taskProcessingManager->method('getTasks')->willReturn($tasks); |
|
58 | + public function testFail(): void { |
|
59 | + $tasks = []; |
|
60 | + for ($i = 0; $i < 100; $i++) { |
|
61 | + $task = new Task('test', ['test' => 'test'], 'settings', 'user' . $i); |
|
62 | + $task->setStartedAt(0); |
|
63 | + $task->setEndedAt(1); |
|
64 | + if ($i < 30) { |
|
65 | + $task->setStatus(Task::STATUS_FAILED); // 30% get status FAILED |
|
66 | + } else { |
|
67 | + $task->setStatus(Task::STATUS_SUCCESSFUL); |
|
68 | + } |
|
69 | + $tasks[] = $task; |
|
70 | + } |
|
71 | + $this->taskProcessingManager->method('getTasks')->willReturn($tasks); |
|
72 | 72 | |
73 | - $this->assertEquals(SetupResult::WARNING, $this->check->run()->getSeverity()); |
|
74 | - } |
|
73 | + $this->assertEquals(SetupResult::WARNING, $this->check->run()->getSeverity()); |
|
74 | + } |
|
75 | 75 | } |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | public function testPass(): void { |
41 | 41 | $tasks = []; |
42 | 42 | for ($i = 0; $i < 100; $i++) { |
43 | - $task = new Task('test', ['test' => 'test'], 'settings', 'user' . $i); |
|
43 | + $task = new Task('test', ['test' => 'test'], 'settings', 'user'.$i); |
|
44 | 44 | $task->setStartedAt(0); |
45 | 45 | $task->setEndedAt(1); |
46 | 46 | if ($i < 15) { |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | public function testFail(): void { |
59 | 59 | $tasks = []; |
60 | 60 | for ($i = 0; $i < 100; $i++) { |
61 | - $task = new Task('test', ['test' => 'test'], 'settings', 'user' . $i); |
|
61 | + $task = new Task('test', ['test' => 'test'], 'settings', 'user'.$i); |
|
62 | 62 | $task->setStartedAt(0); |
63 | 63 | $task->setEndedAt(1); |
64 | 64 | if ($i < 30) { |