@@ -32,287 +32,287 @@  | 
                                                    ||
| 32 | 32 | |
| 33 | 33 |  class PersonalInfo implements ISettings { | 
                                                        
| 34 | 34 | |
| 35 | - /** @var ProfileManager */  | 
                                                        |
| 36 | - private $profileManager;  | 
                                                        |
| 37 | -  | 
                                                        |
| 38 | - public function __construct(  | 
                                                        |
| 39 | - private IConfig $config,  | 
                                                        |
| 40 | - private IUserManager $userManager,  | 
                                                        |
| 41 | - private IGroupManager $groupManager,  | 
                                                        |
| 42 | - private IAccountManager $accountManager,  | 
                                                        |
| 43 | - ProfileManager $profileManager,  | 
                                                        |
| 44 | - private IAppManager $appManager,  | 
                                                        |
| 45 | - private IFactory $l10nFactory,  | 
                                                        |
| 46 | - private IL10N $l,  | 
                                                        |
| 47 | - private IInitialState $initialStateService,  | 
                                                        |
| 48 | - private IManager $manager,  | 
                                                        |
| 49 | -	) { | 
                                                        |
| 50 | - $this->profileManager = $profileManager;  | 
                                                        |
| 51 | - }  | 
                                                        |
| 52 | -  | 
                                                        |
| 53 | -	public function getForm(): TemplateResponse { | 
                                                        |
| 54 | -		$federationEnabled = $this->appManager->isEnabledForUser('federation'); | 
                                                        |
| 55 | -		$federatedFileSharingEnabled = $this->appManager->isEnabledForUser('federatedfilesharing'); | 
                                                        |
| 56 | - $lookupServerUploadEnabled = false;  | 
                                                        |
| 57 | -		if ($federatedFileSharingEnabled) { | 
                                                        |
| 58 | - /** @var FederatedShareProvider $shareProvider */  | 
                                                        |
| 59 | - $shareProvider = Server::get(FederatedShareProvider::class);  | 
                                                        |
| 60 | - $lookupServerUploadEnabled = $shareProvider->isLookupServerUploadEnabled();  | 
                                                        |
| 61 | - }  | 
                                                        |
| 62 | -  | 
                                                        |
| 63 | - $uid = \OC_User::getUser();  | 
                                                        |
| 64 | - $user = $this->userManager->get($uid);  | 
                                                        |
| 65 | - $account = $this->accountManager->getAccount($user);  | 
                                                        |
| 66 | -  | 
                                                        |
| 67 | - // make sure FS is setup before querying storage related stuff...  | 
                                                        |
| 68 | - \OC_Util::setupFS($user->getUID());  | 
                                                        |
| 69 | -  | 
                                                        |
| 70 | -		$storageInfo = \OC_Helper::getStorageInfo('/'); | 
                                                        |
| 71 | -		if ($storageInfo['quota'] === FileInfo::SPACE_UNLIMITED) { | 
                                                        |
| 72 | -			$totalSpace = $this->l->t('Unlimited'); | 
                                                        |
| 73 | -		} else { | 
                                                        |
| 74 | - $totalSpace = \OC_Helper::humanFileSize($storageInfo['total']);  | 
                                                        |
| 75 | - }  | 
                                                        |
| 76 | -  | 
                                                        |
| 77 | - $messageParameters = $this->getMessageParameters($account);  | 
                                                        |
| 78 | -  | 
                                                        |
| 79 | - $parameters = [  | 
                                                        |
| 80 | - 'lookupServerUploadEnabled' => $lookupServerUploadEnabled,  | 
                                                        |
| 81 | - 'isFairUseOfFreePushService' => $this->isFairUseOfFreePushService(),  | 
                                                        |
| 82 | - 'profileEnabledGlobally' => $this->profileManager->isProfileEnabled(),  | 
                                                        |
| 83 | - ] + $messageParameters;  | 
                                                        |
| 84 | -  | 
                                                        |
| 85 | - $personalInfoParameters = [  | 
                                                        |
| 86 | - 'userId' => $uid,  | 
                                                        |
| 87 | - 'avatar' => $this->getProperty($account, IAccountManager::PROPERTY_AVATAR),  | 
                                                        |
| 88 | - 'groups' => $this->getGroups($user),  | 
                                                        |
| 89 | - 'quota' => $storageInfo['quota'],  | 
                                                        |
| 90 | - 'totalSpace' => $totalSpace,  | 
                                                        |
| 91 | - 'usage' => \OC_Helper::humanFileSize($storageInfo['used']),  | 
                                                        |
| 92 | - 'usageRelative' => round($storageInfo['relative']),  | 
                                                        |
| 93 | - 'displayName' => $this->getProperty($account, IAccountManager::PROPERTY_DISPLAYNAME),  | 
                                                        |
| 94 | - 'emailMap' => $this->getEmailMap($account),  | 
                                                        |
| 95 | - 'phone' => $this->getProperty($account, IAccountManager::PROPERTY_PHONE),  | 
                                                        |
| 96 | -			'defaultPhoneRegion' => $this->config->getSystemValueString('default_phone_region'), | 
                                                        |
| 97 | - 'location' => $this->getProperty($account, IAccountManager::PROPERTY_ADDRESS),  | 
                                                        |
| 98 | - 'website' => $this->getProperty($account, IAccountManager::PROPERTY_WEBSITE),  | 
                                                        |
| 99 | - 'twitter' => $this->getProperty($account, IAccountManager::PROPERTY_TWITTER),  | 
                                                        |
| 100 | - 'fediverse' => $this->getProperty($account, IAccountManager::PROPERTY_FEDIVERSE),  | 
                                                        |
| 101 | - 'languageMap' => $this->getLanguageMap($user),  | 
                                                        |
| 102 | - 'localeMap' => $this->getLocaleMap($user),  | 
                                                        |
| 103 | - 'profileEnabledGlobally' => $this->profileManager->isProfileEnabled(),  | 
                                                        |
| 104 | - 'profileEnabled' => $this->profileManager->isProfileEnabled($user),  | 
                                                        |
| 105 | - 'organisation' => $this->getProperty($account, IAccountManager::PROPERTY_ORGANISATION),  | 
                                                        |
| 106 | - 'role' => $this->getProperty($account, IAccountManager::PROPERTY_ROLE),  | 
                                                        |
| 107 | - 'headline' => $this->getProperty($account, IAccountManager::PROPERTY_HEADLINE),  | 
                                                        |
| 108 | - 'biography' => $this->getProperty($account, IAccountManager::PROPERTY_BIOGRAPHY),  | 
                                                        |
| 109 | - 'birthdate' => $this->getProperty($account, IAccountManager::PROPERTY_BIRTHDATE),  | 
                                                        |
| 110 | - 'firstDayOfWeek' => $this->config->getUserValue($uid, 'core', AUserDataOCSController::USER_FIELD_FIRST_DAY_OF_WEEK),  | 
                                                        |
| 111 | - 'pronouns' => $this->getProperty($account, IAccountManager::PROPERTY_PRONOUNS),  | 
                                                        |
| 112 | - ];  | 
                                                        |
| 113 | -  | 
                                                        |
| 114 | - $accountParameters = [  | 
                                                        |
| 115 | - 'avatarChangeSupported' => $user->canChangeAvatar(),  | 
                                                        |
| 116 | - 'displayNameChangeSupported' => $user->canChangeDisplayName(),  | 
                                                        |
| 117 | - 'emailChangeSupported' => $user->canChangeEmail(),  | 
                                                        |
| 118 | - 'federationEnabled' => $federationEnabled,  | 
                                                        |
| 119 | - 'lookupServerUploadEnabled' => $lookupServerUploadEnabled,  | 
                                                        |
| 120 | - ];  | 
                                                        |
| 121 | -  | 
                                                        |
| 122 | - $profileParameters = [  | 
                                                        |
| 123 | - 'profileConfig' => $this->profileManager->getProfileConfigWithMetadata($user, $user),  | 
                                                        |
| 124 | - ];  | 
                                                        |
| 125 | -  | 
                                                        |
| 126 | -		$this->initialStateService->provideInitialState('profileEnabledGlobally', $this->profileManager->isProfileEnabled()); | 
                                                        |
| 127 | -		$this->initialStateService->provideInitialState('personalInfoParameters', $personalInfoParameters); | 
                                                        |
| 128 | -		$this->initialStateService->provideInitialState('accountParameters', $accountParameters); | 
                                                        |
| 129 | -		$this->initialStateService->provideInitialState('profileParameters', $profileParameters); | 
                                                        |
| 130 | -  | 
                                                        |
| 131 | -		return new TemplateResponse('settings', 'settings/personal/personal.info', $parameters, ''); | 
                                                        |
| 132 | - }  | 
                                                        |
| 133 | -  | 
                                                        |
| 134 | - /**  | 
                                                        |
| 135 | - * Check if is fair use of free push service  | 
                                                        |
| 136 | - * @return boolean  | 
                                                        |
| 137 | - */  | 
                                                        |
| 138 | -	private function isFairUseOfFreePushService(): bool { | 
                                                        |
| 139 | - return $this->manager->isFairUseOfFreePushService();  | 
                                                        |
| 140 | - }  | 
                                                        |
| 141 | -  | 
                                                        |
| 142 | - /**  | 
                                                        |
| 143 | - * returns the property data in an  | 
                                                        |
| 144 | - * associative array  | 
                                                        |
| 145 | - */  | 
                                                        |
| 146 | -	private function getProperty(IAccount $account, string $property): array { | 
                                                        |
| 147 | - $property = [  | 
                                                        |
| 148 | - 'name' => $account->getProperty($property)->getName(),  | 
                                                        |
| 149 | - 'value' => $account->getProperty($property)->getValue(),  | 
                                                        |
| 150 | - 'scope' => $account->getProperty($property)->getScope(),  | 
                                                        |
| 151 | - 'verified' => $account->getProperty($property)->getVerified(),  | 
                                                        |
| 152 | - ];  | 
                                                        |
| 153 | -  | 
                                                        |
| 154 | - return $property;  | 
                                                        |
| 155 | - }  | 
                                                        |
| 156 | -  | 
                                                        |
| 157 | - /**  | 
                                                        |
| 158 | - * returns the section ID string, e.g. 'sharing'  | 
                                                        |
| 159 | - * @since 9.1  | 
                                                        |
| 160 | - */  | 
                                                        |
| 161 | -	public function getSection(): string { | 
                                                        |
| 162 | - return 'personal-info';  | 
                                                        |
| 163 | - }  | 
                                                        |
| 164 | -  | 
                                                        |
| 165 | - /**  | 
                                                        |
| 166 | - * @return int whether the form should be rather on the top or bottom of  | 
                                                        |
| 167 | - * the admin section. The forms are arranged in ascending order of the  | 
                                                        |
| 168 | - * priority values. It is required to return a value between 0 and 100.  | 
                                                        |
| 169 | - *  | 
                                                        |
| 170 | - * E.g.: 70  | 
                                                        |
| 171 | - * @since 9.1  | 
                                                        |
| 172 | - */  | 
                                                        |
| 173 | -	public function getPriority(): int { | 
                                                        |
| 174 | - return 10;  | 
                                                        |
| 175 | - }  | 
                                                        |
| 176 | -  | 
                                                        |
| 177 | - /**  | 
                                                        |
| 178 | - * returns a sorted list of the user's group GIDs  | 
                                                        |
| 179 | - */  | 
                                                        |
| 180 | -	private function getGroups(IUser $user): array { | 
                                                        |
| 181 | - $groups = array_map(  | 
                                                        |
| 182 | -			static function (IGroup $group) { | 
                                                        |
| 183 | - return $group->getDisplayName();  | 
                                                        |
| 184 | - },  | 
                                                        |
| 185 | - $this->groupManager->getUserGroups($user)  | 
                                                        |
| 186 | - );  | 
                                                        |
| 187 | - sort($groups);  | 
                                                        |
| 188 | -  | 
                                                        |
| 189 | - return $groups;  | 
                                                        |
| 190 | - }  | 
                                                        |
| 191 | -  | 
                                                        |
| 192 | - /**  | 
                                                        |
| 193 | - * returns the primary email and additional emails in an  | 
                                                        |
| 194 | - * associative array  | 
                                                        |
| 195 | - */  | 
                                                        |
| 196 | -	private function getEmailMap(IAccount $account): array { | 
                                                        |
| 197 | - $systemEmail = [  | 
                                                        |
| 198 | - 'name' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getName(),  | 
                                                        |
| 199 | - 'value' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getValue(),  | 
                                                        |
| 200 | - 'scope' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getScope(),  | 
                                                        |
| 201 | - 'verified' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getVerified(),  | 
                                                        |
| 202 | - ];  | 
                                                        |
| 203 | -  | 
                                                        |
| 204 | - $additionalEmails = array_map(  | 
                                                        |
| 205 | -			function (IAccountProperty $property) { | 
                                                        |
| 206 | - return [  | 
                                                        |
| 207 | - 'name' => $property->getName(),  | 
                                                        |
| 208 | - 'value' => $property->getValue(),  | 
                                                        |
| 209 | - 'scope' => $property->getScope(),  | 
                                                        |
| 210 | - 'verified' => $property->getVerified(),  | 
                                                        |
| 211 | - 'locallyVerified' => $property->getLocallyVerified(),  | 
                                                        |
| 212 | - ];  | 
                                                        |
| 213 | - },  | 
                                                        |
| 214 | - $account->getPropertyCollection(IAccountManager::COLLECTION_EMAIL)->getProperties(),  | 
                                                        |
| 215 | - );  | 
                                                        |
| 216 | -  | 
                                                        |
| 217 | - $emailMap = [  | 
                                                        |
| 218 | - 'primaryEmail' => $systemEmail,  | 
                                                        |
| 219 | - 'additionalEmails' => $additionalEmails,  | 
                                                        |
| 220 | - 'notificationEmail' => (string)$account->getUser()->getPrimaryEMailAddress(),  | 
                                                        |
| 221 | - ];  | 
                                                        |
| 222 | -  | 
                                                        |
| 223 | - return $emailMap;  | 
                                                        |
| 224 | - }  | 
                                                        |
| 225 | -  | 
                                                        |
| 226 | - /**  | 
                                                        |
| 227 | - * returns the user's active language, common languages, and other languages in an  | 
                                                        |
| 228 | - * associative array  | 
                                                        |
| 229 | - */  | 
                                                        |
| 230 | -	private function getLanguageMap(IUser $user): array { | 
                                                        |
| 231 | -		$forceLanguage = $this->config->getSystemValue('force_language', false); | 
                                                        |
| 232 | -		if ($forceLanguage !== false) { | 
                                                        |
| 233 | - return [];  | 
                                                        |
| 234 | - }  | 
                                                        |
| 235 | -  | 
                                                        |
| 236 | - $uid = $user->getUID();  | 
                                                        |
| 237 | -  | 
                                                        |
| 238 | - $userConfLang = $this->config->getUserValue($uid, 'core', 'lang', $this->l10nFactory->findLanguage());  | 
                                                        |
| 239 | - $languages = $this->l10nFactory->getLanguages();  | 
                                                        |
| 240 | -  | 
                                                        |
| 241 | - // associate the user language with the proper array  | 
                                                        |
| 242 | - $userLangIndex = array_search($userConfLang, array_column($languages['commonLanguages'], 'code'));  | 
                                                        |
| 243 | - $userLang = $languages['commonLanguages'][$userLangIndex];  | 
                                                        |
| 244 | - // search in the other languages  | 
                                                        |
| 245 | -		if ($userLangIndex === false) { | 
                                                        |
| 246 | - $userLangIndex = array_search($userConfLang, array_column($languages['otherLanguages'], 'code'));  | 
                                                        |
| 247 | - $userLang = $languages['otherLanguages'][$userLangIndex];  | 
                                                        |
| 248 | - }  | 
                                                        |
| 249 | - // if user language is not available but set somehow: show the actual code as name  | 
                                                        |
| 250 | -		if (!is_array($userLang)) { | 
                                                        |
| 251 | - $userLang = [  | 
                                                        |
| 252 | - 'code' => $userConfLang,  | 
                                                        |
| 253 | - 'name' => $userConfLang,  | 
                                                        |
| 254 | - ];  | 
                                                        |
| 255 | - }  | 
                                                        |
| 256 | -  | 
                                                        |
| 257 | - return array_merge(  | 
                                                        |
| 258 | - ['activeLanguage' => $userLang],  | 
                                                        |
| 259 | - $languages  | 
                                                        |
| 260 | - );  | 
                                                        |
| 261 | - }  | 
                                                        |
| 262 | -  | 
                                                        |
| 263 | -	private function getLocaleMap(IUser $user): array { | 
                                                        |
| 264 | -		$forceLanguage = $this->config->getSystemValue('force_locale', false); | 
                                                        |
| 265 | -		if ($forceLanguage !== false) { | 
                                                        |
| 266 | - return [];  | 
                                                        |
| 267 | - }  | 
                                                        |
| 268 | -  | 
                                                        |
| 269 | - $uid = $user->getUID();  | 
                                                        |
| 270 | - $userLang = $this->config->getUserValue($uid, 'core', 'lang', $this->l10nFactory->findLanguage());  | 
                                                        |
| 271 | - $userLocaleString = $this->config->getUserValue($uid, 'core', 'locale', $this->l10nFactory->findLocale($userLang));  | 
                                                        |
| 272 | - $localeCodes = $this->l10nFactory->findAvailableLocales();  | 
                                                        |
| 273 | - $userLocale = array_filter($localeCodes, fn ($value) => $userLocaleString === $value['code']);  | 
                                                        |
| 274 | -  | 
                                                        |
| 275 | -		if (!empty($userLocale)) { | 
                                                        |
| 276 | - $userLocale = reset($userLocale);  | 
                                                        |
| 277 | - }  | 
                                                        |
| 278 | -  | 
                                                        |
| 279 | - $localesForLanguage = array_values(array_filter($localeCodes, fn ($localeCode) => str_starts_with($localeCode['code'], $userLang)));  | 
                                                        |
| 280 | - $otherLocales = array_values(array_filter($localeCodes, fn ($localeCode) => !str_starts_with($localeCode['code'], $userLang)));  | 
                                                        |
| 281 | -  | 
                                                        |
| 282 | -		if (!$userLocale) { | 
                                                        |
| 283 | - $userLocale = [  | 
                                                        |
| 284 | - 'code' => 'en',  | 
                                                        |
| 285 | - 'name' => 'English'  | 
                                                        |
| 286 | - ];  | 
                                                        |
| 287 | - }  | 
                                                        |
| 288 | -  | 
                                                        |
| 289 | - return [  | 
                                                        |
| 290 | - 'activeLocaleLang' => $userLocaleString,  | 
                                                        |
| 291 | - 'activeLocale' => $userLocale,  | 
                                                        |
| 292 | - 'localesForLanguage' => $localesForLanguage,  | 
                                                        |
| 293 | - 'otherLocales' => $otherLocales,  | 
                                                        |
| 294 | - ];  | 
                                                        |
| 295 | - }  | 
                                                        |
| 296 | -  | 
                                                        |
| 297 | - /**  | 
                                                        |
| 298 | - * returns the message parameters  | 
                                                        |
| 299 | - */  | 
                                                        |
| 300 | -	private function getMessageParameters(IAccount $account): array { | 
                                                        |
| 301 | - $needVerifyMessage = [IAccountManager::PROPERTY_EMAIL, IAccountManager::PROPERTY_WEBSITE, IAccountManager::PROPERTY_TWITTER];  | 
                                                        |
| 302 | - $messageParameters = [];  | 
                                                        |
| 303 | -		foreach ($needVerifyMessage as $property) { | 
                                                        |
| 304 | -			switch ($account->getProperty($property)->getVerified()) { | 
                                                        |
| 305 | - case IAccountManager::VERIFIED:  | 
                                                        |
| 306 | -					$message = $this->l->t('Verifying'); | 
                                                        |
| 307 | - break;  | 
                                                        |
| 308 | - case IAccountManager::VERIFICATION_IN_PROGRESS:  | 
                                                        |
| 309 | -					$message = $this->l->t('Verifying …'); | 
                                                        |
| 310 | - break;  | 
                                                        |
| 311 | - default:  | 
                                                        |
| 312 | -					$message = $this->l->t('Verify'); | 
                                                        |
| 313 | - }  | 
                                                        |
| 314 | - $messageParameters[$property . 'Message'] = $message;  | 
                                                        |
| 315 | - }  | 
                                                        |
| 316 | - return $messageParameters;  | 
                                                        |
| 317 | - }  | 
                                                        |
| 35 | + /** @var ProfileManager */  | 
                                                        |
| 36 | + private $profileManager;  | 
                                                        |
| 37 | +  | 
                                                        |
| 38 | + public function __construct(  | 
                                                        |
| 39 | + private IConfig $config,  | 
                                                        |
| 40 | + private IUserManager $userManager,  | 
                                                        |
| 41 | + private IGroupManager $groupManager,  | 
                                                        |
| 42 | + private IAccountManager $accountManager,  | 
                                                        |
| 43 | + ProfileManager $profileManager,  | 
                                                        |
| 44 | + private IAppManager $appManager,  | 
                                                        |
| 45 | + private IFactory $l10nFactory,  | 
                                                        |
| 46 | + private IL10N $l,  | 
                                                        |
| 47 | + private IInitialState $initialStateService,  | 
                                                        |
| 48 | + private IManager $manager,  | 
                                                        |
| 49 | +    ) { | 
                                                        |
| 50 | + $this->profileManager = $profileManager;  | 
                                                        |
| 51 | + }  | 
                                                        |
| 52 | +  | 
                                                        |
| 53 | +    public function getForm(): TemplateResponse { | 
                                                        |
| 54 | +        $federationEnabled = $this->appManager->isEnabledForUser('federation'); | 
                                                        |
| 55 | +        $federatedFileSharingEnabled = $this->appManager->isEnabledForUser('federatedfilesharing'); | 
                                                        |
| 56 | + $lookupServerUploadEnabled = false;  | 
                                                        |
| 57 | +        if ($federatedFileSharingEnabled) { | 
                                                        |
| 58 | + /** @var FederatedShareProvider $shareProvider */  | 
                                                        |
| 59 | + $shareProvider = Server::get(FederatedShareProvider::class);  | 
                                                        |
| 60 | + $lookupServerUploadEnabled = $shareProvider->isLookupServerUploadEnabled();  | 
                                                        |
| 61 | + }  | 
                                                        |
| 62 | +  | 
                                                        |
| 63 | + $uid = \OC_User::getUser();  | 
                                                        |
| 64 | + $user = $this->userManager->get($uid);  | 
                                                        |
| 65 | + $account = $this->accountManager->getAccount($user);  | 
                                                        |
| 66 | +  | 
                                                        |
| 67 | + // make sure FS is setup before querying storage related stuff...  | 
                                                        |
| 68 | + \OC_Util::setupFS($user->getUID());  | 
                                                        |
| 69 | +  | 
                                                        |
| 70 | +        $storageInfo = \OC_Helper::getStorageInfo('/'); | 
                                                        |
| 71 | +        if ($storageInfo['quota'] === FileInfo::SPACE_UNLIMITED) { | 
                                                        |
| 72 | +            $totalSpace = $this->l->t('Unlimited'); | 
                                                        |
| 73 | +        } else { | 
                                                        |
| 74 | + $totalSpace = \OC_Helper::humanFileSize($storageInfo['total']);  | 
                                                        |
| 75 | + }  | 
                                                        |
| 76 | +  | 
                                                        |
| 77 | + $messageParameters = $this->getMessageParameters($account);  | 
                                                        |
| 78 | +  | 
                                                        |
| 79 | + $parameters = [  | 
                                                        |
| 80 | + 'lookupServerUploadEnabled' => $lookupServerUploadEnabled,  | 
                                                        |
| 81 | + 'isFairUseOfFreePushService' => $this->isFairUseOfFreePushService(),  | 
                                                        |
| 82 | + 'profileEnabledGlobally' => $this->profileManager->isProfileEnabled(),  | 
                                                        |
| 83 | + ] + $messageParameters;  | 
                                                        |
| 84 | +  | 
                                                        |
| 85 | + $personalInfoParameters = [  | 
                                                        |
| 86 | + 'userId' => $uid,  | 
                                                        |
| 87 | + 'avatar' => $this->getProperty($account, IAccountManager::PROPERTY_AVATAR),  | 
                                                        |
| 88 | + 'groups' => $this->getGroups($user),  | 
                                                        |
| 89 | + 'quota' => $storageInfo['quota'],  | 
                                                        |
| 90 | + 'totalSpace' => $totalSpace,  | 
                                                        |
| 91 | + 'usage' => \OC_Helper::humanFileSize($storageInfo['used']),  | 
                                                        |
| 92 | + 'usageRelative' => round($storageInfo['relative']),  | 
                                                        |
| 93 | + 'displayName' => $this->getProperty($account, IAccountManager::PROPERTY_DISPLAYNAME),  | 
                                                        |
| 94 | + 'emailMap' => $this->getEmailMap($account),  | 
                                                        |
| 95 | + 'phone' => $this->getProperty($account, IAccountManager::PROPERTY_PHONE),  | 
                                                        |
| 96 | +            'defaultPhoneRegion' => $this->config->getSystemValueString('default_phone_region'), | 
                                                        |
| 97 | + 'location' => $this->getProperty($account, IAccountManager::PROPERTY_ADDRESS),  | 
                                                        |
| 98 | + 'website' => $this->getProperty($account, IAccountManager::PROPERTY_WEBSITE),  | 
                                                        |
| 99 | + 'twitter' => $this->getProperty($account, IAccountManager::PROPERTY_TWITTER),  | 
                                                        |
| 100 | + 'fediverse' => $this->getProperty($account, IAccountManager::PROPERTY_FEDIVERSE),  | 
                                                        |
| 101 | + 'languageMap' => $this->getLanguageMap($user),  | 
                                                        |
| 102 | + 'localeMap' => $this->getLocaleMap($user),  | 
                                                        |
| 103 | + 'profileEnabledGlobally' => $this->profileManager->isProfileEnabled(),  | 
                                                        |
| 104 | + 'profileEnabled' => $this->profileManager->isProfileEnabled($user),  | 
                                                        |
| 105 | + 'organisation' => $this->getProperty($account, IAccountManager::PROPERTY_ORGANISATION),  | 
                                                        |
| 106 | + 'role' => $this->getProperty($account, IAccountManager::PROPERTY_ROLE),  | 
                                                        |
| 107 | + 'headline' => $this->getProperty($account, IAccountManager::PROPERTY_HEADLINE),  | 
                                                        |
| 108 | + 'biography' => $this->getProperty($account, IAccountManager::PROPERTY_BIOGRAPHY),  | 
                                                        |
| 109 | + 'birthdate' => $this->getProperty($account, IAccountManager::PROPERTY_BIRTHDATE),  | 
                                                        |
| 110 | + 'firstDayOfWeek' => $this->config->getUserValue($uid, 'core', AUserDataOCSController::USER_FIELD_FIRST_DAY_OF_WEEK),  | 
                                                        |
| 111 | + 'pronouns' => $this->getProperty($account, IAccountManager::PROPERTY_PRONOUNS),  | 
                                                        |
| 112 | + ];  | 
                                                        |
| 113 | +  | 
                                                        |
| 114 | + $accountParameters = [  | 
                                                        |
| 115 | + 'avatarChangeSupported' => $user->canChangeAvatar(),  | 
                                                        |
| 116 | + 'displayNameChangeSupported' => $user->canChangeDisplayName(),  | 
                                                        |
| 117 | + 'emailChangeSupported' => $user->canChangeEmail(),  | 
                                                        |
| 118 | + 'federationEnabled' => $federationEnabled,  | 
                                                        |
| 119 | + 'lookupServerUploadEnabled' => $lookupServerUploadEnabled,  | 
                                                        |
| 120 | + ];  | 
                                                        |
| 121 | +  | 
                                                        |
| 122 | + $profileParameters = [  | 
                                                        |
| 123 | + 'profileConfig' => $this->profileManager->getProfileConfigWithMetadata($user, $user),  | 
                                                        |
| 124 | + ];  | 
                                                        |
| 125 | +  | 
                                                        |
| 126 | +        $this->initialStateService->provideInitialState('profileEnabledGlobally', $this->profileManager->isProfileEnabled()); | 
                                                        |
| 127 | +        $this->initialStateService->provideInitialState('personalInfoParameters', $personalInfoParameters); | 
                                                        |
| 128 | +        $this->initialStateService->provideInitialState('accountParameters', $accountParameters); | 
                                                        |
| 129 | +        $this->initialStateService->provideInitialState('profileParameters', $profileParameters); | 
                                                        |
| 130 | +  | 
                                                        |
| 131 | +        return new TemplateResponse('settings', 'settings/personal/personal.info', $parameters, ''); | 
                                                        |
| 132 | + }  | 
                                                        |
| 133 | +  | 
                                                        |
| 134 | + /**  | 
                                                        |
| 135 | + * Check if is fair use of free push service  | 
                                                        |
| 136 | + * @return boolean  | 
                                                        |
| 137 | + */  | 
                                                        |
| 138 | +    private function isFairUseOfFreePushService(): bool { | 
                                                        |
| 139 | + return $this->manager->isFairUseOfFreePushService();  | 
                                                        |
| 140 | + }  | 
                                                        |
| 141 | +  | 
                                                        |
| 142 | + /**  | 
                                                        |
| 143 | + * returns the property data in an  | 
                                                        |
| 144 | + * associative array  | 
                                                        |
| 145 | + */  | 
                                                        |
| 146 | +    private function getProperty(IAccount $account, string $property): array { | 
                                                        |
| 147 | + $property = [  | 
                                                        |
| 148 | + 'name' => $account->getProperty($property)->getName(),  | 
                                                        |
| 149 | + 'value' => $account->getProperty($property)->getValue(),  | 
                                                        |
| 150 | + 'scope' => $account->getProperty($property)->getScope(),  | 
                                                        |
| 151 | + 'verified' => $account->getProperty($property)->getVerified(),  | 
                                                        |
| 152 | + ];  | 
                                                        |
| 153 | +  | 
                                                        |
| 154 | + return $property;  | 
                                                        |
| 155 | + }  | 
                                                        |
| 156 | +  | 
                                                        |
| 157 | + /**  | 
                                                        |
| 158 | + * returns the section ID string, e.g. 'sharing'  | 
                                                        |
| 159 | + * @since 9.1  | 
                                                        |
| 160 | + */  | 
                                                        |
| 161 | +    public function getSection(): string { | 
                                                        |
| 162 | + return 'personal-info';  | 
                                                        |
| 163 | + }  | 
                                                        |
| 164 | +  | 
                                                        |
| 165 | + /**  | 
                                                        |
| 166 | + * @return int whether the form should be rather on the top or bottom of  | 
                                                        |
| 167 | + * the admin section. The forms are arranged in ascending order of the  | 
                                                        |
| 168 | + * priority values. It is required to return a value between 0 and 100.  | 
                                                        |
| 169 | + *  | 
                                                        |
| 170 | + * E.g.: 70  | 
                                                        |
| 171 | + * @since 9.1  | 
                                                        |
| 172 | + */  | 
                                                        |
| 173 | +    public function getPriority(): int { | 
                                                        |
| 174 | + return 10;  | 
                                                        |
| 175 | + }  | 
                                                        |
| 176 | +  | 
                                                        |
| 177 | + /**  | 
                                                        |
| 178 | + * returns a sorted list of the user's group GIDs  | 
                                                        |
| 179 | + */  | 
                                                        |
| 180 | +    private function getGroups(IUser $user): array { | 
                                                        |
| 181 | + $groups = array_map(  | 
                                                        |
| 182 | +            static function (IGroup $group) { | 
                                                        |
| 183 | + return $group->getDisplayName();  | 
                                                        |
| 184 | + },  | 
                                                        |
| 185 | + $this->groupManager->getUserGroups($user)  | 
                                                        |
| 186 | + );  | 
                                                        |
| 187 | + sort($groups);  | 
                                                        |
| 188 | +  | 
                                                        |
| 189 | + return $groups;  | 
                                                        |
| 190 | + }  | 
                                                        |
| 191 | +  | 
                                                        |
| 192 | + /**  | 
                                                        |
| 193 | + * returns the primary email and additional emails in an  | 
                                                        |
| 194 | + * associative array  | 
                                                        |
| 195 | + */  | 
                                                        |
| 196 | +    private function getEmailMap(IAccount $account): array { | 
                                                        |
| 197 | + $systemEmail = [  | 
                                                        |
| 198 | + 'name' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getName(),  | 
                                                        |
| 199 | + 'value' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getValue(),  | 
                                                        |
| 200 | + 'scope' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getScope(),  | 
                                                        |
| 201 | + 'verified' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getVerified(),  | 
                                                        |
| 202 | + ];  | 
                                                        |
| 203 | +  | 
                                                        |
| 204 | + $additionalEmails = array_map(  | 
                                                        |
| 205 | +            function (IAccountProperty $property) { | 
                                                        |
| 206 | + return [  | 
                                                        |
| 207 | + 'name' => $property->getName(),  | 
                                                        |
| 208 | + 'value' => $property->getValue(),  | 
                                                        |
| 209 | + 'scope' => $property->getScope(),  | 
                                                        |
| 210 | + 'verified' => $property->getVerified(),  | 
                                                        |
| 211 | + 'locallyVerified' => $property->getLocallyVerified(),  | 
                                                        |
| 212 | + ];  | 
                                                        |
| 213 | + },  | 
                                                        |
| 214 | + $account->getPropertyCollection(IAccountManager::COLLECTION_EMAIL)->getProperties(),  | 
                                                        |
| 215 | + );  | 
                                                        |
| 216 | +  | 
                                                        |
| 217 | + $emailMap = [  | 
                                                        |
| 218 | + 'primaryEmail' => $systemEmail,  | 
                                                        |
| 219 | + 'additionalEmails' => $additionalEmails,  | 
                                                        |
| 220 | + 'notificationEmail' => (string)$account->getUser()->getPrimaryEMailAddress(),  | 
                                                        |
| 221 | + ];  | 
                                                        |
| 222 | +  | 
                                                        |
| 223 | + return $emailMap;  | 
                                                        |
| 224 | + }  | 
                                                        |
| 225 | +  | 
                                                        |
| 226 | + /**  | 
                                                        |
| 227 | + * returns the user's active language, common languages, and other languages in an  | 
                                                        |
| 228 | + * associative array  | 
                                                        |
| 229 | + */  | 
                                                        |
| 230 | +    private function getLanguageMap(IUser $user): array { | 
                                                        |
| 231 | +        $forceLanguage = $this->config->getSystemValue('force_language', false); | 
                                                        |
| 232 | +        if ($forceLanguage !== false) { | 
                                                        |
| 233 | + return [];  | 
                                                        |
| 234 | + }  | 
                                                        |
| 235 | +  | 
                                                        |
| 236 | + $uid = $user->getUID();  | 
                                                        |
| 237 | +  | 
                                                        |
| 238 | + $userConfLang = $this->config->getUserValue($uid, 'core', 'lang', $this->l10nFactory->findLanguage());  | 
                                                        |
| 239 | + $languages = $this->l10nFactory->getLanguages();  | 
                                                        |
| 240 | +  | 
                                                        |
| 241 | + // associate the user language with the proper array  | 
                                                        |
| 242 | + $userLangIndex = array_search($userConfLang, array_column($languages['commonLanguages'], 'code'));  | 
                                                        |
| 243 | + $userLang = $languages['commonLanguages'][$userLangIndex];  | 
                                                        |
| 244 | + // search in the other languages  | 
                                                        |
| 245 | +        if ($userLangIndex === false) { | 
                                                        |
| 246 | + $userLangIndex = array_search($userConfLang, array_column($languages['otherLanguages'], 'code'));  | 
                                                        |
| 247 | + $userLang = $languages['otherLanguages'][$userLangIndex];  | 
                                                        |
| 248 | + }  | 
                                                        |
| 249 | + // if user language is not available but set somehow: show the actual code as name  | 
                                                        |
| 250 | +        if (!is_array($userLang)) { | 
                                                        |
| 251 | + $userLang = [  | 
                                                        |
| 252 | + 'code' => $userConfLang,  | 
                                                        |
| 253 | + 'name' => $userConfLang,  | 
                                                        |
| 254 | + ];  | 
                                                        |
| 255 | + }  | 
                                                        |
| 256 | +  | 
                                                        |
| 257 | + return array_merge(  | 
                                                        |
| 258 | + ['activeLanguage' => $userLang],  | 
                                                        |
| 259 | + $languages  | 
                                                        |
| 260 | + );  | 
                                                        |
| 261 | + }  | 
                                                        |
| 262 | +  | 
                                                        |
| 263 | +    private function getLocaleMap(IUser $user): array { | 
                                                        |
| 264 | +        $forceLanguage = $this->config->getSystemValue('force_locale', false); | 
                                                        |
| 265 | +        if ($forceLanguage !== false) { | 
                                                        |
| 266 | + return [];  | 
                                                        |
| 267 | + }  | 
                                                        |
| 268 | +  | 
                                                        |
| 269 | + $uid = $user->getUID();  | 
                                                        |
| 270 | + $userLang = $this->config->getUserValue($uid, 'core', 'lang', $this->l10nFactory->findLanguage());  | 
                                                        |
| 271 | + $userLocaleString = $this->config->getUserValue($uid, 'core', 'locale', $this->l10nFactory->findLocale($userLang));  | 
                                                        |
| 272 | + $localeCodes = $this->l10nFactory->findAvailableLocales();  | 
                                                        |
| 273 | + $userLocale = array_filter($localeCodes, fn ($value) => $userLocaleString === $value['code']);  | 
                                                        |
| 274 | +  | 
                                                        |
| 275 | +        if (!empty($userLocale)) { | 
                                                        |
| 276 | + $userLocale = reset($userLocale);  | 
                                                        |
| 277 | + }  | 
                                                        |
| 278 | +  | 
                                                        |
| 279 | + $localesForLanguage = array_values(array_filter($localeCodes, fn ($localeCode) => str_starts_with($localeCode['code'], $userLang)));  | 
                                                        |
| 280 | + $otherLocales = array_values(array_filter($localeCodes, fn ($localeCode) => !str_starts_with($localeCode['code'], $userLang)));  | 
                                                        |
| 281 | +  | 
                                                        |
| 282 | +        if (!$userLocale) { | 
                                                        |
| 283 | + $userLocale = [  | 
                                                        |
| 284 | + 'code' => 'en',  | 
                                                        |
| 285 | + 'name' => 'English'  | 
                                                        |
| 286 | + ];  | 
                                                        |
| 287 | + }  | 
                                                        |
| 288 | +  | 
                                                        |
| 289 | + return [  | 
                                                        |
| 290 | + 'activeLocaleLang' => $userLocaleString,  | 
                                                        |
| 291 | + 'activeLocale' => $userLocale,  | 
                                                        |
| 292 | + 'localesForLanguage' => $localesForLanguage,  | 
                                                        |
| 293 | + 'otherLocales' => $otherLocales,  | 
                                                        |
| 294 | + ];  | 
                                                        |
| 295 | + }  | 
                                                        |
| 296 | +  | 
                                                        |
| 297 | + /**  | 
                                                        |
| 298 | + * returns the message parameters  | 
                                                        |
| 299 | + */  | 
                                                        |
| 300 | +    private function getMessageParameters(IAccount $account): array { | 
                                                        |
| 301 | + $needVerifyMessage = [IAccountManager::PROPERTY_EMAIL, IAccountManager::PROPERTY_WEBSITE, IAccountManager::PROPERTY_TWITTER];  | 
                                                        |
| 302 | + $messageParameters = [];  | 
                                                        |
| 303 | +        foreach ($needVerifyMessage as $property) { | 
                                                        |
| 304 | +            switch ($account->getProperty($property)->getVerified()) { | 
                                                        |
| 305 | + case IAccountManager::VERIFIED:  | 
                                                        |
| 306 | +                    $message = $this->l->t('Verifying'); | 
                                                        |
| 307 | + break;  | 
                                                        |
| 308 | + case IAccountManager::VERIFICATION_IN_PROGRESS:  | 
                                                        |
| 309 | +                    $message = $this->l->t('Verifying …'); | 
                                                        |
| 310 | + break;  | 
                                                        |
| 311 | + default:  | 
                                                        |
| 312 | +                    $message = $this->l->t('Verify'); | 
                                                        |
| 313 | + }  | 
                                                        |
| 314 | + $messageParameters[$property . 'Message'] = $message;  | 
                                                        |
| 315 | + }  | 
                                                        |
| 316 | + return $messageParameters;  | 
                                                        |
| 317 | + }  | 
                                                        |
| 318 | 318 | }  | 
                                                        
@@ -46,4391 +46,4391 @@  | 
                                                    ||
| 46 | 46 | use Test\TestCase;  | 
                                                        
| 47 | 47 | |
| 48 | 48 |  class UsersControllerTest extends TestCase { | 
                                                        
| 49 | - /** @var IUserManager|MockObject */  | 
                                                        |
| 50 | - protected $userManager;  | 
                                                        |
| 51 | - /** @var IConfig|MockObject */  | 
                                                        |
| 52 | - protected $config;  | 
                                                        |
| 53 | - /** @var Manager|MockObject */  | 
                                                        |
| 54 | - protected $groupManager;  | 
                                                        |
| 55 | - /** @var IUserSession|MockObject */  | 
                                                        |
| 56 | - protected $userSession;  | 
                                                        |
| 57 | - /** @var LoggerInterface|MockObject */  | 
                                                        |
| 58 | - protected $logger;  | 
                                                        |
| 59 | - /** @var UsersController|MockObject */  | 
                                                        |
| 60 | - protected $api;  | 
                                                        |
| 61 | - /** @var IAccountManager|MockObject */  | 
                                                        |
| 62 | - protected $accountManager;  | 
                                                        |
| 63 | - /** @var ISubAdmin|MockObject */  | 
                                                        |
| 64 | - protected $subAdminManager;  | 
                                                        |
| 65 | - /** @var IURLGenerator|MockObject */  | 
                                                        |
| 66 | - protected $urlGenerator;  | 
                                                        |
| 67 | - /** @var IRequest|MockObject */  | 
                                                        |
| 68 | - protected $request;  | 
                                                        |
| 69 | - /** @var IFactory|MockObject */  | 
                                                        |
| 70 | - private $l10nFactory;  | 
                                                        |
| 71 | - /** @var NewUserMailHelper|MockObject */  | 
                                                        |
| 72 | - private $newUserMailHelper;  | 
                                                        |
| 73 | - /** @var ISecureRandom|MockObject */  | 
                                                        |
| 74 | - private $secureRandom;  | 
                                                        |
| 75 | - /** @var RemoteWipe|MockObject */  | 
                                                        |
| 76 | - private $remoteWipe;  | 
                                                        |
| 77 | - /** @var KnownUserService|MockObject */  | 
                                                        |
| 78 | - private $knownUserService;  | 
                                                        |
| 79 | - /** @var IEventDispatcher|MockObject */  | 
                                                        |
| 80 | - private $eventDispatcher;  | 
                                                        |
| 81 | - private IRootFolder $rootFolder;  | 
                                                        |
| 82 | - /** @var IPhoneNumberUtil */  | 
                                                        |
| 83 | - private $phoneNumberUtil;  | 
                                                        |
| 84 | -  | 
                                                        |
| 85 | -	protected function setUp(): void { | 
                                                        |
| 86 | - parent::setUp();  | 
                                                        |
| 87 | -  | 
                                                        |
| 88 | - $this->userManager = $this->createMock(IUserManager::class);  | 
                                                        |
| 89 | - $this->config = $this->createMock(IConfig::class);  | 
                                                        |
| 90 | - $this->groupManager = $this->createMock(Manager::class);  | 
                                                        |
| 91 | - $this->userSession = $this->createMock(IUserSession::class);  | 
                                                        |
| 92 | - $this->logger = $this->createMock(LoggerInterface::class);  | 
                                                        |
| 93 | - $this->request = $this->createMock(IRequest::class);  | 
                                                        |
| 94 | - $this->accountManager = $this->createMock(IAccountManager::class);  | 
                                                        |
| 95 | - $this->subAdminManager = $this->createMock(ISubAdmin::class);  | 
                                                        |
| 96 | - $this->urlGenerator = $this->createMock(IURLGenerator::class);  | 
                                                        |
| 97 | - $this->l10nFactory = $this->createMock(IFactory::class);  | 
                                                        |
| 98 | - $this->newUserMailHelper = $this->createMock(NewUserMailHelper::class);  | 
                                                        |
| 99 | - $this->secureRandom = $this->createMock(ISecureRandom::class);  | 
                                                        |
| 100 | - $this->remoteWipe = $this->createMock(RemoteWipe::class);  | 
                                                        |
| 101 | - $this->knownUserService = $this->createMock(KnownUserService::class);  | 
                                                        |
| 102 | - $this->eventDispatcher = $this->createMock(IEventDispatcher::class);  | 
                                                        |
| 103 | - $this->phoneNumberUtil = new PhoneNumberUtil();  | 
                                                        |
| 104 | - $this->rootFolder = $this->createMock(IRootFolder::class);  | 
                                                        |
| 105 | -  | 
                                                        |
| 106 | - $l10n = $this->createMock(IL10N::class);  | 
                                                        |
| 107 | -		$l10n->method('t')->willReturnCallback(fn (string $txt, array $replacement = []) => sprintf($txt, ...$replacement)); | 
                                                        |
| 108 | -		$this->l10nFactory->method('get')->with('provisioning_api')->willReturn($l10n); | 
                                                        |
| 109 | -  | 
                                                        |
| 110 | - $this->api = $this->getMockBuilder(UsersController::class)  | 
                                                        |
| 111 | - ->setConstructorArgs([  | 
                                                        |
| 112 | - 'provisioning_api',  | 
                                                        |
| 113 | - $this->request,  | 
                                                        |
| 114 | - $this->userManager,  | 
                                                        |
| 115 | - $this->config,  | 
                                                        |
| 116 | - $this->groupManager,  | 
                                                        |
| 117 | - $this->userSession,  | 
                                                        |
| 118 | - $this->accountManager,  | 
                                                        |
| 119 | - $this->subAdminManager,  | 
                                                        |
| 120 | - $this->l10nFactory,  | 
                                                        |
| 121 | - $this->rootFolder,  | 
                                                        |
| 122 | - $this->urlGenerator,  | 
                                                        |
| 123 | - $this->logger,  | 
                                                        |
| 124 | - $this->newUserMailHelper,  | 
                                                        |
| 125 | - $this->secureRandom,  | 
                                                        |
| 126 | - $this->remoteWipe,  | 
                                                        |
| 127 | - $this->knownUserService,  | 
                                                        |
| 128 | - $this->eventDispatcher,  | 
                                                        |
| 129 | - $this->phoneNumberUtil,  | 
                                                        |
| 130 | - ])  | 
                                                        |
| 131 | - ->onlyMethods(['fillStorageInfo'])  | 
                                                        |
| 132 | - ->getMock();  | 
                                                        |
| 133 | - }  | 
                                                        |
| 134 | -  | 
                                                        |
| 135 | -	public function testGetUsersAsAdmin(): void { | 
                                                        |
| 136 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 137 | - ->disableOriginalConstructor()  | 
                                                        |
| 138 | - ->getMock();  | 
                                                        |
| 139 | - $loggedInUser  | 
                                                        |
| 140 | - ->expects($this->once())  | 
                                                        |
| 141 | -			->method('getUID') | 
                                                        |
| 142 | -			->willReturn('admin'); | 
                                                        |
| 143 | - $this->userSession  | 
                                                        |
| 144 | - ->expects($this->once())  | 
                                                        |
| 145 | -			->method('getUser') | 
                                                        |
| 146 | - ->willReturn($loggedInUser);  | 
                                                        |
| 147 | - $this->groupManager  | 
                                                        |
| 148 | - ->expects($this->once())  | 
                                                        |
| 149 | -			->method('isAdmin') | 
                                                        |
| 150 | - ->willReturn(true);  | 
                                                        |
| 151 | - $this->userManager  | 
                                                        |
| 152 | - ->expects($this->once())  | 
                                                        |
| 153 | -			->method('search') | 
                                                        |
| 154 | -			->with('MyCustomSearch') | 
                                                        |
| 155 | - ->willReturn(['Admin' => [], 'Foo' => [], 'Bar' => []]);  | 
                                                        |
| 156 | -  | 
                                                        |
| 157 | - $expected = [  | 
                                                        |
| 158 | - 'users' => [  | 
                                                        |
| 159 | - 'Admin',  | 
                                                        |
| 160 | - 'Foo',  | 
                                                        |
| 161 | - 'Bar',  | 
                                                        |
| 162 | - ],  | 
                                                        |
| 163 | - ];  | 
                                                        |
| 164 | -		$this->assertEquals($expected, $this->api->getUsers('MyCustomSearch')->getData()); | 
                                                        |
| 165 | - }  | 
                                                        |
| 166 | -  | 
                                                        |
| 167 | -	public function testGetUsersAsSubAdmin(): void { | 
                                                        |
| 168 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 169 | - ->disableOriginalConstructor()  | 
                                                        |
| 170 | - ->getMock();  | 
                                                        |
| 171 | - $loggedInUser  | 
                                                        |
| 172 | - ->expects($this->once())  | 
                                                        |
| 173 | -			->method('getUID') | 
                                                        |
| 174 | -			->willReturn('subadmin'); | 
                                                        |
| 175 | - $this->userSession  | 
                                                        |
| 176 | - ->expects($this->once())  | 
                                                        |
| 177 | -			->method('getUser') | 
                                                        |
| 178 | - ->willReturn($loggedInUser);  | 
                                                        |
| 179 | - $this->groupManager  | 
                                                        |
| 180 | - ->expects($this->once())  | 
                                                        |
| 181 | -			->method('isAdmin') | 
                                                        |
| 182 | - ->willReturn(false);  | 
                                                        |
| 183 | -		$firstGroup = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 184 | - ->disableOriginalConstructor()  | 
                                                        |
| 185 | - ->getMock();  | 
                                                        |
| 186 | - $firstGroup  | 
                                                        |
| 187 | - ->expects($this->once())  | 
                                                        |
| 188 | -			->method('getGID') | 
                                                        |
| 189 | -			->willReturn('FirstGroup'); | 
                                                        |
| 190 | -		$secondGroup = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 191 | - ->disableOriginalConstructor()  | 
                                                        |
| 192 | - ->getMock();  | 
                                                        |
| 193 | - $secondGroup  | 
                                                        |
| 194 | - ->expects($this->once())  | 
                                                        |
| 195 | -			->method('getGID') | 
                                                        |
| 196 | -			->willReturn('SecondGroup'); | 
                                                        |
| 197 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 198 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 199 | - $subAdminManager  | 
                                                        |
| 200 | - ->expects($this->once())  | 
                                                        |
| 201 | -			->method('isSubAdmin') | 
                                                        |
| 202 | - ->with($loggedInUser)  | 
                                                        |
| 203 | - ->willReturn(true);  | 
                                                        |
| 204 | - $subAdminManager  | 
                                                        |
| 205 | - ->expects($this->once())  | 
                                                        |
| 206 | -			->method('getSubAdminsGroups') | 
                                                        |
| 207 | - ->with($loggedInUser)  | 
                                                        |
| 208 | - ->willReturn([$firstGroup, $secondGroup]);  | 
                                                        |
| 209 | - $this->groupManager  | 
                                                        |
| 210 | - ->expects($this->once())  | 
                                                        |
| 211 | -			->method('getSubAdmin') | 
                                                        |
| 212 | - ->willReturn($subAdminManager);  | 
                                                        |
| 213 | - $this->groupManager  | 
                                                        |
| 214 | - ->expects($this->any())  | 
                                                        |
| 215 | -			->method('displayNamesInGroup') | 
                                                        |
| 216 | - ->will($this->onConsecutiveCalls(['AnotherUserInTheFirstGroup' => []], ['UserInTheSecondGroup' => []]));  | 
                                                        |
| 217 | -  | 
                                                        |
| 218 | - $expected = [  | 
                                                        |
| 219 | - 'users' => [  | 
                                                        |
| 220 | - 'AnotherUserInTheFirstGroup',  | 
                                                        |
| 221 | - 'UserInTheSecondGroup',  | 
                                                        |
| 222 | - ],  | 
                                                        |
| 223 | - ];  | 
                                                        |
| 224 | -		$this->assertEquals($expected, $this->api->getUsers('MyCustomSearch')->getData()); | 
                                                        |
| 225 | - }  | 
                                                        |
| 226 | -  | 
                                                        |
| 227 | -	private function createUserMock(string $uid, bool $enabled): MockObject&IUser { | 
                                                        |
| 228 | - $mockUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 229 | - ->disableOriginalConstructor()  | 
                                                        |
| 230 | - ->getMock();  | 
                                                        |
| 231 | - $mockUser  | 
                                                        |
| 232 | -			->method('getUID') | 
                                                        |
| 233 | - ->willReturn($uid);  | 
                                                        |
| 234 | - $mockUser  | 
                                                        |
| 235 | -			->method('isEnabled') | 
                                                        |
| 236 | - ->willReturn($enabled);  | 
                                                        |
| 237 | - return $mockUser;  | 
                                                        |
| 238 | - }  | 
                                                        |
| 239 | -  | 
                                                        |
| 240 | -	public function testGetDisabledUsersAsAdmin(): void { | 
                                                        |
| 241 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 242 | - ->disableOriginalConstructor()  | 
                                                        |
| 243 | - ->getMock();  | 
                                                        |
| 244 | - $loggedInUser  | 
                                                        |
| 245 | - ->expects($this->once())  | 
                                                        |
| 246 | -			->method('getUID') | 
                                                        |
| 247 | -			->willReturn('admin'); | 
                                                        |
| 248 | - $this->userSession  | 
                                                        |
| 249 | - ->expects($this->atLeastOnce())  | 
                                                        |
| 250 | -			->method('getUser') | 
                                                        |
| 251 | - ->willReturn($loggedInUser);  | 
                                                        |
| 252 | - $this->groupManager  | 
                                                        |
| 253 | - ->expects($this->once())  | 
                                                        |
| 254 | -			->method('isAdmin') | 
                                                        |
| 255 | - ->willReturn(true);  | 
                                                        |
| 256 | - $this->userManager  | 
                                                        |
| 257 | - ->expects($this->once())  | 
                                                        |
| 258 | -			->method('getDisabledUsers') | 
                                                        |
| 259 | - ->with(3, 0, 'MyCustomSearch')  | 
                                                        |
| 260 | - ->willReturn([  | 
                                                        |
| 261 | -				$this->createUserMock('admin', false), | 
                                                        |
| 262 | -				$this->createUserMock('foo', false), | 
                                                        |
| 263 | -				$this->createUserMock('bar', false), | 
                                                        |
| 264 | - ]);  | 
                                                        |
| 265 | -  | 
                                                        |
| 266 | - $expected = [  | 
                                                        |
| 267 | - 'users' => [  | 
                                                        |
| 268 | - 'admin' => ['id' => 'admin'],  | 
                                                        |
| 269 | - 'foo' => ['id' => 'foo'],  | 
                                                        |
| 270 | - 'bar' => ['id' => 'bar'],  | 
                                                        |
| 271 | - ],  | 
                                                        |
| 272 | - ];  | 
                                                        |
| 273 | -		$this->assertEquals($expected, $this->api->getDisabledUsersDetails('MyCustomSearch', 3)->getData()); | 
                                                        |
| 274 | - }  | 
                                                        |
| 275 | -  | 
                                                        |
| 276 | -	public function testGetDisabledUsersAsSubAdmin(): void { | 
                                                        |
| 277 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 278 | - ->disableOriginalConstructor()  | 
                                                        |
| 279 | - ->getMock();  | 
                                                        |
| 280 | - $loggedInUser  | 
                                                        |
| 281 | - ->expects($this->once())  | 
                                                        |
| 282 | -			->method('getUID') | 
                                                        |
| 283 | -			->willReturn('subadmin'); | 
                                                        |
| 284 | - $this->userSession  | 
                                                        |
| 285 | - ->expects($this->atLeastOnce())  | 
                                                        |
| 286 | -			->method('getUser') | 
                                                        |
| 287 | - ->willReturn($loggedInUser);  | 
                                                        |
| 288 | - $this->groupManager  | 
                                                        |
| 289 | - ->expects($this->once())  | 
                                                        |
| 290 | -			->method('isAdmin') | 
                                                        |
| 291 | - ->willReturn(false);  | 
                                                        |
| 292 | -		$firstGroup = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 293 | - ->disableOriginalConstructor()  | 
                                                        |
| 294 | - ->getMock();  | 
                                                        |
| 295 | -		$secondGroup = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 296 | - ->disableOriginalConstructor()  | 
                                                        |
| 297 | - ->getMock();  | 
                                                        |
| 298 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 299 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 300 | - $subAdminManager  | 
                                                        |
| 301 | - ->expects($this->once())  | 
                                                        |
| 302 | -			->method('isSubAdmin') | 
                                                        |
| 303 | - ->with($loggedInUser)  | 
                                                        |
| 304 | - ->willReturn(true);  | 
                                                        |
| 305 | - $subAdminManager  | 
                                                        |
| 306 | - ->expects($this->once())  | 
                                                        |
| 307 | -			->method('getSubAdminsGroups') | 
                                                        |
| 308 | - ->with($loggedInUser)  | 
                                                        |
| 309 | - ->willReturn([$firstGroup, $secondGroup]);  | 
                                                        |
| 310 | - $this->groupManager  | 
                                                        |
| 311 | - ->expects($this->once())  | 
                                                        |
| 312 | -			->method('getSubAdmin') | 
                                                        |
| 313 | - ->willReturn($subAdminManager);  | 
                                                        |
| 314 | - $this->groupManager  | 
                                                        |
| 315 | - ->expects($this->never())  | 
                                                        |
| 316 | -			->method('displayNamesInGroup'); | 
                                                        |
| 317 | -  | 
                                                        |
| 318 | - $firstGroup  | 
                                                        |
| 319 | - ->expects($this->once())  | 
                                                        |
| 320 | -			->method('searchUsers') | 
                                                        |
| 321 | -			->with('MyCustomSearch') | 
                                                        |
| 322 | - ->willReturn([  | 
                                                        |
| 323 | -				$this->createUserMock('user1', false), | 
                                                        |
| 324 | -				$this->createUserMock('bob', true), | 
                                                        |
| 325 | -				$this->createUserMock('user2', false), | 
                                                        |
| 326 | -				$this->createUserMock('alice', true), | 
                                                        |
| 327 | - ]);  | 
                                                        |
| 328 | -  | 
                                                        |
| 329 | - $secondGroup  | 
                                                        |
| 330 | - ->expects($this->once())  | 
                                                        |
| 331 | -			->method('searchUsers') | 
                                                        |
| 332 | -			->with('MyCustomSearch') | 
                                                        |
| 333 | - ->willReturn([  | 
                                                        |
| 334 | -				$this->createUserMock('user2', false), | 
                                                        |
| 335 | -				$this->createUserMock('joe', true), | 
                                                        |
| 336 | -				$this->createUserMock('user3', false), | 
                                                        |
| 337 | -				$this->createUserMock('jim', true), | 
                                                        |
| 338 | -				$this->createUserMock('john', true), | 
                                                        |
| 339 | - ]);  | 
                                                        |
| 340 | -  | 
                                                        |
| 341 | -  | 
                                                        |
| 342 | - $expected = [  | 
                                                        |
| 343 | - 'users' => [  | 
                                                        |
| 344 | - 'user1' => ['id' => 'user1'],  | 
                                                        |
| 345 | - 'user2' => ['id' => 'user2'],  | 
                                                        |
| 346 | - 'user3' => ['id' => 'user3'],  | 
                                                        |
| 347 | - ],  | 
                                                        |
| 348 | - ];  | 
                                                        |
| 349 | -		$this->assertEquals($expected, $this->api->getDisabledUsersDetails('MyCustomSearch', 3)->getData()); | 
                                                        |
| 350 | - }  | 
                                                        |
| 351 | -  | 
                                                        |
| 352 | -  | 
                                                        |
| 353 | -	public function testAddUserAlreadyExisting(): void { | 
                                                        |
| 354 | - $this->expectException(OCSException::class);  | 
                                                        |
| 355 | - $this->expectExceptionCode(102);  | 
                                                        |
| 356 | -  | 
                                                        |
| 357 | - $this->userManager  | 
                                                        |
| 358 | - ->expects($this->once())  | 
                                                        |
| 359 | -			->method('userExists') | 
                                                        |
| 360 | -			->with('AlreadyExistingUser') | 
                                                        |
| 361 | - ->willReturn(true);  | 
                                                        |
| 362 | - $this->logger  | 
                                                        |
| 363 | - ->expects($this->once())  | 
                                                        |
| 364 | -			->method('error') | 
                                                        |
| 365 | -			->with('Failed addUser attempt: User already exists.', ['app' => 'ocs_api']); | 
                                                        |
| 366 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 367 | - ->disableOriginalConstructor()  | 
                                                        |
| 368 | - ->getMock();  | 
                                                        |
| 369 | - $loggedInUser  | 
                                                        |
| 370 | - ->expects($this->exactly(2))  | 
                                                        |
| 371 | -			->method('getUID') | 
                                                        |
| 372 | -			->willReturn('adminUser'); | 
                                                        |
| 373 | - $this->userSession  | 
                                                        |
| 374 | - ->expects($this->once())  | 
                                                        |
| 375 | -			->method('getUser') | 
                                                        |
| 376 | - ->willReturn($loggedInUser);  | 
                                                        |
| 377 | - $this->groupManager  | 
                                                        |
| 378 | - ->expects($this->once())  | 
                                                        |
| 379 | -			->method('isAdmin') | 
                                                        |
| 380 | -			->with('adminUser') | 
                                                        |
| 381 | - ->willReturn(true);  | 
                                                        |
| 382 | -  | 
                                                        |
| 383 | -		$this->api->addUser('AlreadyExistingUser', 'password', '', '', []); | 
                                                        |
| 384 | - }  | 
                                                        |
| 385 | -  | 
                                                        |
| 386 | -  | 
                                                        |
| 387 | -	public function testAddUserNonExistingGroup(): void { | 
                                                        |
| 388 | - $this->expectException(OCSException::class);  | 
                                                        |
| 389 | -		$this->expectExceptionMessage('Group NonExistingGroup does not exist'); | 
                                                        |
| 390 | - $this->expectExceptionCode(104);  | 
                                                        |
| 391 | -  | 
                                                        |
| 392 | - $this->userManager  | 
                                                        |
| 393 | - ->expects($this->once())  | 
                                                        |
| 394 | -			->method('userExists') | 
                                                        |
| 395 | -			->with('NewUser') | 
                                                        |
| 396 | - ->willReturn(false);  | 
                                                        |
| 397 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 398 | - ->disableOriginalConstructor()  | 
                                                        |
| 399 | - ->getMock();  | 
                                                        |
| 400 | - $loggedInUser  | 
                                                        |
| 401 | - ->expects($this->exactly(2))  | 
                                                        |
| 402 | -			->method('getUID') | 
                                                        |
| 403 | -			->willReturn('adminUser'); | 
                                                        |
| 404 | - $this->userSession  | 
                                                        |
| 405 | - ->expects($this->once())  | 
                                                        |
| 406 | -			->method('getUser') | 
                                                        |
| 407 | - ->willReturn($loggedInUser);  | 
                                                        |
| 408 | - $this->groupManager  | 
                                                        |
| 409 | - ->expects($this->once())  | 
                                                        |
| 410 | -			->method('isAdmin') | 
                                                        |
| 411 | -			->with('adminUser') | 
                                                        |
| 412 | - ->willReturn(true);  | 
                                                        |
| 413 | - $this->groupManager  | 
                                                        |
| 414 | - ->expects($this->once())  | 
                                                        |
| 415 | -			->method('groupExists') | 
                                                        |
| 416 | -			->with('NonExistingGroup') | 
                                                        |
| 417 | - ->willReturn(false);  | 
                                                        |
| 418 | -  | 
                                                        |
| 419 | -		$this->api->addUser('NewUser', 'pass', '', '', ['NonExistingGroup']); | 
                                                        |
| 420 | - }  | 
                                                        |
| 421 | -  | 
                                                        |
| 422 | -  | 
                                                        |
| 423 | -	public function testAddUserExistingGroupNonExistingGroup(): void { | 
                                                        |
| 424 | - $this->expectException(OCSException::class);  | 
                                                        |
| 425 | -		$this->expectExceptionMessage('Group NonExistingGroup does not exist'); | 
                                                        |
| 426 | - $this->expectExceptionCode(104);  | 
                                                        |
| 427 | -  | 
                                                        |
| 428 | - $this->userManager  | 
                                                        |
| 429 | - ->expects($this->once())  | 
                                                        |
| 430 | -			->method('userExists') | 
                                                        |
| 431 | -			->with('NewUser') | 
                                                        |
| 432 | - ->willReturn(false);  | 
                                                        |
| 433 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 434 | - ->disableOriginalConstructor()  | 
                                                        |
| 435 | - ->getMock();  | 
                                                        |
| 436 | - $loggedInUser  | 
                                                        |
| 437 | - ->expects($this->exactly(2))  | 
                                                        |
| 438 | -			->method('getUID') | 
                                                        |
| 439 | -			->willReturn('adminUser'); | 
                                                        |
| 440 | - $this->userSession  | 
                                                        |
| 441 | - ->expects($this->once())  | 
                                                        |
| 442 | -			->method('getUser') | 
                                                        |
| 443 | - ->willReturn($loggedInUser);  | 
                                                        |
| 444 | - $this->groupManager  | 
                                                        |
| 445 | - ->expects($this->once())  | 
                                                        |
| 446 | -			->method('isAdmin') | 
                                                        |
| 447 | -			->with('adminUser') | 
                                                        |
| 448 | - ->willReturn(true);  | 
                                                        |
| 449 | - $this->groupManager  | 
                                                        |
| 450 | - ->expects($this->exactly(2))  | 
                                                        |
| 451 | -			->method('groupExists') | 
                                                        |
| 452 | - ->withConsecutive(  | 
                                                        |
| 453 | - ['ExistingGroup'],  | 
                                                        |
| 454 | - ['NonExistingGroup']  | 
                                                        |
| 455 | - )  | 
                                                        |
| 456 | - ->willReturnMap([  | 
                                                        |
| 457 | - ['ExistingGroup', true],  | 
                                                        |
| 458 | - ['NonExistingGroup', false]  | 
                                                        |
| 459 | - ]);  | 
                                                        |
| 460 | -  | 
                                                        |
| 461 | -		$this->api->addUser('NewUser', 'pass', '', '', ['ExistingGroup', 'NonExistingGroup']); | 
                                                        |
| 462 | - }  | 
                                                        |
| 463 | -  | 
                                                        |
| 464 | -	public function testAddUserSuccessful(): void { | 
                                                        |
| 465 | - $this->userManager  | 
                                                        |
| 466 | - ->expects($this->once())  | 
                                                        |
| 467 | -			->method('userExists') | 
                                                        |
| 468 | -			->with('NewUser') | 
                                                        |
| 469 | - ->willReturn(false);  | 
                                                        |
| 470 | - $this->userManager  | 
                                                        |
| 471 | - ->expects($this->once())  | 
                                                        |
| 472 | -			->method('createUser') | 
                                                        |
| 473 | -			->with('NewUser', 'PasswordOfTheNewUser'); | 
                                                        |
| 474 | - $this->logger  | 
                                                        |
| 475 | - ->expects($this->once())  | 
                                                        |
| 476 | -			->method('info') | 
                                                        |
| 477 | -			->with('Successful addUser call with userid: NewUser', ['app' => 'ocs_api']); | 
                                                        |
| 478 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 479 | - ->disableOriginalConstructor()  | 
                                                        |
| 480 | - ->getMock();  | 
                                                        |
| 481 | - $loggedInUser  | 
                                                        |
| 482 | - ->expects($this->exactly(2))  | 
                                                        |
| 483 | -			->method('getUID') | 
                                                        |
| 484 | -			->willReturn('adminUser'); | 
                                                        |
| 485 | - $this->userSession  | 
                                                        |
| 486 | - ->expects($this->once())  | 
                                                        |
| 487 | -			->method('getUser') | 
                                                        |
| 488 | - ->willReturn($loggedInUser);  | 
                                                        |
| 489 | - $this->groupManager  | 
                                                        |
| 490 | - ->expects($this->once())  | 
                                                        |
| 491 | -			->method('isAdmin') | 
                                                        |
| 492 | -			->with('adminUser') | 
                                                        |
| 493 | - ->willReturn(true);  | 
                                                        |
| 494 | -  | 
                                                        |
| 495 | - $this->assertTrue(key_exists(  | 
                                                        |
| 496 | - 'id',  | 
                                                        |
| 497 | -			$this->api->addUser('NewUser', 'PasswordOfTheNewUser')->getData() | 
                                                        |
| 498 | - ));  | 
                                                        |
| 499 | - }  | 
                                                        |
| 500 | -  | 
                                                        |
| 501 | -	public function testAddUserSuccessfulWithDisplayName(): void { | 
                                                        |
| 502 | - /**  | 
                                                        |
| 503 | - * @var UserController  | 
                                                        |
| 504 | - */  | 
                                                        |
| 505 | - $api = $this->getMockBuilder(UsersController::class)  | 
                                                        |
| 506 | - ->setConstructorArgs([  | 
                                                        |
| 507 | - 'provisioning_api',  | 
                                                        |
| 508 | - $this->request,  | 
                                                        |
| 509 | - $this->userManager,  | 
                                                        |
| 510 | - $this->config,  | 
                                                        |
| 511 | - $this->groupManager,  | 
                                                        |
| 512 | - $this->userSession,  | 
                                                        |
| 513 | - $this->accountManager,  | 
                                                        |
| 514 | - $this->subAdminManager,  | 
                                                        |
| 515 | - $this->l10nFactory,  | 
                                                        |
| 516 | - $this->rootFolder,  | 
                                                        |
| 517 | - $this->urlGenerator,  | 
                                                        |
| 518 | - $this->logger,  | 
                                                        |
| 519 | - $this->newUserMailHelper,  | 
                                                        |
| 520 | - $this->secureRandom,  | 
                                                        |
| 521 | - $this->remoteWipe,  | 
                                                        |
| 522 | - $this->knownUserService,  | 
                                                        |
| 523 | - $this->eventDispatcher,  | 
                                                        |
| 524 | - $this->phoneNumberUtil,  | 
                                                        |
| 525 | - ])  | 
                                                        |
| 526 | - ->onlyMethods(['editUser'])  | 
                                                        |
| 527 | - ->getMock();  | 
                                                        |
| 528 | -  | 
                                                        |
| 529 | - $this->userManager  | 
                                                        |
| 530 | - ->expects($this->once())  | 
                                                        |
| 531 | -			->method('userExists') | 
                                                        |
| 532 | -			->with('NewUser') | 
                                                        |
| 533 | - ->willReturn(false);  | 
                                                        |
| 534 | - $this->userManager  | 
                                                        |
| 535 | - ->expects($this->once())  | 
                                                        |
| 536 | -			->method('createUser') | 
                                                        |
| 537 | -			->with('NewUser', 'PasswordOfTheNewUser'); | 
                                                        |
| 538 | - $this->logger  | 
                                                        |
| 539 | - ->expects($this->once())  | 
                                                        |
| 540 | -			->method('info') | 
                                                        |
| 541 | -			->with('Successful addUser call with userid: NewUser', ['app' => 'ocs_api']); | 
                                                        |
| 542 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 543 | - ->disableOriginalConstructor()  | 
                                                        |
| 544 | - ->getMock();  | 
                                                        |
| 545 | - $loggedInUser  | 
                                                        |
| 546 | - ->expects($this->any())  | 
                                                        |
| 547 | -			->method('getUID') | 
                                                        |
| 548 | -			->willReturn('adminUser'); | 
                                                        |
| 549 | - $this->userSession  | 
                                                        |
| 550 | - ->expects($this->any())  | 
                                                        |
| 551 | -			->method('getUser') | 
                                                        |
| 552 | - ->willReturn($loggedInUser);  | 
                                                        |
| 553 | - $this->groupManager  | 
                                                        |
| 554 | - ->expects($this->once())  | 
                                                        |
| 555 | -			->method('isAdmin') | 
                                                        |
| 556 | -			->with('adminUser') | 
                                                        |
| 557 | - ->willReturn(true);  | 
                                                        |
| 558 | - $api  | 
                                                        |
| 559 | - ->expects($this->once())  | 
                                                        |
| 560 | -			->method('editUser') | 
                                                        |
| 561 | -			->with('NewUser', 'display', 'DisplayNameOfTheNewUser'); | 
                                                        |
| 562 | -  | 
                                                        |
| 563 | - $this->assertTrue(key_exists(  | 
                                                        |
| 564 | - 'id',  | 
                                                        |
| 565 | -			$api->addUser('NewUser', 'PasswordOfTheNewUser', 'DisplayNameOfTheNewUser')->getData() | 
                                                        |
| 566 | - ));  | 
                                                        |
| 567 | - }  | 
                                                        |
| 568 | -  | 
                                                        |
| 569 | -	public function testAddUserSuccessfulGenerateUserID(): void { | 
                                                        |
| 570 | - $this->config  | 
                                                        |
| 571 | - ->expects($this->any())  | 
                                                        |
| 572 | -			->method('getAppValue') | 
                                                        |
| 573 | -			->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 574 | -				if ($key === 'newUser.generateUserID') { | 
                                                        |
| 575 | - return 'yes';  | 
                                                        |
| 576 | - }  | 
                                                        |
| 577 | - return null;  | 
                                                        |
| 578 | - });  | 
                                                        |
| 579 | - $this->userManager  | 
                                                        |
| 580 | - ->expects($this->any())  | 
                                                        |
| 581 | -			->method('userExists') | 
                                                        |
| 582 | - ->with($this->anything())  | 
                                                        |
| 583 | - ->willReturn(false);  | 
                                                        |
| 584 | - $this->userManager  | 
                                                        |
| 585 | - ->expects($this->once())  | 
                                                        |
| 586 | -			->method('createUser') | 
                                                        |
| 587 | - ->with($this->anything(), 'PasswordOfTheNewUser');  | 
                                                        |
| 588 | - $this->logger  | 
                                                        |
| 589 | - ->expects($this->once())  | 
                                                        |
| 590 | -			->method('info') | 
                                                        |
| 591 | -			->with($this->stringStartsWith('Successful addUser call with userid: '), ['app' => 'ocs_api']); | 
                                                        |
| 592 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 593 | - ->disableOriginalConstructor()  | 
                                                        |
| 594 | - ->getMock();  | 
                                                        |
| 595 | - $loggedInUser  | 
                                                        |
| 596 | - ->expects($this->exactly(2))  | 
                                                        |
| 597 | -			->method('getUID') | 
                                                        |
| 598 | -			->willReturn('adminUser'); | 
                                                        |
| 599 | - $this->userSession  | 
                                                        |
| 600 | - ->expects($this->once())  | 
                                                        |
| 601 | -			->method('getUser') | 
                                                        |
| 602 | - ->willReturn($loggedInUser);  | 
                                                        |
| 603 | - $this->groupManager  | 
                                                        |
| 604 | - ->expects($this->once())  | 
                                                        |
| 605 | -			->method('isAdmin') | 
                                                        |
| 606 | -			->with('adminUser') | 
                                                        |
| 607 | - ->willReturn(true);  | 
                                                        |
| 608 | - $this->secureRandom->expects($this->any())  | 
                                                        |
| 609 | -			->method('generate') | 
                                                        |
| 610 | - ->with(10)  | 
                                                        |
| 611 | -			->willReturnCallback(function () { | 
                                                        |
| 612 | - return (string)rand(100000000, 999999999);  | 
                                                        |
| 613 | - });  | 
                                                        |
| 614 | -  | 
                                                        |
| 615 | - $this->assertTrue(key_exists(  | 
                                                        |
| 616 | - 'id',  | 
                                                        |
| 617 | -			$this->api->addUser('', 'PasswordOfTheNewUser')->getData() | 
                                                        |
| 618 | - ));  | 
                                                        |
| 619 | - }  | 
                                                        |
| 620 | -  | 
                                                        |
| 621 | -	public function testAddUserSuccessfulGeneratePassword(): void { | 
                                                        |
| 622 | - $this->userManager  | 
                                                        |
| 623 | - ->expects($this->once())  | 
                                                        |
| 624 | -			->method('userExists') | 
                                                        |
| 625 | -			->with('NewUser') | 
                                                        |
| 626 | - ->willReturn(false);  | 
                                                        |
| 627 | - $newUser = $this->createMock(IUser::class);  | 
                                                        |
| 628 | - $newUser->expects($this->once())  | 
                                                        |
| 629 | -			->method('setEMailAddress'); | 
                                                        |
| 630 | - $this->userManager  | 
                                                        |
| 631 | - ->expects($this->once())  | 
                                                        |
| 632 | -			->method('createUser') | 
                                                        |
| 633 | - ->willReturn($newUser);  | 
                                                        |
| 634 | - $this->logger  | 
                                                        |
| 635 | - ->expects($this->once())  | 
                                                        |
| 636 | -			->method('info') | 
                                                        |
| 637 | -			->with('Successful addUser call with userid: NewUser', ['app' => 'ocs_api']); | 
                                                        |
| 638 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 639 | - ->disableOriginalConstructor()  | 
                                                        |
| 640 | - ->getMock();  | 
                                                        |
| 641 | - $loggedInUser  | 
                                                        |
| 642 | - ->expects($this->exactly(2))  | 
                                                        |
| 643 | -			->method('getUID') | 
                                                        |
| 644 | -			->willReturn('adminUser'); | 
                                                        |
| 645 | - $this->userSession  | 
                                                        |
| 646 | - ->expects($this->once())  | 
                                                        |
| 647 | -			->method('getUser') | 
                                                        |
| 648 | - ->willReturn($loggedInUser);  | 
                                                        |
| 649 | - $this->groupManager  | 
                                                        |
| 650 | - ->expects($this->once())  | 
                                                        |
| 651 | -			->method('isAdmin') | 
                                                        |
| 652 | -			->with('adminUser') | 
                                                        |
| 653 | - ->willReturn(true);  | 
                                                        |
| 654 | - $this->eventDispatcher  | 
                                                        |
| 655 | - ->expects($this->once())  | 
                                                        |
| 656 | -			->method('dispatchTyped') | 
                                                        |
| 657 | - ->with(new GenerateSecurePasswordEvent());  | 
                                                        |
| 658 | -  | 
                                                        |
| 659 | - $this->assertTrue(key_exists(  | 
                                                        |
| 660 | - 'id',  | 
                                                        |
| 661 | -			$this->api->addUser('NewUser', '', '', 'foo@bar')->getData() | 
                                                        |
| 662 | - ));  | 
                                                        |
| 663 | - }  | 
                                                        |
| 664 | -  | 
                                                        |
| 665 | -  | 
                                                        |
| 666 | -	public function testAddUserFailedToGenerateUserID(): void { | 
                                                        |
| 667 | - $this->expectException(OCSException::class);  | 
                                                        |
| 668 | -		$this->expectExceptionMessage('Could not create non-existing user ID'); | 
                                                        |
| 669 | - $this->expectExceptionCode(111);  | 
                                                        |
| 670 | -  | 
                                                        |
| 671 | - $this->config  | 
                                                        |
| 672 | - ->expects($this->any())  | 
                                                        |
| 673 | -			->method('getAppValue') | 
                                                        |
| 674 | -			->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 675 | -				if ($key === 'newUser.generateUserID') { | 
                                                        |
| 676 | - return 'yes';  | 
                                                        |
| 677 | - }  | 
                                                        |
| 678 | - return null;  | 
                                                        |
| 679 | - });  | 
                                                        |
| 680 | - $this->userManager  | 
                                                        |
| 681 | - ->expects($this->any())  | 
                                                        |
| 682 | -			->method('userExists') | 
                                                        |
| 683 | - ->with($this->anything())  | 
                                                        |
| 684 | - ->willReturn(true);  | 
                                                        |
| 685 | - $this->userManager  | 
                                                        |
| 686 | - ->expects($this->never())  | 
                                                        |
| 687 | -			->method('createUser'); | 
                                                        |
| 688 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 689 | - ->disableOriginalConstructor()  | 
                                                        |
| 690 | - ->getMock();  | 
                                                        |
| 691 | - $loggedInUser  | 
                                                        |
| 692 | - ->expects($this->exactly(2))  | 
                                                        |
| 693 | -			->method('getUID') | 
                                                        |
| 694 | -			->willReturn('adminUser'); | 
                                                        |
| 695 | - $this->userSession  | 
                                                        |
| 696 | - ->expects($this->once())  | 
                                                        |
| 697 | -			->method('getUser') | 
                                                        |
| 698 | - ->willReturn($loggedInUser);  | 
                                                        |
| 699 | - $this->groupManager  | 
                                                        |
| 700 | - ->expects($this->once())  | 
                                                        |
| 701 | -			->method('isAdmin') | 
                                                        |
| 702 | -			->with('adminUser') | 
                                                        |
| 703 | - ->willReturn(true);  | 
                                                        |
| 704 | -  | 
                                                        |
| 705 | -		$this->api->addUser('', 'PasswordOfTheNewUser')->getData(); | 
                                                        |
| 706 | - }  | 
                                                        |
| 707 | -  | 
                                                        |
| 708 | -  | 
                                                        |
| 709 | -	public function testAddUserEmailRequired(): void { | 
                                                        |
| 710 | - $this->expectException(OCSException::class);  | 
                                                        |
| 711 | -		$this->expectExceptionMessage('Required email address was not provided'); | 
                                                        |
| 712 | - $this->expectExceptionCode(110);  | 
                                                        |
| 713 | -  | 
                                                        |
| 714 | - $this->config  | 
                                                        |
| 715 | - ->expects($this->any())  | 
                                                        |
| 716 | -			->method('getAppValue') | 
                                                        |
| 717 | -			->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 718 | -				if ($key === 'newUser.requireEmail') { | 
                                                        |
| 719 | - return 'yes';  | 
                                                        |
| 720 | - }  | 
                                                        |
| 721 | - return null;  | 
                                                        |
| 722 | - });  | 
                                                        |
| 723 | - $this->userManager  | 
                                                        |
| 724 | - ->expects($this->once())  | 
                                                        |
| 725 | -			->method('userExists') | 
                                                        |
| 726 | -			->with('NewUser') | 
                                                        |
| 727 | - ->willReturn(false);  | 
                                                        |
| 728 | - $this->userManager  | 
                                                        |
| 729 | - ->expects($this->never())  | 
                                                        |
| 730 | -			->method('createUser'); | 
                                                        |
| 731 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 732 | - ->disableOriginalConstructor()  | 
                                                        |
| 733 | - ->getMock();  | 
                                                        |
| 734 | - $loggedInUser  | 
                                                        |
| 735 | - ->expects($this->exactly(2))  | 
                                                        |
| 736 | -			->method('getUID') | 
                                                        |
| 737 | -			->willReturn('adminUser'); | 
                                                        |
| 738 | - $this->userSession  | 
                                                        |
| 739 | - ->expects($this->once())  | 
                                                        |
| 740 | -			->method('getUser') | 
                                                        |
| 741 | - ->willReturn($loggedInUser);  | 
                                                        |
| 742 | - $this->groupManager  | 
                                                        |
| 743 | - ->expects($this->once())  | 
                                                        |
| 744 | -			->method('isAdmin') | 
                                                        |
| 745 | -			->with('adminUser') | 
                                                        |
| 746 | - ->willReturn(true);  | 
                                                        |
| 747 | -  | 
                                                        |
| 748 | - $this->assertTrue(key_exists(  | 
                                                        |
| 749 | - 'id',  | 
                                                        |
| 750 | -			$this->api->addUser('NewUser', 'PasswordOfTheNewUser')->getData() | 
                                                        |
| 751 | - ));  | 
                                                        |
| 752 | - }  | 
                                                        |
| 753 | -  | 
                                                        |
| 754 | -	public function testAddUserExistingGroup(): void { | 
                                                        |
| 755 | - $this->userManager  | 
                                                        |
| 756 | - ->expects($this->once())  | 
                                                        |
| 757 | -			->method('userExists') | 
                                                        |
| 758 | -			->with('NewUser') | 
                                                        |
| 759 | - ->willReturn(false);  | 
                                                        |
| 760 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 761 | - ->disableOriginalConstructor()  | 
                                                        |
| 762 | - ->getMock();  | 
                                                        |
| 763 | - $loggedInUser  | 
                                                        |
| 764 | - ->expects($this->exactly(2))  | 
                                                        |
| 765 | -			->method('getUID') | 
                                                        |
| 766 | -			->willReturn('adminUser'); | 
                                                        |
| 767 | - $this->userSession  | 
                                                        |
| 768 | - ->expects($this->once())  | 
                                                        |
| 769 | -			->method('getUser') | 
                                                        |
| 770 | - ->willReturn($loggedInUser);  | 
                                                        |
| 771 | - $this->groupManager  | 
                                                        |
| 772 | - ->expects($this->once())  | 
                                                        |
| 773 | -			->method('isAdmin') | 
                                                        |
| 774 | -			->with('adminUser') | 
                                                        |
| 775 | - ->willReturn(true);  | 
                                                        |
| 776 | - $this->groupManager  | 
                                                        |
| 777 | - ->expects($this->once())  | 
                                                        |
| 778 | -			->method('groupExists') | 
                                                        |
| 779 | -			->with('ExistingGroup') | 
                                                        |
| 780 | - ->willReturn(true);  | 
                                                        |
| 781 | - $user = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 782 | - ->disableOriginalConstructor()  | 
                                                        |
| 783 | - ->getMock();  | 
                                                        |
| 784 | - $this->userManager  | 
                                                        |
| 785 | - ->expects($this->once())  | 
                                                        |
| 786 | -			->method('createUser') | 
                                                        |
| 787 | -			->with('NewUser', 'PasswordOfTheNewUser') | 
                                                        |
| 788 | - ->willReturn($user);  | 
                                                        |
| 789 | -		$group = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 790 | - ->disableOriginalConstructor()  | 
                                                        |
| 791 | - ->getMock();  | 
                                                        |
| 792 | - $group  | 
                                                        |
| 793 | - ->expects($this->once())  | 
                                                        |
| 794 | -			->method('addUser') | 
                                                        |
| 795 | - ->with($user);  | 
                                                        |
| 796 | - $this->groupManager  | 
                                                        |
| 797 | - ->expects($this->once())  | 
                                                        |
| 798 | -			->method('get') | 
                                                        |
| 799 | -			->with('ExistingGroup') | 
                                                        |
| 800 | - ->willReturn($group);  | 
                                                        |
| 801 | - $this->logger  | 
                                                        |
| 802 | - ->expects($this->exactly(2))  | 
                                                        |
| 803 | -			->method('info') | 
                                                        |
| 804 | - ->withConsecutive(  | 
                                                        |
| 805 | - ['Successful addUser call with userid: NewUser', ['app' => 'ocs_api']],  | 
                                                        |
| 806 | - ['Added userid NewUser to group ExistingGroup', ['app' => 'ocs_api']]  | 
                                                        |
| 807 | - );  | 
                                                        |
| 808 | -  | 
                                                        |
| 809 | - $this->assertTrue(key_exists(  | 
                                                        |
| 810 | - 'id',  | 
                                                        |
| 811 | -			$this->api->addUser('NewUser', 'PasswordOfTheNewUser', '', '', ['ExistingGroup'])->getData() | 
                                                        |
| 812 | - ));  | 
                                                        |
| 813 | - }  | 
                                                        |
| 814 | -  | 
                                                        |
| 815 | -  | 
                                                        |
| 816 | -	public function testAddUserUnsuccessful(): void { | 
                                                        |
| 817 | - $this->expectException(OCSException::class);  | 
                                                        |
| 818 | -		$this->expectExceptionMessage('Bad request'); | 
                                                        |
| 819 | - $this->expectExceptionCode(101);  | 
                                                        |
| 820 | -  | 
                                                        |
| 821 | -		$exception = new Exception('User backend not found.'); | 
                                                        |
| 822 | - $this->userManager  | 
                                                        |
| 823 | - ->expects($this->once())  | 
                                                        |
| 824 | -			->method('userExists') | 
                                                        |
| 825 | -			->with('NewUser') | 
                                                        |
| 826 | - ->willReturn(false);  | 
                                                        |
| 827 | - $this->userManager  | 
                                                        |
| 828 | - ->expects($this->once())  | 
                                                        |
| 829 | -			->method('createUser') | 
                                                        |
| 830 | -			->with('NewUser', 'PasswordOfTheNewUser') | 
                                                        |
| 831 | - ->will($this->throwException($exception));  | 
                                                        |
| 832 | - $this->logger  | 
                                                        |
| 833 | - ->expects($this->once())  | 
                                                        |
| 834 | -			->method('error') | 
                                                        |
| 835 | - ->with(  | 
                                                        |
| 836 | - 'Failed addUser attempt with exception.',  | 
                                                        |
| 837 | - [  | 
                                                        |
| 838 | - 'app' => 'ocs_api',  | 
                                                        |
| 839 | - 'exception' => $exception  | 
                                                        |
| 840 | - ]  | 
                                                        |
| 841 | - );  | 
                                                        |
| 842 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 843 | - ->disableOriginalConstructor()  | 
                                                        |
| 844 | - ->getMock();  | 
                                                        |
| 845 | - $loggedInUser  | 
                                                        |
| 846 | - ->expects($this->exactly(2))  | 
                                                        |
| 847 | -			->method('getUID') | 
                                                        |
| 848 | -			->willReturn('adminUser'); | 
                                                        |
| 849 | - $this->userSession  | 
                                                        |
| 850 | - ->expects($this->once())  | 
                                                        |
| 851 | -			->method('getUser') | 
                                                        |
| 852 | - ->willReturn($loggedInUser);  | 
                                                        |
| 853 | - $this->groupManager  | 
                                                        |
| 854 | - ->expects($this->once())  | 
                                                        |
| 855 | -			->method('isAdmin') | 
                                                        |
| 856 | -			->with('adminUser') | 
                                                        |
| 857 | - ->willReturn(true);  | 
                                                        |
| 858 | -  | 
                                                        |
| 859 | -		$this->api->addUser('NewUser', 'PasswordOfTheNewUser'); | 
                                                        |
| 860 | - }  | 
                                                        |
| 861 | -  | 
                                                        |
| 862 | -  | 
                                                        |
| 863 | -	public function testAddUserAsSubAdminNoGroup(): void { | 
                                                        |
| 864 | - $this->expectException(OCSException::class);  | 
                                                        |
| 865 | -		$this->expectExceptionMessage('No group specified (required for sub-admins)'); | 
                                                        |
| 866 | - $this->expectExceptionCode(106);  | 
                                                        |
| 867 | -  | 
                                                        |
| 868 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 869 | - ->disableOriginalConstructor()  | 
                                                        |
| 870 | - ->getMock();  | 
                                                        |
| 871 | - $loggedInUser  | 
                                                        |
| 872 | - ->expects($this->exactly(2))  | 
                                                        |
| 873 | -			->method('getUID') | 
                                                        |
| 874 | -			->willReturn('regularUser'); | 
                                                        |
| 875 | - $this->userSession  | 
                                                        |
| 876 | - ->expects($this->once())  | 
                                                        |
| 877 | -			->method('getUser') | 
                                                        |
| 878 | - ->willReturn($loggedInUser);  | 
                                                        |
| 879 | - $this->groupManager  | 
                                                        |
| 880 | - ->expects($this->once())  | 
                                                        |
| 881 | -			->method('isAdmin') | 
                                                        |
| 882 | -			->with('regularUser') | 
                                                        |
| 883 | - ->willReturn(false);  | 
                                                        |
| 884 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 885 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 886 | - $this->groupManager  | 
                                                        |
| 887 | - ->expects($this->once())  | 
                                                        |
| 888 | -			->method('getSubAdmin') | 
                                                        |
| 889 | - ->with()  | 
                                                        |
| 890 | - ->willReturn($subAdminManager);  | 
                                                        |
| 891 | -  | 
                                                        |
| 892 | -		$this->api->addUser('NewUser', 'PasswordOfTheNewUser', '', '', []); | 
                                                        |
| 893 | - }  | 
                                                        |
| 894 | -  | 
                                                        |
| 895 | -  | 
                                                        |
| 896 | -	public function testAddUserAsSubAdminValidGroupNotSubAdmin(): void { | 
                                                        |
| 897 | - $this->expectException(OCSException::class);  | 
                                                        |
| 898 | -		$this->expectExceptionMessage('Insufficient privileges for group ExistingGroup'); | 
                                                        |
| 899 | - $this->expectExceptionCode(105);  | 
                                                        |
| 900 | -  | 
                                                        |
| 901 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 902 | - ->disableOriginalConstructor()  | 
                                                        |
| 903 | - ->getMock();  | 
                                                        |
| 904 | - $loggedInUser  | 
                                                        |
| 905 | - ->expects($this->exactly(2))  | 
                                                        |
| 906 | -			->method('getUID') | 
                                                        |
| 907 | -			->willReturn('regularUser'); | 
                                                        |
| 908 | - $this->userSession  | 
                                                        |
| 909 | - ->expects($this->once())  | 
                                                        |
| 910 | -			->method('getUser') | 
                                                        |
| 911 | - ->willReturn($loggedInUser);  | 
                                                        |
| 912 | - $this->groupManager  | 
                                                        |
| 913 | - ->expects($this->once())  | 
                                                        |
| 914 | -			->method('isAdmin') | 
                                                        |
| 915 | -			->with('regularUser') | 
                                                        |
| 916 | - ->willReturn(false);  | 
                                                        |
| 917 | -		$existingGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 918 | - $this->groupManager  | 
                                                        |
| 919 | - ->expects($this->once())  | 
                                                        |
| 920 | -			->method('get') | 
                                                        |
| 921 | -			->with('ExistingGroup') | 
                                                        |
| 922 | - ->willReturn($existingGroup);  | 
                                                        |
| 923 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 924 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 925 | - $subAdminManager  | 
                                                        |
| 926 | - ->expects($this->once())  | 
                                                        |
| 927 | -			->method('isSubAdminOfGroup') | 
                                                        |
| 928 | - ->with($loggedInUser, $existingGroup)  | 
                                                        |
| 929 | - ->willReturn(false);  | 
                                                        |
| 930 | - $this->groupManager  | 
                                                        |
| 931 | - ->expects($this->once())  | 
                                                        |
| 932 | -			->method('getSubAdmin') | 
                                                        |
| 933 | - ->with()  | 
                                                        |
| 934 | - ->willReturn($subAdminManager);  | 
                                                        |
| 935 | - $this->groupManager  | 
                                                        |
| 936 | - ->expects($this->once())  | 
                                                        |
| 937 | -			->method('groupExists') | 
                                                        |
| 938 | -			->with('ExistingGroup') | 
                                                        |
| 939 | - ->willReturn(true);  | 
                                                        |
| 940 | -  | 
                                                        |
| 941 | -		$this->api->addUser('NewUser', 'PasswordOfTheNewUser', '', '', ['ExistingGroup'])->getData(); | 
                                                        |
| 942 | - }  | 
                                                        |
| 943 | -  | 
                                                        |
| 944 | -	public function testAddUserAsSubAdminExistingGroups(): void { | 
                                                        |
| 945 | - $this->userManager  | 
                                                        |
| 946 | - ->expects($this->once())  | 
                                                        |
| 947 | -			->method('userExists') | 
                                                        |
| 948 | -			->with('NewUser') | 
                                                        |
| 949 | - ->willReturn(false);  | 
                                                        |
| 950 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 951 | - ->disableOriginalConstructor()  | 
                                                        |
| 952 | - ->getMock();  | 
                                                        |
| 953 | - $loggedInUser  | 
                                                        |
| 954 | - ->expects($this->exactly(2))  | 
                                                        |
| 955 | -			->method('getUID') | 
                                                        |
| 956 | -			->willReturn('subAdminUser'); | 
                                                        |
| 957 | - $this->userSession  | 
                                                        |
| 958 | - ->expects($this->once())  | 
                                                        |
| 959 | -			->method('getUser') | 
                                                        |
| 960 | - ->willReturn($loggedInUser);  | 
                                                        |
| 961 | - $this->groupManager  | 
                                                        |
| 962 | - ->expects($this->once())  | 
                                                        |
| 963 | -			->method('isAdmin') | 
                                                        |
| 964 | -			->with('subAdminUser') | 
                                                        |
| 965 | - ->willReturn(false);  | 
                                                        |
| 966 | - $this->groupManager  | 
                                                        |
| 967 | - ->expects($this->exactly(2))  | 
                                                        |
| 968 | -			->method('groupExists') | 
                                                        |
| 969 | - ->withConsecutive(  | 
                                                        |
| 970 | - ['ExistingGroup1'],  | 
                                                        |
| 971 | - ['ExistingGroup2']  | 
                                                        |
| 972 | - )  | 
                                                        |
| 973 | - ->willReturn(true);  | 
                                                        |
| 974 | - $user = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 975 | - ->disableOriginalConstructor()  | 
                                                        |
| 976 | - ->getMock();  | 
                                                        |
| 977 | - $this->userManager  | 
                                                        |
| 978 | - ->expects($this->once())  | 
                                                        |
| 979 | -			->method('createUser') | 
                                                        |
| 980 | -			->with('NewUser', 'PasswordOfTheNewUser') | 
                                                        |
| 981 | - ->willReturn($user);  | 
                                                        |
| 982 | -		$existingGroup1 = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 983 | - ->disableOriginalConstructor()  | 
                                                        |
| 984 | - ->getMock();  | 
                                                        |
| 985 | -		$existingGroup2 = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 986 | - ->disableOriginalConstructor()  | 
                                                        |
| 987 | - ->getMock();  | 
                                                        |
| 988 | - $existingGroup1  | 
                                                        |
| 989 | - ->expects($this->once())  | 
                                                        |
| 990 | -			->method('addUser') | 
                                                        |
| 991 | - ->with($user);  | 
                                                        |
| 992 | - $existingGroup2  | 
                                                        |
| 993 | - ->expects($this->once())  | 
                                                        |
| 994 | -			->method('addUser') | 
                                                        |
| 995 | - ->with($user);  | 
                                                        |
| 996 | - $this->groupManager  | 
                                                        |
| 997 | - ->expects($this->exactly(4))  | 
                                                        |
| 998 | -			->method('get') | 
                                                        |
| 999 | - ->withConsecutive(  | 
                                                        |
| 1000 | - ['ExistingGroup1'],  | 
                                                        |
| 1001 | - ['ExistingGroup2'],  | 
                                                        |
| 1002 | - ['ExistingGroup1'],  | 
                                                        |
| 1003 | - ['ExistingGroup2']  | 
                                                        |
| 1004 | - )  | 
                                                        |
| 1005 | - ->willReturnMap([  | 
                                                        |
| 1006 | - ['ExistingGroup1', $existingGroup1],  | 
                                                        |
| 1007 | - ['ExistingGroup2', $existingGroup2]  | 
                                                        |
| 1008 | - ]);  | 
                                                        |
| 1009 | - $this->logger  | 
                                                        |
| 1010 | - ->expects($this->exactly(3))  | 
                                                        |
| 1011 | -			->method('info') | 
                                                        |
| 1012 | - ->withConsecutive(  | 
                                                        |
| 1013 | - ['Successful addUser call with userid: NewUser', ['app' => 'ocs_api']],  | 
                                                        |
| 1014 | - ['Added userid NewUser to group ExistingGroup1', ['app' => 'ocs_api']],  | 
                                                        |
| 1015 | - ['Added userid NewUser to group ExistingGroup2', ['app' => 'ocs_api']]  | 
                                                        |
| 1016 | - );  | 
                                                        |
| 1017 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 1018 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 1019 | - $this->groupManager  | 
                                                        |
| 1020 | - ->expects($this->once())  | 
                                                        |
| 1021 | -			->method('getSubAdmin') | 
                                                        |
| 1022 | - ->willReturn($subAdminManager);  | 
                                                        |
| 1023 | - $subAdminManager  | 
                                                        |
| 1024 | - ->expects($this->exactly(2))  | 
                                                        |
| 1025 | -			->method('isSubAdminOfGroup') | 
                                                        |
| 1026 | - ->withConsecutive(  | 
                                                        |
| 1027 | - [$loggedInUser, $existingGroup1],  | 
                                                        |
| 1028 | - [$loggedInUser, $existingGroup2]  | 
                                                        |
| 1029 | - )  | 
                                                        |
| 1030 | - ->willReturn(true);  | 
                                                        |
| 1031 | -  | 
                                                        |
| 1032 | - $this->assertTrue(key_exists(  | 
                                                        |
| 1033 | - 'id',  | 
                                                        |
| 1034 | -			$this->api->addUser('NewUser', 'PasswordOfTheNewUser', '', '', ['ExistingGroup1', 'ExistingGroup2'])->getData() | 
                                                        |
| 1035 | - ));  | 
                                                        |
| 1036 | - }  | 
                                                        |
| 1037 | -  | 
                                                        |
| 1038 | -  | 
                                                        |
| 1039 | -	public function testGetUserTargetDoesNotExist(): void { | 
                                                        |
| 1040 | - $this->expectException(OCSException::class);  | 
                                                        |
| 1041 | -		$this->expectExceptionMessage('User does not exist'); | 
                                                        |
| 1042 | - $this->expectExceptionCode(404);  | 
                                                        |
| 1043 | -  | 
                                                        |
| 1044 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1045 | - ->disableOriginalConstructor()  | 
                                                        |
| 1046 | - ->getMock();  | 
                                                        |
| 1047 | - $this->userSession  | 
                                                        |
| 1048 | -			->method('getUser') | 
                                                        |
| 1049 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1050 | - $this->userManager  | 
                                                        |
| 1051 | - ->expects($this->once())  | 
                                                        |
| 1052 | -			->method('get') | 
                                                        |
| 1053 | -			->with('UserToGet') | 
                                                        |
| 1054 | - ->willReturn(null);  | 
                                                        |
| 1055 | -  | 
                                                        |
| 1056 | -		$this->api->getUser('UserToGet'); | 
                                                        |
| 1057 | - }  | 
                                                        |
| 1058 | -  | 
                                                        |
| 1059 | -	public function testGetUserDataAsAdmin(): void { | 
                                                        |
| 1060 | - $group0 = $this->createMock(IGroup::class);  | 
                                                        |
| 1061 | - $group1 = $this->createMock(IGroup::class);  | 
                                                        |
| 1062 | - $group2 = $this->createMock(IGroup::class);  | 
                                                        |
| 1063 | - $group3 = $this->createMock(IGroup::class);  | 
                                                        |
| 1064 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1065 | - ->disableOriginalConstructor()  | 
                                                        |
| 1066 | - ->getMock();  | 
                                                        |
| 1067 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 1068 | - ->disableOriginalConstructor()  | 
                                                        |
| 1069 | - ->getMock();  | 
                                                        |
| 1070 | - $loggedInUser  | 
                                                        |
| 1071 | -			->method('getUID') | 
                                                        |
| 1072 | -			->willReturn('admin'); | 
                                                        |
| 1073 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1074 | - ->disableOriginalConstructor()  | 
                                                        |
| 1075 | - ->getMock();  | 
                                                        |
| 1076 | - $targetUser->expects($this->once())  | 
                                                        |
| 1077 | -			->method('getSystemEMailAddress') | 
                                                        |
| 1078 | -			->willReturn('[email protected]'); | 
                                                        |
| 1079 | - $this->userSession  | 
                                                        |
| 1080 | -			->method('getUser') | 
                                                        |
| 1081 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1082 | - $this->userManager  | 
                                                        |
| 1083 | -			->method('get') | 
                                                        |
| 1084 | -			->with('UID') | 
                                                        |
| 1085 | - ->willReturn($targetUser);  | 
                                                        |
| 1086 | - $this->groupManager  | 
                                                        |
| 1087 | -			->method('isAdmin') | 
                                                        |
| 1088 | -			->with('admin') | 
                                                        |
| 1089 | - ->willReturn(true);  | 
                                                        |
| 1090 | - $this->groupManager  | 
                                                        |
| 1091 | - ->expects($this->any())  | 
                                                        |
| 1092 | -			->method('getUserGroups') | 
                                                        |
| 1093 | - ->willReturn([$group0, $group1, $group2]);  | 
                                                        |
| 1094 | - $this->groupManager  | 
                                                        |
| 1095 | - ->expects($this->once())  | 
                                                        |
| 1096 | -			->method('getSubAdmin') | 
                                                        |
| 1097 | - ->willReturn($subAdminManager);  | 
                                                        |
| 1098 | - $subAdminManager  | 
                                                        |
| 1099 | - ->expects($this->once())  | 
                                                        |
| 1100 | -			->method('getSubAdminsGroups') | 
                                                        |
| 1101 | - ->willReturn([$group3]);  | 
                                                        |
| 1102 | - $group0->expects($this->once())  | 
                                                        |
| 1103 | -			->method('getGID') | 
                                                        |
| 1104 | -			->willReturn('group0'); | 
                                                        |
| 1105 | - $group1->expects($this->once())  | 
                                                        |
| 1106 | -			->method('getGID') | 
                                                        |
| 1107 | -			->willReturn('group1'); | 
                                                        |
| 1108 | - $group2->expects($this->once())  | 
                                                        |
| 1109 | -			->method('getGID') | 
                                                        |
| 1110 | -			->willReturn('group2'); | 
                                                        |
| 1111 | - $group3->expects($this->once())  | 
                                                        |
| 1112 | -			->method('getGID') | 
                                                        |
| 1113 | -			->willReturn('group3'); | 
                                                        |
| 1114 | -  | 
                                                        |
| 1115 | - $this->mockAccount($targetUser, [  | 
                                                        |
| 1116 | - IAccountManager::PROPERTY_ADDRESS => ['value' => 'address'],  | 
                                                        |
| 1117 | - IAccountManager::PROPERTY_PHONE => ['value' => 'phone'],  | 
                                                        |
| 1118 | - IAccountManager::PROPERTY_TWITTER => ['value' => 'twitter'],  | 
                                                        |
| 1119 | - IAccountManager::PROPERTY_FEDIVERSE => ['value' => 'fediverse'],  | 
                                                        |
| 1120 | - IAccountManager::PROPERTY_WEBSITE => ['value' => 'website'],  | 
                                                        |
| 1121 | - IAccountManager::PROPERTY_ORGANISATION => ['value' => 'organisation'],  | 
                                                        |
| 1122 | - IAccountManager::PROPERTY_ROLE => ['value' => 'role'],  | 
                                                        |
| 1123 | - IAccountManager::PROPERTY_HEADLINE => ['value' => 'headline'],  | 
                                                        |
| 1124 | - IAccountManager::PROPERTY_BIOGRAPHY => ['value' => 'biography'],  | 
                                                        |
| 1125 | - IAccountManager::PROPERTY_PROFILE_ENABLED => ['value' => '1'],  | 
                                                        |
| 1126 | - IAccountManager::PROPERTY_PRONOUNS => ['value' => 'they/them'],  | 
                                                        |
| 1127 | - ]);  | 
                                                        |
| 1128 | - $this->config  | 
                                                        |
| 1129 | -			->method('getUserValue') | 
                                                        |
| 1130 | - ->willReturnMap([  | 
                                                        |
| 1131 | - ['UID', 'core', 'enabled', 'true', 'true'],  | 
                                                        |
| 1132 | - ]);  | 
                                                        |
| 1133 | - $this->api  | 
                                                        |
| 1134 | - ->expects($this->once())  | 
                                                        |
| 1135 | -			->method('fillStorageInfo') | 
                                                        |
| 1136 | - ->with($targetUser)  | 
                                                        |
| 1137 | - ->willReturn(['DummyValue']);  | 
                                                        |
| 1138 | -  | 
                                                        |
| 1139 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1140 | - $backend->expects($this->any())  | 
                                                        |
| 1141 | -			->method('implementsActions') | 
                                                        |
| 1142 | - ->willReturn(true);  | 
                                                        |
| 1143 | -  | 
                                                        |
| 1144 | - $targetUser  | 
                                                        |
| 1145 | - ->expects($this->once())  | 
                                                        |
| 1146 | -			->method('getDisplayName') | 
                                                        |
| 1147 | -			->willReturn('Demo User'); | 
                                                        |
| 1148 | - $targetUser  | 
                                                        |
| 1149 | - ->expects($this->once())  | 
                                                        |
| 1150 | -			->method('getHome') | 
                                                        |
| 1151 | -			->willReturn('/var/www/newtcloud/data/UID'); | 
                                                        |
| 1152 | - $targetUser  | 
                                                        |
| 1153 | - ->expects($this->exactly(2))  | 
                                                        |
| 1154 | -			->method('getLastLogin') | 
                                                        |
| 1155 | - ->willReturn(1521191471);  | 
                                                        |
| 1156 | - $targetUser  | 
                                                        |
| 1157 | - ->expects($this->once())  | 
                                                        |
| 1158 | -			->method('getFirstLogin') | 
                                                        |
| 1159 | - ->willReturn(1511191471);  | 
                                                        |
| 1160 | - $targetUser  | 
                                                        |
| 1161 | - ->expects($this->once())  | 
                                                        |
| 1162 | -			->method('getBackendClassName') | 
                                                        |
| 1163 | -			->willReturn('Database'); | 
                                                        |
| 1164 | - $targetUser  | 
                                                        |
| 1165 | - ->expects($this->once())  | 
                                                        |
| 1166 | -			->method('getBackend') | 
                                                        |
| 1167 | - ->willReturn($backend);  | 
                                                        |
| 1168 | - $targetUser  | 
                                                        |
| 1169 | -			->method('getUID') | 
                                                        |
| 1170 | -			->willReturn('UID'); | 
                                                        |
| 1171 | -  | 
                                                        |
| 1172 | - $this->l10nFactory  | 
                                                        |
| 1173 | - ->expects($this->once())  | 
                                                        |
| 1174 | -			->method('getUserLanguage') | 
                                                        |
| 1175 | - ->with($targetUser)  | 
                                                        |
| 1176 | -			->willReturn('de'); | 
                                                        |
| 1177 | -  | 
                                                        |
| 1178 | - $expected = [  | 
                                                        |
| 1179 | - 'id' => 'UID',  | 
                                                        |
| 1180 | - 'enabled' => true,  | 
                                                        |
| 1181 | - 'storageLocation' => '/var/www/newtcloud/data/UID',  | 
                                                        |
| 1182 | - 'firstLoginTimestamp' => 1511191471,  | 
                                                        |
| 1183 | - 'lastLoginTimestamp' => 1521191471,  | 
                                                        |
| 1184 | - 'lastLogin' => 1521191471000,  | 
                                                        |
| 1185 | - 'backend' => 'Database',  | 
                                                        |
| 1186 | - 'subadmin' => ['group3'],  | 
                                                        |
| 1187 | - 'quota' => ['DummyValue'],  | 
                                                        |
| 1188 | - 'email' => '[email protected]',  | 
                                                        |
| 1189 | - 'displayname' => 'Demo User',  | 
                                                        |
| 1190 | - 'display-name' => 'Demo User',  | 
                                                        |
| 1191 | - 'phone' => 'phone',  | 
                                                        |
| 1192 | - 'address' => 'address',  | 
                                                        |
| 1193 | - 'website' => 'website',  | 
                                                        |
| 1194 | - 'twitter' => 'twitter',  | 
                                                        |
| 1195 | - 'fediverse' => 'fediverse',  | 
                                                        |
| 1196 | - 'groups' => ['group0', 'group1', 'group2'],  | 
                                                        |
| 1197 | - 'language' => 'de',  | 
                                                        |
| 1198 | - 'locale' => null,  | 
                                                        |
| 1199 | - 'backendCapabilities' => [  | 
                                                        |
| 1200 | - 'setDisplayName' => true,  | 
                                                        |
| 1201 | - 'setPassword' => true,  | 
                                                        |
| 1202 | - ],  | 
                                                        |
| 1203 | - 'additional_mail' => [],  | 
                                                        |
| 1204 | - 'organisation' => 'organisation',  | 
                                                        |
| 1205 | - 'role' => 'role',  | 
                                                        |
| 1206 | - 'headline' => 'headline',  | 
                                                        |
| 1207 | - 'biography' => 'biography',  | 
                                                        |
| 1208 | - 'profile_enabled' => '1',  | 
                                                        |
| 1209 | - 'notify_email' => null,  | 
                                                        |
| 1210 | - 'manager' => '',  | 
                                                        |
| 1211 | - 'pronouns' => 'they/them',  | 
                                                        |
| 1212 | - ];  | 
                                                        |
| 1213 | - $this->assertEquals($expected, $this->invokePrivate($this->api, 'getUserData', ['UID']));  | 
                                                        |
| 1214 | - }  | 
                                                        |
| 1215 | -  | 
                                                        |
| 1216 | -	public function testGetUserDataAsSubAdminAndUserIsAccessible(): void { | 
                                                        |
| 1217 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1218 | - ->disableOriginalConstructor()  | 
                                                        |
| 1219 | - ->getMock();  | 
                                                        |
| 1220 | - $loggedInUser  | 
                                                        |
| 1221 | -			->method('getUID') | 
                                                        |
| 1222 | -			->willReturn('subadmin'); | 
                                                        |
| 1223 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1224 | - ->disableOriginalConstructor()  | 
                                                        |
| 1225 | - ->getMock();  | 
                                                        |
| 1226 | - $targetUser  | 
                                                        |
| 1227 | - ->expects($this->once())  | 
                                                        |
| 1228 | -			->method('getSystemEMailAddress') | 
                                                        |
| 1229 | -			->willReturn('[email protected]'); | 
                                                        |
| 1230 | - $this->userSession  | 
                                                        |
| 1231 | -			->method('getUser') | 
                                                        |
| 1232 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1233 | - $this->userManager  | 
                                                        |
| 1234 | -			->method('get') | 
                                                        |
| 1235 | -			->with('UID') | 
                                                        |
| 1236 | - ->willReturn($targetUser);  | 
                                                        |
| 1237 | - $this->groupManager  | 
                                                        |
| 1238 | -			->method('isAdmin') | 
                                                        |
| 1239 | -			->with('subadmin') | 
                                                        |
| 1240 | - ->willReturn(false);  | 
                                                        |
| 1241 | - $this->groupManager  | 
                                                        |
| 1242 | - ->expects($this->any())  | 
                                                        |
| 1243 | -			->method('getUserGroups') | 
                                                        |
| 1244 | - ->willReturn([]);  | 
                                                        |
| 1245 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 1246 | - ->disableOriginalConstructor()  | 
                                                        |
| 1247 | - ->getMock();  | 
                                                        |
| 1248 | - $subAdminManager  | 
                                                        |
| 1249 | - ->expects($this->once())  | 
                                                        |
| 1250 | -			->method('isUserAccessible') | 
                                                        |
| 1251 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 1252 | - ->willReturn(true);  | 
                                                        |
| 1253 | - $subAdminManager  | 
                                                        |
| 1254 | - ->expects($this->once())  | 
                                                        |
| 1255 | -			->method('getSubAdminsGroups') | 
                                                        |
| 1256 | - ->willReturn([]);  | 
                                                        |
| 1257 | - $this->groupManager  | 
                                                        |
| 1258 | - ->expects($this->exactly(2))  | 
                                                        |
| 1259 | -			->method('getSubAdmin') | 
                                                        |
| 1260 | - ->willReturn($subAdminManager);  | 
                                                        |
| 1261 | - $this->config  | 
                                                        |
| 1262 | -			->method('getUserValue') | 
                                                        |
| 1263 | - ->willReturnMap([  | 
                                                        |
| 1264 | - ['UID', 'core', 'enabled', 'true', 'true'],  | 
                                                        |
| 1265 | - ]);  | 
                                                        |
| 1266 | - $this->api  | 
                                                        |
| 1267 | - ->expects($this->once())  | 
                                                        |
| 1268 | -			->method('fillStorageInfo') | 
                                                        |
| 1269 | - ->with($targetUser)  | 
                                                        |
| 1270 | - ->willReturn(['DummyValue']);  | 
                                                        |
| 1271 | -  | 
                                                        |
| 1272 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1273 | - $backend->expects($this->any())  | 
                                                        |
| 1274 | -			->method('implementsActions') | 
                                                        |
| 1275 | - ->willReturn(true);  | 
                                                        |
| 1276 | -  | 
                                                        |
| 1277 | - $targetUser  | 
                                                        |
| 1278 | - ->expects($this->once())  | 
                                                        |
| 1279 | -			->method('getDisplayName') | 
                                                        |
| 1280 | -			->willReturn('Demo User'); | 
                                                        |
| 1281 | - $targetUser  | 
                                                        |
| 1282 | - ->expects($this->never())  | 
                                                        |
| 1283 | -			->method('getHome'); | 
                                                        |
| 1284 | - $targetUser  | 
                                                        |
| 1285 | - ->expects($this->exactly(2))  | 
                                                        |
| 1286 | -			->method('getLastLogin') | 
                                                        |
| 1287 | - ->willReturn(1521191471);  | 
                                                        |
| 1288 | - $targetUser  | 
                                                        |
| 1289 | - ->expects($this->once())  | 
                                                        |
| 1290 | -			->method('getFirstLogin') | 
                                                        |
| 1291 | - ->willReturn(1511191471);  | 
                                                        |
| 1292 | - $targetUser  | 
                                                        |
| 1293 | - ->expects($this->once())  | 
                                                        |
| 1294 | -			->method('getBackendClassName') | 
                                                        |
| 1295 | -			->willReturn('Database'); | 
                                                        |
| 1296 | - $targetUser  | 
                                                        |
| 1297 | - ->expects($this->once())  | 
                                                        |
| 1298 | -			->method('getBackend') | 
                                                        |
| 1299 | - ->willReturn($backend);  | 
                                                        |
| 1300 | - $targetUser  | 
                                                        |
| 1301 | -			->method('getUID') | 
                                                        |
| 1302 | -			->willReturn('UID'); | 
                                                        |
| 1303 | -  | 
                                                        |
| 1304 | - $this->mockAccount($targetUser, [  | 
                                                        |
| 1305 | - IAccountManager::PROPERTY_ADDRESS => ['value' => 'address'],  | 
                                                        |
| 1306 | - IAccountManager::PROPERTY_PHONE => ['value' => 'phone'],  | 
                                                        |
| 1307 | - IAccountManager::PROPERTY_TWITTER => ['value' => 'twitter'],  | 
                                                        |
| 1308 | - IAccountManager::PROPERTY_FEDIVERSE => ['value' => 'fediverse'],  | 
                                                        |
| 1309 | - IAccountManager::PROPERTY_WEBSITE => ['value' => 'website'],  | 
                                                        |
| 1310 | - IAccountManager::PROPERTY_ORGANISATION => ['value' => 'organisation'],  | 
                                                        |
| 1311 | - IAccountManager::PROPERTY_ROLE => ['value' => 'role'],  | 
                                                        |
| 1312 | - IAccountManager::PROPERTY_HEADLINE => ['value' => 'headline'],  | 
                                                        |
| 1313 | - IAccountManager::PROPERTY_BIOGRAPHY => ['value' => 'biography'],  | 
                                                        |
| 1314 | - IAccountManager::PROPERTY_PROFILE_ENABLED => ['value' => '1'],  | 
                                                        |
| 1315 | - IAccountManager::PROPERTY_PRONOUNS => ['value' => 'they/them'],  | 
                                                        |
| 1316 | - ]);  | 
                                                        |
| 1317 | -  | 
                                                        |
| 1318 | - $this->l10nFactory  | 
                                                        |
| 1319 | - ->expects($this->once())  | 
                                                        |
| 1320 | -			->method('getUserLanguage') | 
                                                        |
| 1321 | - ->with($targetUser)  | 
                                                        |
| 1322 | -			->willReturn('da'); | 
                                                        |
| 1323 | -  | 
                                                        |
| 1324 | - $expected = [  | 
                                                        |
| 1325 | - 'id' => 'UID',  | 
                                                        |
| 1326 | - 'enabled' => true,  | 
                                                        |
| 1327 | - 'firstLoginTimestamp' => 1511191471,  | 
                                                        |
| 1328 | - 'lastLoginTimestamp' => 1521191471,  | 
                                                        |
| 1329 | - 'lastLogin' => 1521191471000,  | 
                                                        |
| 1330 | - 'backend' => 'Database',  | 
                                                        |
| 1331 | - 'subadmin' => [],  | 
                                                        |
| 1332 | - 'quota' => ['DummyValue'],  | 
                                                        |
| 1333 | - 'email' => '[email protected]',  | 
                                                        |
| 1334 | - 'displayname' => 'Demo User',  | 
                                                        |
| 1335 | - 'display-name' => 'Demo User',  | 
                                                        |
| 1336 | - 'phone' => 'phone',  | 
                                                        |
| 1337 | - 'address' => 'address',  | 
                                                        |
| 1338 | - 'website' => 'website',  | 
                                                        |
| 1339 | - 'twitter' => 'twitter',  | 
                                                        |
| 1340 | - 'fediverse' => 'fediverse',  | 
                                                        |
| 1341 | - 'groups' => [],  | 
                                                        |
| 1342 | - 'language' => 'da',  | 
                                                        |
| 1343 | - 'locale' => null,  | 
                                                        |
| 1344 | - 'backendCapabilities' => [  | 
                                                        |
| 1345 | - 'setDisplayName' => true,  | 
                                                        |
| 1346 | - 'setPassword' => true,  | 
                                                        |
| 1347 | - ],  | 
                                                        |
| 1348 | - 'additional_mail' => [],  | 
                                                        |
| 1349 | - 'organisation' => 'organisation',  | 
                                                        |
| 1350 | - 'role' => 'role',  | 
                                                        |
| 1351 | - 'headline' => 'headline',  | 
                                                        |
| 1352 | - 'biography' => 'biography',  | 
                                                        |
| 1353 | - 'profile_enabled' => '1',  | 
                                                        |
| 1354 | - 'notify_email' => null,  | 
                                                        |
| 1355 | - 'manager' => '',  | 
                                                        |
| 1356 | - 'pronouns' => 'they/them',  | 
                                                        |
| 1357 | - ];  | 
                                                        |
| 1358 | - $this->assertEquals($expected, $this->invokePrivate($this->api, 'getUserData', ['UID']));  | 
                                                        |
| 1359 | - }  | 
                                                        |
| 1360 | -  | 
                                                        |
| 1361 | -  | 
                                                        |
| 1362 | -  | 
                                                        |
| 1363 | -	public function testGetUserDataAsSubAdminAndUserIsNotAccessible(): void { | 
                                                        |
| 1364 | - $this->expectException(OCSException::class);  | 
                                                        |
| 1365 | - $this->expectExceptionCode(998);  | 
                                                        |
| 1366 | -  | 
                                                        |
| 1367 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1368 | - ->disableOriginalConstructor()  | 
                                                        |
| 1369 | - ->getMock();  | 
                                                        |
| 1370 | - $loggedInUser  | 
                                                        |
| 1371 | - ->expects($this->exactly(4))  | 
                                                        |
| 1372 | -			->method('getUID') | 
                                                        |
| 1373 | -			->willReturn('subadmin'); | 
                                                        |
| 1374 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1375 | - ->disableOriginalConstructor()  | 
                                                        |
| 1376 | - ->getMock();  | 
                                                        |
| 1377 | - $this->userSession  | 
                                                        |
| 1378 | -			->method('getUser') | 
                                                        |
| 1379 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1380 | - $this->userManager  | 
                                                        |
| 1381 | - ->expects($this->once())  | 
                                                        |
| 1382 | -			->method('get') | 
                                                        |
| 1383 | -			->with('UserToGet') | 
                                                        |
| 1384 | - ->willReturn($targetUser);  | 
                                                        |
| 1385 | - $this->groupManager  | 
                                                        |
| 1386 | - ->expects($this->once())  | 
                                                        |
| 1387 | -			->method('isAdmin') | 
                                                        |
| 1388 | -			->with('subadmin') | 
                                                        |
| 1389 | - ->willReturn(false);  | 
                                                        |
| 1390 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 1391 | - ->disableOriginalConstructor()  | 
                                                        |
| 1392 | - ->getMock();  | 
                                                        |
| 1393 | - $subAdminManager  | 
                                                        |
| 1394 | - ->expects($this->once())  | 
                                                        |
| 1395 | -			->method('isUserAccessible') | 
                                                        |
| 1396 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 1397 | - ->willReturn(false);  | 
                                                        |
| 1398 | - $this->groupManager  | 
                                                        |
| 1399 | - ->expects($this->once())  | 
                                                        |
| 1400 | -			->method('getSubAdmin') | 
                                                        |
| 1401 | - ->willReturn($subAdminManager);  | 
                                                        |
| 1402 | -  | 
                                                        |
| 1403 | - $this->invokePrivate($this->api, 'getUser', ['UserToGet']);  | 
                                                        |
| 1404 | - }  | 
                                                        |
| 1405 | -  | 
                                                        |
| 1406 | -	public function testGetUserDataAsSubAdminSelfLookup(): void { | 
                                                        |
| 1407 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1408 | - ->disableOriginalConstructor()  | 
                                                        |
| 1409 | - ->getMock();  | 
                                                        |
| 1410 | - $loggedInUser  | 
                                                        |
| 1411 | -			->method('getUID') | 
                                                        |
| 1412 | -			->willReturn('UID'); | 
                                                        |
| 1413 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1414 | - ->disableOriginalConstructor()  | 
                                                        |
| 1415 | - ->getMock();  | 
                                                        |
| 1416 | - $this->userSession  | 
                                                        |
| 1417 | -			->method('getUser') | 
                                                        |
| 1418 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1419 | - $this->userManager  | 
                                                        |
| 1420 | -			->method('get') | 
                                                        |
| 1421 | -			->with('UID') | 
                                                        |
| 1422 | - ->willReturn($targetUser);  | 
                                                        |
| 1423 | - $this->groupManager  | 
                                                        |
| 1424 | -			->method('isAdmin') | 
                                                        |
| 1425 | -			->with('UID') | 
                                                        |
| 1426 | - ->willReturn(false);  | 
                                                        |
| 1427 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 1428 | - ->disableOriginalConstructor()  | 
                                                        |
| 1429 | - ->getMock();  | 
                                                        |
| 1430 | - $subAdminManager  | 
                                                        |
| 1431 | - ->expects($this->once())  | 
                                                        |
| 1432 | -			->method('isUserAccessible') | 
                                                        |
| 1433 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 1434 | - ->willReturn(false);  | 
                                                        |
| 1435 | - $subAdminManager  | 
                                                        |
| 1436 | - ->expects($this->once())  | 
                                                        |
| 1437 | -			->method('getSubAdminsGroups') | 
                                                        |
| 1438 | - ->willReturn([]);  | 
                                                        |
| 1439 | - $this->groupManager  | 
                                                        |
| 1440 | - ->expects($this->exactly(2))  | 
                                                        |
| 1441 | -			->method('getSubAdmin') | 
                                                        |
| 1442 | - ->willReturn($subAdminManager);  | 
                                                        |
| 1443 | - $this->groupManager  | 
                                                        |
| 1444 | - ->expects($this->any())  | 
                                                        |
| 1445 | -			->method('getUserGroups') | 
                                                        |
| 1446 | - ->willReturn([]);  | 
                                                        |
| 1447 | - $this->api  | 
                                                        |
| 1448 | - ->expects($this->once())  | 
                                                        |
| 1449 | -			->method('fillStorageInfo') | 
                                                        |
| 1450 | - ->with($targetUser)  | 
                                                        |
| 1451 | - ->willReturn(['DummyValue']);  | 
                                                        |
| 1452 | -  | 
                                                        |
| 1453 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1454 | - $backend->expects($this->atLeastOnce())  | 
                                                        |
| 1455 | -			->method('implementsActions') | 
                                                        |
| 1456 | - ->willReturn(false);  | 
                                                        |
| 1457 | -  | 
                                                        |
| 1458 | - $targetUser  | 
                                                        |
| 1459 | - ->expects($this->once())  | 
                                                        |
| 1460 | -			->method('getDisplayName') | 
                                                        |
| 1461 | -			->willReturn('Subadmin User'); | 
                                                        |
| 1462 | - $targetUser  | 
                                                        |
| 1463 | - ->expects($this->once())  | 
                                                        |
| 1464 | -			->method('getSystemEMailAddress') | 
                                                        |
| 1465 | -			->willReturn('[email protected]'); | 
                                                        |
| 1466 | - $targetUser  | 
                                                        |
| 1467 | -			->method('getUID') | 
                                                        |
| 1468 | -			->willReturn('UID'); | 
                                                        |
| 1469 | - $targetUser  | 
                                                        |
| 1470 | - ->expects($this->never())  | 
                                                        |
| 1471 | -			->method('getHome'); | 
                                                        |
| 1472 | - $targetUser  | 
                                                        |
| 1473 | - ->expects($this->exactly(2))  | 
                                                        |
| 1474 | -			->method('getLastLogin') | 
                                                        |
| 1475 | - ->willReturn(1521191471);  | 
                                                        |
| 1476 | - $targetUser  | 
                                                        |
| 1477 | - ->expects($this->once())  | 
                                                        |
| 1478 | -			->method('getFirstLogin') | 
                                                        |
| 1479 | - ->willReturn(1511191471);  | 
                                                        |
| 1480 | - $targetUser  | 
                                                        |
| 1481 | - ->expects($this->once())  | 
                                                        |
| 1482 | -			->method('getBackendClassName') | 
                                                        |
| 1483 | -			->willReturn('Database'); | 
                                                        |
| 1484 | - $targetUser  | 
                                                        |
| 1485 | - ->expects($this->once())  | 
                                                        |
| 1486 | -			->method('getBackend') | 
                                                        |
| 1487 | - ->willReturn($backend);  | 
                                                        |
| 1488 | - $this->mockAccount($targetUser, [  | 
                                                        |
| 1489 | - IAccountManager::PROPERTY_ADDRESS => ['value' => 'address'],  | 
                                                        |
| 1490 | - IAccountManager::PROPERTY_PHONE => ['value' => 'phone'],  | 
                                                        |
| 1491 | - IAccountManager::PROPERTY_TWITTER => ['value' => 'twitter'],  | 
                                                        |
| 1492 | - IAccountManager::PROPERTY_FEDIVERSE => ['value' => 'fediverse'],  | 
                                                        |
| 1493 | - IAccountManager::PROPERTY_WEBSITE => ['value' => 'website'],  | 
                                                        |
| 1494 | - IAccountManager::PROPERTY_ORGANISATION => ['value' => 'organisation'],  | 
                                                        |
| 1495 | - IAccountManager::PROPERTY_ROLE => ['value' => 'role'],  | 
                                                        |
| 1496 | - IAccountManager::PROPERTY_HEADLINE => ['value' => 'headline'],  | 
                                                        |
| 1497 | - IAccountManager::PROPERTY_BIOGRAPHY => ['value' => 'biography'],  | 
                                                        |
| 1498 | - IAccountManager::PROPERTY_PROFILE_ENABLED => ['value' => '1'],  | 
                                                        |
| 1499 | - IAccountManager::PROPERTY_PRONOUNS => ['value' => 'they/them'],  | 
                                                        |
| 1500 | - ]);  | 
                                                        |
| 1501 | -  | 
                                                        |
| 1502 | - $this->l10nFactory  | 
                                                        |
| 1503 | - ->expects($this->once())  | 
                                                        |
| 1504 | -			->method('getUserLanguage') | 
                                                        |
| 1505 | - ->with($targetUser)  | 
                                                        |
| 1506 | -			->willReturn('ru'); | 
                                                        |
| 1507 | -  | 
                                                        |
| 1508 | - $expected = [  | 
                                                        |
| 1509 | - 'id' => 'UID',  | 
                                                        |
| 1510 | - 'firstLoginTimestamp' => 1511191471,  | 
                                                        |
| 1511 | - 'lastLoginTimestamp' => 1521191471,  | 
                                                        |
| 1512 | - 'lastLogin' => 1521191471000,  | 
                                                        |
| 1513 | - 'backend' => 'Database',  | 
                                                        |
| 1514 | - 'subadmin' => [],  | 
                                                        |
| 1515 | - 'quota' => ['DummyValue'],  | 
                                                        |
| 1516 | - 'email' => '[email protected]',  | 
                                                        |
| 1517 | - 'displayname' => 'Subadmin User',  | 
                                                        |
| 1518 | - 'display-name' => 'Subadmin User',  | 
                                                        |
| 1519 | - 'phone' => 'phone',  | 
                                                        |
| 1520 | - 'address' => 'address',  | 
                                                        |
| 1521 | - 'website' => 'website',  | 
                                                        |
| 1522 | - 'twitter' => 'twitter',  | 
                                                        |
| 1523 | - 'fediverse' => 'fediverse',  | 
                                                        |
| 1524 | - 'groups' => [],  | 
                                                        |
| 1525 | - 'language' => 'ru',  | 
                                                        |
| 1526 | - 'locale' => null,  | 
                                                        |
| 1527 | - 'backendCapabilities' => [  | 
                                                        |
| 1528 | - 'setDisplayName' => false,  | 
                                                        |
| 1529 | - 'setPassword' => false,  | 
                                                        |
| 1530 | - ],  | 
                                                        |
| 1531 | - 'additional_mail' => [],  | 
                                                        |
| 1532 | - 'organisation' => 'organisation',  | 
                                                        |
| 1533 | - 'role' => 'role',  | 
                                                        |
| 1534 | - 'headline' => 'headline',  | 
                                                        |
| 1535 | - 'biography' => 'biography',  | 
                                                        |
| 1536 | - 'profile_enabled' => '1',  | 
                                                        |
| 1537 | - 'notify_email' => null,  | 
                                                        |
| 1538 | - 'manager' => '',  | 
                                                        |
| 1539 | - 'pronouns' => 'they/them',  | 
                                                        |
| 1540 | - ];  | 
                                                        |
| 1541 | - $this->assertEquals($expected, $this->invokePrivate($this->api, 'getUserData', ['UID']));  | 
                                                        |
| 1542 | - }  | 
                                                        |
| 1543 | -  | 
                                                        |
| 1544 | -	public function dataSearchByPhoneNumbers(): array { | 
                                                        |
| 1545 | - return [  | 
                                                        |
| 1546 | - 'Invalid country' => ['Not a country code', ['12345' => ['NaN']], 400, null, null, []],  | 
                                                        |
| 1547 | - 'No number to search' => ['DE', ['12345' => ['NaN']], 200, null, null, []],  | 
                                                        |
| 1548 | - 'Valid number but no match' => ['DE', ['12345' => ['0711 / 25 24 28-90']], 200, ['+4971125242890'], [], []],  | 
                                                        |
| 1549 | - 'Invalid number' => ['FR', ['12345' => ['0711 / 25 24 28-90']], 200, null, null, []],  | 
                                                        |
| 1550 | - 'Invalid and valid number' => ['DE', ['12345' => ['NaN', '0711 / 25 24 28-90']], 200, ['+4971125242890'], [], []],  | 
                                                        |
| 1551 | - 'Valid and invalid number' => ['DE', ['12345' => ['0711 / 25 24 28-90', 'NaN']], 200, ['+4971125242890'], [], []],  | 
                                                        |
| 1552 | - 'Valid number and a match' => ['DE', ['12345' => ['0711 / 25 24 28-90']], 200, ['+4971125242890'], ['+4971125242890' => 'admin'], ['12345' => 'admin@localhost']],  | 
                                                        |
| 1553 | - 'Same number twice, later hits' => ['DE', ['12345' => ['0711 / 25 24 28-90'], '23456' => ['0711 / 25 24 28-90']], 200, ['+4971125242890'], ['+4971125242890' => 'admin'], ['23456' => 'admin@localhost']],  | 
                                                        |
| 1554 | - ];  | 
                                                        |
| 1555 | - }  | 
                                                        |
| 1556 | -  | 
                                                        |
| 1557 | - /**  | 
                                                        |
| 1558 | - * @dataProvider dataSearchByPhoneNumbers  | 
                                                        |
| 1559 | - * @param string $location  | 
                                                        |
| 1560 | - * @param array $search  | 
                                                        |
| 1561 | - * @param int $status  | 
                                                        |
| 1562 | - * @param array $expected  | 
                                                        |
| 1563 | - */  | 
                                                        |
| 1564 | -	public function testSearchByPhoneNumbers(string $location, array $search, int $status, ?array $searchUsers, ?array $userMatches, array $expected): void { | 
                                                        |
| 1565 | - $knownTo = 'knownTo';  | 
                                                        |
| 1566 | - $user = $this->createMock(IUser::class);  | 
                                                        |
| 1567 | -		$user->method('getUID') | 
                                                        |
| 1568 | - ->willReturn($knownTo);  | 
                                                        |
| 1569 | -		$this->userSession->method('getUser') | 
                                                        |
| 1570 | - ->willReturn($user);  | 
                                                        |
| 1571 | -  | 
                                                        |
| 1572 | -		if ($searchUsers === null) { | 
                                                        |
| 1573 | - $this->accountManager->expects($this->never())  | 
                                                        |
| 1574 | -				->method('searchUsers'); | 
                                                        |
| 1575 | -		} else { | 
                                                        |
| 1576 | - $this->accountManager->expects($this->once())  | 
                                                        |
| 1577 | -				->method('searchUsers') | 
                                                        |
| 1578 | - ->with(IAccountManager::PROPERTY_PHONE, $searchUsers)  | 
                                                        |
| 1579 | - ->willReturn($userMatches);  | 
                                                        |
| 1580 | -  | 
                                                        |
| 1581 | - $this->knownUserService->expects($this->once())  | 
                                                        |
| 1582 | -				->method('deleteKnownTo') | 
                                                        |
| 1583 | - ->with($knownTo);  | 
                                                        |
| 1584 | -  | 
                                                        |
| 1585 | - $this->knownUserService->expects($this->exactly(count($expected)))  | 
                                                        |
| 1586 | -				->method('storeIsKnownToUser') | 
                                                        |
| 1587 | - ->with($knownTo, $this->anything());  | 
                                                        |
| 1588 | - }  | 
                                                        |
| 1589 | -  | 
                                                        |
| 1590 | -		$this->urlGenerator->method('getAbsoluteURL') | 
                                                        |
| 1591 | -			->with('/') | 
                                                        |
| 1592 | -			->willReturn('https://localhost/'); | 
                                                        |
| 1593 | -  | 
                                                        |
| 1594 | - $response = $this->api->searchByPhoneNumbers($location, $search);  | 
                                                        |
| 1595 | -  | 
                                                        |
| 1596 | - self::assertEquals($status, $response->getStatus());  | 
                                                        |
| 1597 | - self::assertEquals($expected, $response->getData());  | 
                                                        |
| 1598 | - }  | 
                                                        |
| 1599 | -  | 
                                                        |
| 1600 | -	public function testEditUserRegularUserSelfEditChangeDisplayName(): void { | 
                                                        |
| 1601 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1602 | - ->disableOriginalConstructor()  | 
                                                        |
| 1603 | - ->getMock();  | 
                                                        |
| 1604 | - $loggedInUser  | 
                                                        |
| 1605 | - ->expects($this->any())  | 
                                                        |
| 1606 | -			->method('getUID') | 
                                                        |
| 1607 | -			->willReturn('UID'); | 
                                                        |
| 1608 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1609 | - ->disableOriginalConstructor()  | 
                                                        |
| 1610 | - ->getMock();  | 
                                                        |
| 1611 | - $this->userSession  | 
                                                        |
| 1612 | - ->expects($this->once())  | 
                                                        |
| 1613 | -			->method('getUser') | 
                                                        |
| 1614 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1615 | - $this->userManager  | 
                                                        |
| 1616 | - ->expects($this->once())  | 
                                                        |
| 1617 | -			->method('get') | 
                                                        |
| 1618 | -			->with('UserToEdit') | 
                                                        |
| 1619 | - ->willReturn($targetUser);  | 
                                                        |
| 1620 | - $targetUser  | 
                                                        |
| 1621 | - ->expects($this->once())  | 
                                                        |
| 1622 | -			->method('getBackend') | 
                                                        |
| 1623 | - ->willReturn($this->createMock(ISetDisplayNameBackend::class));  | 
                                                        |
| 1624 | - $targetUser  | 
                                                        |
| 1625 | - ->expects($this->once())  | 
                                                        |
| 1626 | -			->method('setDisplayName') | 
                                                        |
| 1627 | -			->with('NewDisplayName') | 
                                                        |
| 1628 | - ->willReturn(true);  | 
                                                        |
| 1629 | - $targetUser  | 
                                                        |
| 1630 | - ->expects($this->any())  | 
                                                        |
| 1631 | -			->method('getUID') | 
                                                        |
| 1632 | -			->willReturn('UID'); | 
                                                        |
| 1633 | -  | 
                                                        |
| 1634 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', 'display', 'NewDisplayName')->getData()); | 
                                                        |
| 1635 | - }  | 
                                                        |
| 1636 | -  | 
                                                        |
| 1637 | -	public function testEditUserRegularUserSelfEditChangeEmailValid(): void { | 
                                                        |
| 1638 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1639 | - ->disableOriginalConstructor()  | 
                                                        |
| 1640 | - ->getMock();  | 
                                                        |
| 1641 | - $loggedInUser  | 
                                                        |
| 1642 | - ->expects($this->any())  | 
                                                        |
| 1643 | -			->method('getUID') | 
                                                        |
| 1644 | -			->willReturn('UID'); | 
                                                        |
| 1645 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1646 | - ->disableOriginalConstructor()  | 
                                                        |
| 1647 | - ->getMock();  | 
                                                        |
| 1648 | - $this->userSession  | 
                                                        |
| 1649 | - ->expects($this->once())  | 
                                                        |
| 1650 | -			->method('getUser') | 
                                                        |
| 1651 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1652 | - $this->userManager  | 
                                                        |
| 1653 | - ->expects($this->once())  | 
                                                        |
| 1654 | -			->method('get') | 
                                                        |
| 1655 | -			->with('UserToEdit') | 
                                                        |
| 1656 | - ->willReturn($targetUser);  | 
                                                        |
| 1657 | - $targetUser  | 
                                                        |
| 1658 | - ->expects($this->once())  | 
                                                        |
| 1659 | -			->method('setEMailAddress') | 
                                                        |
| 1660 | -			->with('[email protected]'); | 
                                                        |
| 1661 | - $targetUser  | 
                                                        |
| 1662 | - ->expects($this->any())  | 
                                                        |
| 1663 | -			->method('getUID') | 
                                                        |
| 1664 | -			->willReturn('UID'); | 
                                                        |
| 1665 | -  | 
                                                        |
| 1666 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1667 | - $targetUser  | 
                                                        |
| 1668 | - ->expects($this->any())  | 
                                                        |
| 1669 | -			->method('getBackend') | 
                                                        |
| 1670 | - ->willReturn($backend);  | 
                                                        |
| 1671 | -  | 
                                                        |
| 1672 | -		$this->config->method('getSystemValue')->willReturnCallback(fn (string $key, mixed $default) => $default); | 
                                                        |
| 1673 | -  | 
                                                        |
| 1674 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', 'email', '[email protected]')->getData()); | 
                                                        |
| 1675 | - }  | 
                                                        |
| 1676 | -  | 
                                                        |
| 1677 | -	public function testEditUserRegularUserSelfEditAddAdditionalEmailValid(): void { | 
                                                        |
| 1678 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1679 | - ->disableOriginalConstructor()  | 
                                                        |
| 1680 | - ->getMock();  | 
                                                        |
| 1681 | - $loggedInUser  | 
                                                        |
| 1682 | - ->expects($this->any())  | 
                                                        |
| 1683 | -			->method('getUID') | 
                                                        |
| 1684 | -			->willReturn('UID'); | 
                                                        |
| 1685 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1686 | - ->disableOriginalConstructor()  | 
                                                        |
| 1687 | - ->getMock();  | 
                                                        |
| 1688 | - $this->userSession  | 
                                                        |
| 1689 | - ->expects($this->once())  | 
                                                        |
| 1690 | -			->method('getUser') | 
                                                        |
| 1691 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1692 | - $this->userManager  | 
                                                        |
| 1693 | - ->expects($this->once())  | 
                                                        |
| 1694 | -			->method('get') | 
                                                        |
| 1695 | -			->with('UserToEdit') | 
                                                        |
| 1696 | - ->willReturn($targetUser);  | 
                                                        |
| 1697 | - $targetUser  | 
                                                        |
| 1698 | - ->expects($this->any())  | 
                                                        |
| 1699 | -			->method('getUID') | 
                                                        |
| 1700 | -			->willReturn('UID'); | 
                                                        |
| 1701 | -  | 
                                                        |
| 1702 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1703 | - $targetUser  | 
                                                        |
| 1704 | - ->expects($this->any())  | 
                                                        |
| 1705 | -			->method('getBackend') | 
                                                        |
| 1706 | - ->willReturn($backend);  | 
                                                        |
| 1707 | -  | 
                                                        |
| 1708 | - $userAccount = $this->createMock(IAccount::class);  | 
                                                        |
| 1709 | -  | 
                                                        |
| 1710 | - $this->accountManager  | 
                                                        |
| 1711 | - ->expects($this->once())  | 
                                                        |
| 1712 | -			->method('getAccount') | 
                                                        |
| 1713 | - ->with($targetUser)  | 
                                                        |
| 1714 | - ->willReturn($userAccount);  | 
                                                        |
| 1715 | - $this->accountManager  | 
                                                        |
| 1716 | - ->expects($this->once())  | 
                                                        |
| 1717 | -			->method('updateAccount') | 
                                                        |
| 1718 | - ->with($userAccount);  | 
                                                        |
| 1719 | -  | 
                                                        |
| 1720 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', 'additional_mail', '[email protected]')->getData()); | 
                                                        |
| 1721 | - }  | 
                                                        |
| 1722 | -  | 
                                                        |
| 1723 | -	public function testEditUserRegularUserSelfEditAddAdditionalEmailMainAddress(): void { | 
                                                        |
| 1724 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1725 | - ->disableOriginalConstructor()  | 
                                                        |
| 1726 | - ->getMock();  | 
                                                        |
| 1727 | - $loggedInUser  | 
                                                        |
| 1728 | - ->expects($this->any())  | 
                                                        |
| 1729 | -			->method('getUID') | 
                                                        |
| 1730 | -			->willReturn('UID'); | 
                                                        |
| 1731 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1732 | - ->disableOriginalConstructor()  | 
                                                        |
| 1733 | - ->getMock();  | 
                                                        |
| 1734 | - $this->userSession  | 
                                                        |
| 1735 | - ->expects($this->once())  | 
                                                        |
| 1736 | -			->method('getUser') | 
                                                        |
| 1737 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1738 | - $this->userManager  | 
                                                        |
| 1739 | - ->expects($this->once())  | 
                                                        |
| 1740 | -			->method('get') | 
                                                        |
| 1741 | -			->with('UserToEdit') | 
                                                        |
| 1742 | - ->willReturn($targetUser);  | 
                                                        |
| 1743 | - $targetUser  | 
                                                        |
| 1744 | - ->expects($this->any())  | 
                                                        |
| 1745 | -			->method('getUID') | 
                                                        |
| 1746 | -			->willReturn('UID'); | 
                                                        |
| 1747 | -  | 
                                                        |
| 1748 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1749 | - $targetUser  | 
                                                        |
| 1750 | - ->expects($this->any())  | 
                                                        |
| 1751 | -			->method('getBackend') | 
                                                        |
| 1752 | - ->willReturn($backend);  | 
                                                        |
| 1753 | - $targetUser  | 
                                                        |
| 1754 | - ->expects($this->any())  | 
                                                        |
| 1755 | -			->method('getSystemEMailAddress') | 
                                                        |
| 1756 | -			->willReturn('[email protected]'); | 
                                                        |
| 1757 | -  | 
                                                        |
| 1758 | - $userAccount = $this->createMock(IAccount::class);  | 
                                                        |
| 1759 | -  | 
                                                        |
| 1760 | - $this->accountManager  | 
                                                        |
| 1761 | - ->expects($this->never())  | 
                                                        |
| 1762 | -			->method('getAccount') | 
                                                        |
| 1763 | - ->with($targetUser)  | 
                                                        |
| 1764 | - ->willReturn($userAccount);  | 
                                                        |
| 1765 | - $this->accountManager  | 
                                                        |
| 1766 | - ->expects($this->never())  | 
                                                        |
| 1767 | -			->method('updateAccount') | 
                                                        |
| 1768 | - ->with($userAccount);  | 
                                                        |
| 1769 | -  | 
                                                        |
| 1770 | - $this->expectException(OCSException::class);  | 
                                                        |
| 1771 | - $this->expectExceptionCode(101);  | 
                                                        |
| 1772 | -		$this->api->editUser('UserToEdit', 'additional_mail', '[email protected]')->getData(); | 
                                                        |
| 1773 | - }  | 
                                                        |
| 1774 | -  | 
                                                        |
| 1775 | -	public function testEditUserRegularUserSelfEditAddAdditionalEmailDuplicate(): void { | 
                                                        |
| 1776 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1777 | - ->disableOriginalConstructor()  | 
                                                        |
| 1778 | - ->getMock();  | 
                                                        |
| 1779 | - $loggedInUser  | 
                                                        |
| 1780 | - ->expects($this->any())  | 
                                                        |
| 1781 | -			->method('getUID') | 
                                                        |
| 1782 | -			->willReturn('UID'); | 
                                                        |
| 1783 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1784 | - ->disableOriginalConstructor()  | 
                                                        |
| 1785 | - ->getMock();  | 
                                                        |
| 1786 | - $this->userSession  | 
                                                        |
| 1787 | - ->expects($this->once())  | 
                                                        |
| 1788 | -			->method('getUser') | 
                                                        |
| 1789 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1790 | - $this->userManager  | 
                                                        |
| 1791 | - ->expects($this->once())  | 
                                                        |
| 1792 | -			->method('get') | 
                                                        |
| 1793 | -			->with('UserToEdit') | 
                                                        |
| 1794 | - ->willReturn($targetUser);  | 
                                                        |
| 1795 | - $targetUser  | 
                                                        |
| 1796 | - ->expects($this->any())  | 
                                                        |
| 1797 | -			->method('getUID') | 
                                                        |
| 1798 | -			->willReturn('UID'); | 
                                                        |
| 1799 | -  | 
                                                        |
| 1800 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1801 | - $targetUser  | 
                                                        |
| 1802 | - ->expects($this->any())  | 
                                                        |
| 1803 | -			->method('getBackend') | 
                                                        |
| 1804 | - ->willReturn($backend);  | 
                                                        |
| 1805 | -  | 
                                                        |
| 1806 | - $property = $this->createMock(IAccountProperty::class);  | 
                                                        |
| 1807 | -		$property->method('getValue') | 
                                                        |
| 1808 | -			->willReturn('[email protected]'); | 
                                                        |
| 1809 | - $collection = $this->createMock(IAccountPropertyCollection::class);  | 
                                                        |
| 1810 | -		$collection->method('getPropertyByValue') | 
                                                        |
| 1811 | -			->with('[email protected]') | 
                                                        |
| 1812 | - ->willReturn($property);  | 
                                                        |
| 1813 | -  | 
                                                        |
| 1814 | - $userAccount = $this->createMock(IAccount::class);  | 
                                                        |
| 1815 | -		$userAccount->method('getPropertyCollection') | 
                                                        |
| 1816 | - ->with(IAccountManager::COLLECTION_EMAIL)  | 
                                                        |
| 1817 | - ->willReturn($collection);  | 
                                                        |
| 1818 | -  | 
                                                        |
| 1819 | - $this->accountManager  | 
                                                        |
| 1820 | - ->expects($this->once())  | 
                                                        |
| 1821 | -			->method('getAccount') | 
                                                        |
| 1822 | - ->with($targetUser)  | 
                                                        |
| 1823 | - ->willReturn($userAccount);  | 
                                                        |
| 1824 | - $this->accountManager  | 
                                                        |
| 1825 | - ->expects($this->never())  | 
                                                        |
| 1826 | -			->method('updateAccount') | 
                                                        |
| 1827 | - ->with($userAccount);  | 
                                                        |
| 1828 | -  | 
                                                        |
| 1829 | - $this->expectException(OCSException::class);  | 
                                                        |
| 1830 | - $this->expectExceptionCode(101);  | 
                                                        |
| 1831 | -		$this->api->editUser('UserToEdit', 'additional_mail', '[email protected]')->getData(); | 
                                                        |
| 1832 | - }  | 
                                                        |
| 1833 | -  | 
                                                        |
| 1834 | -	public function testEditUserRegularUserSelfEditChangeEmailInvalid(): void { | 
                                                        |
| 1835 | - $this->expectException(OCSException::class);  | 
                                                        |
| 1836 | - $this->expectExceptionCode(101);  | 
                                                        |
| 1837 | -  | 
                                                        |
| 1838 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1839 | - ->disableOriginalConstructor()  | 
                                                        |
| 1840 | - ->getMock();  | 
                                                        |
| 1841 | - $loggedInUser  | 
                                                        |
| 1842 | - ->expects($this->any())  | 
                                                        |
| 1843 | -			->method('getUID') | 
                                                        |
| 1844 | -			->willReturn('UID'); | 
                                                        |
| 1845 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1846 | - ->disableOriginalConstructor()  | 
                                                        |
| 1847 | - ->getMock();  | 
                                                        |
| 1848 | - $this->userSession  | 
                                                        |
| 1849 | - ->expects($this->once())  | 
                                                        |
| 1850 | -			->method('getUser') | 
                                                        |
| 1851 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1852 | - $this->userManager  | 
                                                        |
| 1853 | - ->expects($this->once())  | 
                                                        |
| 1854 | -			->method('get') | 
                                                        |
| 1855 | -			->with('UserToEdit') | 
                                                        |
| 1856 | - ->willReturn($targetUser);  | 
                                                        |
| 1857 | - $targetUser  | 
                                                        |
| 1858 | - ->expects($this->any())  | 
                                                        |
| 1859 | -			->method('getUID') | 
                                                        |
| 1860 | -			->willReturn('UID'); | 
                                                        |
| 1861 | -  | 
                                                        |
| 1862 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1863 | - $targetUser  | 
                                                        |
| 1864 | - ->expects($this->any())  | 
                                                        |
| 1865 | -			->method('getBackend') | 
                                                        |
| 1866 | - ->willReturn($backend);  | 
                                                        |
| 1867 | -  | 
                                                        |
| 1868 | -		$this->config->method('getSystemValue')->willReturnCallback(fn (string $key, mixed $default) => $default); | 
                                                        |
| 1869 | -  | 
                                                        |
| 1870 | -		$this->api->editUser('UserToEdit', 'email', 'demo.org'); | 
                                                        |
| 1871 | - }  | 
                                                        |
| 1872 | -  | 
                                                        |
| 1873 | -	public function selfEditChangePropertyProvider() { | 
                                                        |
| 1874 | - return [  | 
                                                        |
| 1875 | - [IAccountManager::PROPERTY_TWITTER, '@oldtwitter', '@newtwitter'],  | 
                                                        |
| 1876 | - [IAccountManager::PROPERTY_FEDIVERSE, '@[email protected]', '@[email protected]'],  | 
                                                        |
| 1877 | - [IAccountManager::PROPERTY_PHONE, '1234', '12345'],  | 
                                                        |
| 1878 | - [IAccountManager::PROPERTY_ADDRESS, 'Something street 2', 'Another street 3'],  | 
                                                        |
| 1879 | - [IAccountManager::PROPERTY_WEBSITE, 'https://examplesite1', 'https://examplesite2'],  | 
                                                        |
| 1880 | - [IAccountManager::PROPERTY_ORGANISATION, 'Organisation A', 'Organisation B'],  | 
                                                        |
| 1881 | - [IAccountManager::PROPERTY_ROLE, 'Human', 'Alien'],  | 
                                                        |
| 1882 | - [IAccountManager::PROPERTY_HEADLINE, 'Hi', 'Hello'],  | 
                                                        |
| 1883 | - [IAccountManager::PROPERTY_BIOGRAPHY, 'A biography', 'Another biography'],  | 
                                                        |
| 1884 | - [IAccountManager::PROPERTY_PROFILE_ENABLED, '1', '0'],  | 
                                                        |
| 1885 | - [IAccountManager::PROPERTY_PRONOUNS, 'they/them', 'he/him'],  | 
                                                        |
| 1886 | - ];  | 
                                                        |
| 1887 | - }  | 
                                                        |
| 1888 | -  | 
                                                        |
| 1889 | - /**  | 
                                                        |
| 1890 | - * @dataProvider selfEditChangePropertyProvider  | 
                                                        |
| 1891 | - */  | 
                                                        |
| 1892 | -	public function testEditUserRegularUserSelfEditChangeProperty($propertyName, $oldValue, $newValue): void { | 
                                                        |
| 1893 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1894 | - ->disableOriginalConstructor()  | 
                                                        |
| 1895 | - ->getMock();  | 
                                                        |
| 1896 | - $loggedInUser  | 
                                                        |
| 1897 | - ->expects($this->any())  | 
                                                        |
| 1898 | -			->method('getUID') | 
                                                        |
| 1899 | -			->willReturn('UID'); | 
                                                        |
| 1900 | - $this->userSession  | 
                                                        |
| 1901 | - ->expects($this->once())  | 
                                                        |
| 1902 | -			->method('getUser') | 
                                                        |
| 1903 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1904 | - $this->userManager  | 
                                                        |
| 1905 | - ->expects($this->once())  | 
                                                        |
| 1906 | -			->method('get') | 
                                                        |
| 1907 | -			->with('UserToEdit') | 
                                                        |
| 1908 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1909 | -  | 
                                                        |
| 1910 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1911 | - $loggedInUser  | 
                                                        |
| 1912 | - ->expects($this->any())  | 
                                                        |
| 1913 | -			->method('getBackend') | 
                                                        |
| 1914 | - ->willReturn($backend);  | 
                                                        |
| 1915 | -  | 
                                                        |
| 1916 | - $propertyMock = $this->createMock(IAccountProperty::class);  | 
                                                        |
| 1917 | - $propertyMock->expects($this->any())  | 
                                                        |
| 1918 | -			->method('getName') | 
                                                        |
| 1919 | - ->willReturn($propertyName);  | 
                                                        |
| 1920 | - $propertyMock->expects($this->any())  | 
                                                        |
| 1921 | -			->method('getValue') | 
                                                        |
| 1922 | - ->willReturn($oldValue);  | 
                                                        |
| 1923 | - $propertyMock->expects($this->once())  | 
                                                        |
| 1924 | -			->method('setValue') | 
                                                        |
| 1925 | - ->with($newValue)  | 
                                                        |
| 1926 | - ->willReturnSelf();  | 
                                                        |
| 1927 | - $propertyMock->expects($this->any())  | 
                                                        |
| 1928 | -			->method('getScope') | 
                                                        |
| 1929 | - ->willReturn(IAccountManager::SCOPE_LOCAL);  | 
                                                        |
| 1930 | -  | 
                                                        |
| 1931 | - $accountMock = $this->createMock(IAccount::class);  | 
                                                        |
| 1932 | - $accountMock->expects($this->any())  | 
                                                        |
| 1933 | -			->method('getProperty') | 
                                                        |
| 1934 | - ->with($propertyName)  | 
                                                        |
| 1935 | - ->willReturn($propertyMock);  | 
                                                        |
| 1936 | -  | 
                                                        |
| 1937 | - $this->accountManager->expects($this->atLeastOnce())  | 
                                                        |
| 1938 | -			->method('getAccount') | 
                                                        |
| 1939 | - ->with($loggedInUser)  | 
                                                        |
| 1940 | - ->willReturn($accountMock);  | 
                                                        |
| 1941 | - $this->accountManager->expects($this->once())  | 
                                                        |
| 1942 | -			->method('updateAccount') | 
                                                        |
| 1943 | - ->with($accountMock);  | 
                                                        |
| 1944 | -  | 
                                                        |
| 1945 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', $propertyName, $newValue)->getData()); | 
                                                        |
| 1946 | - }  | 
                                                        |
| 1947 | -  | 
                                                        |
| 1948 | -	public function selfEditChangePropertyScopeProvider() { | 
                                                        |
| 1949 | - return [  | 
                                                        |
| 1950 | - [IAccountManager::PROPERTY_AVATAR, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1951 | - [IAccountManager::PROPERTY_DISPLAYNAME, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1952 | - [IAccountManager::PROPERTY_EMAIL, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1953 | - [IAccountManager::PROPERTY_TWITTER, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1954 | - [IAccountManager::PROPERTY_FEDIVERSE, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1955 | - [IAccountManager::PROPERTY_PHONE, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1956 | - [IAccountManager::PROPERTY_ADDRESS, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1957 | - [IAccountManager::PROPERTY_WEBSITE, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1958 | - [IAccountManager::PROPERTY_ORGANISATION, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1959 | - [IAccountManager::PROPERTY_ROLE, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1960 | - [IAccountManager::PROPERTY_HEADLINE, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1961 | - [IAccountManager::PROPERTY_BIOGRAPHY, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1962 | - [IAccountManager::PROPERTY_PROFILE_ENABLED, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1963 | - [IAccountManager::PROPERTY_PRONOUNS, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1964 | - ];  | 
                                                        |
| 1965 | - }  | 
                                                        |
| 1966 | -  | 
                                                        |
| 1967 | - /**  | 
                                                        |
| 1968 | - * @dataProvider selfEditChangePropertyProvider  | 
                                                        |
| 1969 | - */  | 
                                                        |
| 1970 | -	public function testEditUserRegularUserSelfEditChangePropertyScope($propertyName, $oldScope, $newScope): void { | 
                                                        |
| 1971 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1972 | - ->disableOriginalConstructor()  | 
                                                        |
| 1973 | - ->getMock();  | 
                                                        |
| 1974 | - $loggedInUser  | 
                                                        |
| 1975 | - ->expects($this->any())  | 
                                                        |
| 1976 | -			->method('getUID') | 
                                                        |
| 1977 | -			->willReturn('UID'); | 
                                                        |
| 1978 | - $this->userSession  | 
                                                        |
| 1979 | - ->expects($this->once())  | 
                                                        |
| 1980 | -			->method('getUser') | 
                                                        |
| 1981 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1982 | - $this->userManager  | 
                                                        |
| 1983 | - ->expects($this->once())  | 
                                                        |
| 1984 | -			->method('get') | 
                                                        |
| 1985 | -			->with('UserToEdit') | 
                                                        |
| 1986 | - ->willReturn($loggedInUser);  | 
                                                        |
| 1987 | -  | 
                                                        |
| 1988 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1989 | - $loggedInUser  | 
                                                        |
| 1990 | - ->expects($this->any())  | 
                                                        |
| 1991 | -			->method('getBackend') | 
                                                        |
| 1992 | - ->willReturn($backend);  | 
                                                        |
| 1993 | -  | 
                                                        |
| 1994 | - $propertyMock = $this->createMock(IAccountProperty::class);  | 
                                                        |
| 1995 | - $propertyMock->expects($this->any())  | 
                                                        |
| 1996 | -			->method('getName') | 
                                                        |
| 1997 | - ->willReturn($propertyName);  | 
                                                        |
| 1998 | - $propertyMock->expects($this->any())  | 
                                                        |
| 1999 | -			->method('getValue') | 
                                                        |
| 2000 | -			->willReturn('somevalue'); | 
                                                        |
| 2001 | - $propertyMock->expects($this->any())  | 
                                                        |
| 2002 | -			->method('getScope') | 
                                                        |
| 2003 | - ->willReturn($oldScope);  | 
                                                        |
| 2004 | - $propertyMock->expects($this->atLeastOnce())  | 
                                                        |
| 2005 | -			->method('setScope') | 
                                                        |
| 2006 | - ->with($newScope)  | 
                                                        |
| 2007 | - ->willReturnSelf();  | 
                                                        |
| 2008 | -  | 
                                                        |
| 2009 | - $accountMock = $this->createMock(IAccount::class);  | 
                                                        |
| 2010 | - $accountMock->expects($this->any())  | 
                                                        |
| 2011 | -			->method('getProperty') | 
                                                        |
| 2012 | - ->with($propertyName)  | 
                                                        |
| 2013 | - ->willReturn($propertyMock);  | 
                                                        |
| 2014 | -  | 
                                                        |
| 2015 | - $this->accountManager->expects($this->atLeastOnce())  | 
                                                        |
| 2016 | -			->method('getAccount') | 
                                                        |
| 2017 | - ->with($loggedInUser)  | 
                                                        |
| 2018 | - ->willReturn($accountMock);  | 
                                                        |
| 2019 | - $this->accountManager->expects($this->once())  | 
                                                        |
| 2020 | -			->method('updateAccount') | 
                                                        |
| 2021 | - ->with($accountMock);  | 
                                                        |
| 2022 | -  | 
                                                        |
| 2023 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', $propertyName . 'Scope', $newScope)->getData()); | 
                                                        |
| 2024 | - }  | 
                                                        |
| 2025 | -  | 
                                                        |
| 2026 | -	public function testEditUserRegularUserSelfEditChangePassword(): void { | 
                                                        |
| 2027 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 2028 | - ->disableOriginalConstructor()  | 
                                                        |
| 2029 | - ->getMock();  | 
                                                        |
| 2030 | - $loggedInUser  | 
                                                        |
| 2031 | - ->expects($this->any())  | 
                                                        |
| 2032 | -			->method('getUID') | 
                                                        |
| 2033 | -			->willReturn('UID'); | 
                                                        |
| 2034 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 2035 | - ->disableOriginalConstructor()  | 
                                                        |
| 2036 | - ->getMock();  | 
                                                        |
| 2037 | - $this->userSession  | 
                                                        |
| 2038 | - ->expects($this->once())  | 
                                                        |
| 2039 | -			->method('getUser') | 
                                                        |
| 2040 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2041 | - $this->userManager  | 
                                                        |
| 2042 | - ->expects($this->once())  | 
                                                        |
| 2043 | -			->method('get') | 
                                                        |
| 2044 | -			->with('UserToEdit') | 
                                                        |
| 2045 | - ->willReturn($targetUser);  | 
                                                        |
| 2046 | - $targetUser  | 
                                                        |
| 2047 | - ->expects($this->once())  | 
                                                        |
| 2048 | -			->method('canChangePassword') | 
                                                        |
| 2049 | - ->willReturn(true);  | 
                                                        |
| 2050 | - $targetUser  | 
                                                        |
| 2051 | - ->expects($this->once())  | 
                                                        |
| 2052 | -			->method('setPassword') | 
                                                        |
| 2053 | -			->with('NewPassword'); | 
                                                        |
| 2054 | - $targetUser  | 
                                                        |
| 2055 | - ->expects($this->any())  | 
                                                        |
| 2056 | -			->method('getUID') | 
                                                        |
| 2057 | -			->willReturn('UID'); | 
                                                        |
| 2058 | -  | 
                                                        |
| 2059 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2060 | - $targetUser  | 
                                                        |
| 2061 | - ->expects($this->any())  | 
                                                        |
| 2062 | -			->method('getBackend') | 
                                                        |
| 2063 | - ->willReturn($backend);  | 
                                                        |
| 2064 | -  | 
                                                        |
| 2065 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', 'password', 'NewPassword')->getData()); | 
                                                        |
| 2066 | - }  | 
                                                        |
| 2067 | -  | 
                                                        |
| 2068 | -  | 
                                                        |
| 2069 | -  | 
                                                        |
| 2070 | -	public function testEditUserRegularUserSelfEditChangeQuota(): void { | 
                                                        |
| 2071 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2072 | - $this->expectExceptionCode(113);  | 
                                                        |
| 2073 | -  | 
                                                        |
| 2074 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 2075 | - ->disableOriginalConstructor()  | 
                                                        |
| 2076 | - ->getMock();  | 
                                                        |
| 2077 | - $loggedInUser  | 
                                                        |
| 2078 | - ->expects($this->any())  | 
                                                        |
| 2079 | -			->method('getUID') | 
                                                        |
| 2080 | -			->willReturn('UID'); | 
                                                        |
| 2081 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 2082 | - ->disableOriginalConstructor()  | 
                                                        |
| 2083 | - ->getMock();  | 
                                                        |
| 2084 | - $this->userSession  | 
                                                        |
| 2085 | - ->expects($this->once())  | 
                                                        |
| 2086 | -			->method('getUser') | 
                                                        |
| 2087 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2088 | - $this->userManager  | 
                                                        |
| 2089 | - ->expects($this->once())  | 
                                                        |
| 2090 | -			->method('get') | 
                                                        |
| 2091 | -			->with('UserToEdit') | 
                                                        |
| 2092 | - ->willReturn($targetUser);  | 
                                                        |
| 2093 | - $targetUser  | 
                                                        |
| 2094 | - ->expects($this->any())  | 
                                                        |
| 2095 | -			->method('getUID') | 
                                                        |
| 2096 | -			->willReturn('UID'); | 
                                                        |
| 2097 | -  | 
                                                        |
| 2098 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2099 | - $targetUser  | 
                                                        |
| 2100 | - ->expects($this->any())  | 
                                                        |
| 2101 | -			->method('getBackend') | 
                                                        |
| 2102 | - ->willReturn($backend);  | 
                                                        |
| 2103 | -  | 
                                                        |
| 2104 | -		$this->api->editUser('UserToEdit', 'quota', 'NewQuota'); | 
                                                        |
| 2105 | - }  | 
                                                        |
| 2106 | -  | 
                                                        |
| 2107 | -	public function testEditUserAdminUserSelfEditChangeValidQuota(): void { | 
                                                        |
| 2108 | - $this->config  | 
                                                        |
| 2109 | - ->expects($this->once())  | 
                                                        |
| 2110 | -			->method('getAppValue') | 
                                                        |
| 2111 | -			->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 2112 | -				if ($key === 'max_quota') { | 
                                                        |
| 2113 | - return '-1';  | 
                                                        |
| 2114 | - }  | 
                                                        |
| 2115 | - return null;  | 
                                                        |
| 2116 | - });  | 
                                                        |
| 2117 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2118 | - $loggedInUser  | 
                                                        |
| 2119 | - ->expects($this->any())  | 
                                                        |
| 2120 | -			->method('getUID') | 
                                                        |
| 2121 | -			->willReturn('UID'); | 
                                                        |
| 2122 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2123 | - $targetUser->expects($this->once())  | 
                                                        |
| 2124 | -			->method('setQuota') | 
                                                        |
| 2125 | -			->with('2.9 MB'); | 
                                                        |
| 2126 | - $this->userSession  | 
                                                        |
| 2127 | - ->expects($this->once())  | 
                                                        |
| 2128 | -			->method('getUser') | 
                                                        |
| 2129 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2130 | - $this->userManager  | 
                                                        |
| 2131 | - ->expects($this->once())  | 
                                                        |
| 2132 | -			->method('get') | 
                                                        |
| 2133 | -			->with('UserToEdit') | 
                                                        |
| 2134 | - ->willReturn($targetUser);  | 
                                                        |
| 2135 | - $this->groupManager  | 
                                                        |
| 2136 | - ->expects($this->exactly(3))  | 
                                                        |
| 2137 | -			->method('isAdmin') | 
                                                        |
| 2138 | -			->with('UID') | 
                                                        |
| 2139 | - ->willReturn(true);  | 
                                                        |
| 2140 | - $targetUser  | 
                                                        |
| 2141 | - ->expects($this->any())  | 
                                                        |
| 2142 | -			->method('getUID') | 
                                                        |
| 2143 | -			->willReturn('UID'); | 
                                                        |
| 2144 | -  | 
                                                        |
| 2145 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2146 | - $targetUser  | 
                                                        |
| 2147 | - ->expects($this->any())  | 
                                                        |
| 2148 | -			->method('getBackend') | 
                                                        |
| 2149 | - ->willReturn($backend);  | 
                                                        |
| 2150 | -  | 
                                                        |
| 2151 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', 'quota', '3042824')->getData()); | 
                                                        |
| 2152 | - }  | 
                                                        |
| 2153 | -  | 
                                                        |
| 2154 | -  | 
                                                        |
| 2155 | -  | 
                                                        |
| 2156 | -	public function testEditUserAdminUserSelfEditChangeInvalidQuota(): void { | 
                                                        |
| 2157 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2158 | -		$this->expectExceptionMessage('Invalid quota value: ABC'); | 
                                                        |
| 2159 | - $this->expectExceptionCode(101);  | 
                                                        |
| 2160 | -  | 
                                                        |
| 2161 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2162 | - $loggedInUser  | 
                                                        |
| 2163 | - ->expects($this->any())  | 
                                                        |
| 2164 | -			->method('getUID') | 
                                                        |
| 2165 | -			->willReturn('UID'); | 
                                                        |
| 2166 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2167 | - $this->userSession  | 
                                                        |
| 2168 | - ->expects($this->once())  | 
                                                        |
| 2169 | -			->method('getUser') | 
                                                        |
| 2170 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2171 | - $this->userManager  | 
                                                        |
| 2172 | - ->expects($this->once())  | 
                                                        |
| 2173 | -			->method('get') | 
                                                        |
| 2174 | -			->with('UserToEdit') | 
                                                        |
| 2175 | - ->willReturn($targetUser);  | 
                                                        |
| 2176 | - $this->groupManager  | 
                                                        |
| 2177 | - ->expects($this->exactly(3))  | 
                                                        |
| 2178 | -			->method('isAdmin') | 
                                                        |
| 2179 | -			->with('UID') | 
                                                        |
| 2180 | - ->willReturn(true);  | 
                                                        |
| 2181 | - $targetUser  | 
                                                        |
| 2182 | - ->expects($this->any())  | 
                                                        |
| 2183 | -			->method('getUID') | 
                                                        |
| 2184 | -			->willReturn('UID'); | 
                                                        |
| 2185 | -  | 
                                                        |
| 2186 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2187 | - $targetUser  | 
                                                        |
| 2188 | - ->expects($this->any())  | 
                                                        |
| 2189 | -			->method('getBackend') | 
                                                        |
| 2190 | - ->willReturn($backend);  | 
                                                        |
| 2191 | -  | 
                                                        |
| 2192 | -		$this->api->editUser('UserToEdit', 'quota', 'ABC'); | 
                                                        |
| 2193 | - }  | 
                                                        |
| 2194 | -  | 
                                                        |
| 2195 | -	public function testEditUserAdminUserEditChangeValidQuota(): void { | 
                                                        |
| 2196 | - $this->config  | 
                                                        |
| 2197 | - ->expects($this->once())  | 
                                                        |
| 2198 | -			->method('getAppValue') | 
                                                        |
| 2199 | -			->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 2200 | -				if ($key === 'max_quota') { | 
                                                        |
| 2201 | - return '-1';  | 
                                                        |
| 2202 | - }  | 
                                                        |
| 2203 | - return null;  | 
                                                        |
| 2204 | - });  | 
                                                        |
| 2205 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2206 | - $loggedInUser  | 
                                                        |
| 2207 | - ->expects($this->any())  | 
                                                        |
| 2208 | -			->method('getUID') | 
                                                        |
| 2209 | -			->willReturn('admin'); | 
                                                        |
| 2210 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2211 | - $targetUser->expects($this->once())  | 
                                                        |
| 2212 | -			->method('setQuota') | 
                                                        |
| 2213 | -			->with('2.9 MB'); | 
                                                        |
| 2214 | - $this->userSession  | 
                                                        |
| 2215 | - ->expects($this->once())  | 
                                                        |
| 2216 | -			->method('getUser') | 
                                                        |
| 2217 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2218 | - $this->userManager  | 
                                                        |
| 2219 | - ->expects($this->once())  | 
                                                        |
| 2220 | -			->method('get') | 
                                                        |
| 2221 | -			->with('UserToEdit') | 
                                                        |
| 2222 | - ->willReturn($targetUser);  | 
                                                        |
| 2223 | - $this->groupManager  | 
                                                        |
| 2224 | - ->expects($this->once())  | 
                                                        |
| 2225 | -			->method('isAdmin') | 
                                                        |
| 2226 | -			->with('admin') | 
                                                        |
| 2227 | - ->willReturn(true);  | 
                                                        |
| 2228 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2229 | - ->disableOriginalConstructor()  | 
                                                        |
| 2230 | - ->getMock();  | 
                                                        |
| 2231 | - $this->groupManager  | 
                                                        |
| 2232 | - ->expects($this->once())  | 
                                                        |
| 2233 | -			->method('getSubAdmin') | 
                                                        |
| 2234 | - ->willReturn($subAdminManager);  | 
                                                        |
| 2235 | - $targetUser  | 
                                                        |
| 2236 | - ->expects($this->any())  | 
                                                        |
| 2237 | -			->method('getUID') | 
                                                        |
| 2238 | -			->willReturn('UID'); | 
                                                        |
| 2239 | -  | 
                                                        |
| 2240 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2241 | - $targetUser  | 
                                                        |
| 2242 | - ->expects($this->any())  | 
                                                        |
| 2243 | -			->method('getBackend') | 
                                                        |
| 2244 | - ->willReturn($backend);  | 
                                                        |
| 2245 | -  | 
                                                        |
| 2246 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', 'quota', '3042824')->getData()); | 
                                                        |
| 2247 | - }  | 
                                                        |
| 2248 | -  | 
                                                        |
| 2249 | -	public function testEditUserSelfEditChangeLanguage(): void { | 
                                                        |
| 2250 | - $this->l10nFactory->expects($this->once())  | 
                                                        |
| 2251 | -			->method('findAvailableLanguages') | 
                                                        |
| 2252 | - ->willReturn(['en', 'de', 'sv']);  | 
                                                        |
| 2253 | - $this->config->expects($this->any())  | 
                                                        |
| 2254 | -			->method('getSystemValue') | 
                                                        |
| 2255 | - ->willReturnMap([  | 
                                                        |
| 2256 | - ['allow_user_to_change_display_name', true, true],  | 
                                                        |
| 2257 | - ['force_language', false, false],  | 
                                                        |
| 2258 | - ]);  | 
                                                        |
| 2259 | -  | 
                                                        |
| 2260 | - $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 2261 | - $loggedInUser  | 
                                                        |
| 2262 | - ->expects($this->any())  | 
                                                        |
| 2263 | -			->method('getUID') | 
                                                        |
| 2264 | -			->willReturn('UserToEdit'); | 
                                                        |
| 2265 | - $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 2266 | - $this->config->expects($this->once())  | 
                                                        |
| 2267 | -			->method('setUserValue') | 
                                                        |
| 2268 | -			->with('UserToEdit', 'core', 'lang', 'de'); | 
                                                        |
| 2269 | - $this->userSession  | 
                                                        |
| 2270 | - ->expects($this->once())  | 
                                                        |
| 2271 | -			->method('getUser') | 
                                                        |
| 2272 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2273 | - $this->userManager  | 
                                                        |
| 2274 | - ->expects($this->once())  | 
                                                        |
| 2275 | -			->method('get') | 
                                                        |
| 2276 | -			->with('UserToEdit') | 
                                                        |
| 2277 | - ->willReturn($targetUser);  | 
                                                        |
| 2278 | - $this->groupManager  | 
                                                        |
| 2279 | - ->expects($this->atLeastOnce())  | 
                                                        |
| 2280 | -			->method('isAdmin') | 
                                                        |
| 2281 | -			->with('UserToEdit') | 
                                                        |
| 2282 | - ->willReturn(false);  | 
                                                        |
| 2283 | - $targetUser  | 
                                                        |
| 2284 | - ->expects($this->any())  | 
                                                        |
| 2285 | -			->method('getUID') | 
                                                        |
| 2286 | -			->willReturn('UserToEdit'); | 
                                                        |
| 2287 | -  | 
                                                        |
| 2288 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2289 | - $targetUser  | 
                                                        |
| 2290 | - ->expects($this->any())  | 
                                                        |
| 2291 | -			->method('getBackend') | 
                                                        |
| 2292 | - ->willReturn($backend);  | 
                                                        |
| 2293 | -  | 
                                                        |
| 2294 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', 'language', 'de')->getData()); | 
                                                        |
| 2295 | - }  | 
                                                        |
| 2296 | -  | 
                                                        |
| 2297 | -	public function dataEditUserSelfEditChangeLanguageButForced() { | 
                                                        |
| 2298 | - return [  | 
                                                        |
| 2299 | - ['de'],  | 
                                                        |
| 2300 | - [true],  | 
                                                        |
| 2301 | - ];  | 
                                                        |
| 2302 | - }  | 
                                                        |
| 2303 | -  | 
                                                        |
| 2304 | - /**  | 
                                                        |
| 2305 | - * @dataProvider dataEditUserSelfEditChangeLanguageButForced  | 
                                                        |
| 2306 | - */  | 
                                                        |
| 2307 | -	public function testEditUserSelfEditChangeLanguageButForced($forced): void { | 
                                                        |
| 2308 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2309 | -  | 
                                                        |
| 2310 | - $this->config->expects($this->any())  | 
                                                        |
| 2311 | -			->method('getSystemValue') | 
                                                        |
| 2312 | - ->willReturnMap([  | 
                                                        |
| 2313 | - ['allow_user_to_change_display_name', true, true],  | 
                                                        |
| 2314 | - ['force_language', false, $forced],  | 
                                                        |
| 2315 | - ]);  | 
                                                        |
| 2316 | -  | 
                                                        |
| 2317 | - $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 2318 | - $loggedInUser  | 
                                                        |
| 2319 | - ->expects($this->any())  | 
                                                        |
| 2320 | -			->method('getUID') | 
                                                        |
| 2321 | -			->willReturn('UserToEdit'); | 
                                                        |
| 2322 | - $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 2323 | - $this->config->expects($this->never())  | 
                                                        |
| 2324 | -			->method('setUserValue'); | 
                                                        |
| 2325 | - $this->userSession  | 
                                                        |
| 2326 | - ->expects($this->once())  | 
                                                        |
| 2327 | -			->method('getUser') | 
                                                        |
| 2328 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2329 | - $this->userManager  | 
                                                        |
| 2330 | - ->expects($this->once())  | 
                                                        |
| 2331 | -			->method('get') | 
                                                        |
| 2332 | -			->with('UserToEdit') | 
                                                        |
| 2333 | - ->willReturn($targetUser);  | 
                                                        |
| 2334 | - $this->groupManager  | 
                                                        |
| 2335 | - ->expects($this->atLeastOnce())  | 
                                                        |
| 2336 | -			->method('isAdmin') | 
                                                        |
| 2337 | -			->with('UserToEdit') | 
                                                        |
| 2338 | - ->willReturn(false);  | 
                                                        |
| 2339 | - $targetUser  | 
                                                        |
| 2340 | - ->expects($this->any())  | 
                                                        |
| 2341 | -			->method('getUID') | 
                                                        |
| 2342 | -			->willReturn('UserToEdit'); | 
                                                        |
| 2343 | -  | 
                                                        |
| 2344 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2345 | - $targetUser  | 
                                                        |
| 2346 | - ->expects($this->any())  | 
                                                        |
| 2347 | -			->method('getBackend') | 
                                                        |
| 2348 | - ->willReturn($backend);  | 
                                                        |
| 2349 | -  | 
                                                        |
| 2350 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', 'language', 'de')->getData()); | 
                                                        |
| 2351 | - }  | 
                                                        |
| 2352 | -  | 
                                                        |
| 2353 | -	public function testEditUserAdminEditChangeLanguage(): void { | 
                                                        |
| 2354 | - $this->l10nFactory->expects($this->once())  | 
                                                        |
| 2355 | -			->method('findAvailableLanguages') | 
                                                        |
| 2356 | - ->willReturn(['en', 'de', 'sv']);  | 
                                                        |
| 2357 | -  | 
                                                        |
| 2358 | - $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 2359 | - $loggedInUser  | 
                                                        |
| 2360 | - ->expects($this->any())  | 
                                                        |
| 2361 | -			->method('getUID') | 
                                                        |
| 2362 | -			->willReturn('admin'); | 
                                                        |
| 2363 | - $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 2364 | - $this->config->expects($this->once())  | 
                                                        |
| 2365 | -			->method('setUserValue') | 
                                                        |
| 2366 | -			->with('UserToEdit', 'core', 'lang', 'de'); | 
                                                        |
| 2367 | - $this->userSession  | 
                                                        |
| 2368 | - ->expects($this->once())  | 
                                                        |
| 2369 | -			->method('getUser') | 
                                                        |
| 2370 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2371 | - $this->userManager  | 
                                                        |
| 2372 | - ->expects($this->once())  | 
                                                        |
| 2373 | -			->method('get') | 
                                                        |
| 2374 | -			->with('UserToEdit') | 
                                                        |
| 2375 | - ->willReturn($targetUser);  | 
                                                        |
| 2376 | - $this->groupManager  | 
                                                        |
| 2377 | - ->expects($this->once())  | 
                                                        |
| 2378 | -			->method('isAdmin') | 
                                                        |
| 2379 | -			->with('admin') | 
                                                        |
| 2380 | - ->willReturn(true);  | 
                                                        |
| 2381 | - $subAdminManager = $this->createMock(SubAdmin::class);  | 
                                                        |
| 2382 | - $this->groupManager  | 
                                                        |
| 2383 | - ->expects($this->once())  | 
                                                        |
| 2384 | -			->method('getSubAdmin') | 
                                                        |
| 2385 | - ->willReturn($subAdminManager);  | 
                                                        |
| 2386 | - $targetUser  | 
                                                        |
| 2387 | - ->expects($this->any())  | 
                                                        |
| 2388 | -			->method('getUID') | 
                                                        |
| 2389 | -			->willReturn('UserToEdit'); | 
                                                        |
| 2390 | -  | 
                                                        |
| 2391 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2392 | - $targetUser  | 
                                                        |
| 2393 | - ->expects($this->any())  | 
                                                        |
| 2394 | -			->method('getBackend') | 
                                                        |
| 2395 | - ->willReturn($backend);  | 
                                                        |
| 2396 | -  | 
                                                        |
| 2397 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', 'language', 'de')->getData()); | 
                                                        |
| 2398 | - }  | 
                                                        |
| 2399 | -  | 
                                                        |
| 2400 | - /**  | 
                                                        |
| 2401 | - * @dataProvider dataEditUserSelfEditChangeLanguageButForced  | 
                                                        |
| 2402 | - */  | 
                                                        |
| 2403 | -	public function testEditUserAdminEditChangeLanguageInvalidLanguage(): void { | 
                                                        |
| 2404 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2405 | -  | 
                                                        |
| 2406 | -  | 
                                                        |
| 2407 | - $this->l10nFactory->expects($this->once())  | 
                                                        |
| 2408 | -			->method('findAvailableLanguages') | 
                                                        |
| 2409 | - ->willReturn(['en', 'de', 'sv']);  | 
                                                        |
| 2410 | -  | 
                                                        |
| 2411 | - $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 2412 | - $loggedInUser  | 
                                                        |
| 2413 | - ->expects($this->any())  | 
                                                        |
| 2414 | -			->method('getUID') | 
                                                        |
| 2415 | -			->willReturn('admin'); | 
                                                        |
| 2416 | - $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 2417 | - $this->config->expects($this->never())  | 
                                                        |
| 2418 | -			->method('setUserValue'); | 
                                                        |
| 2419 | - $this->userSession  | 
                                                        |
| 2420 | - ->expects($this->once())  | 
                                                        |
| 2421 | -			->method('getUser') | 
                                                        |
| 2422 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2423 | - $this->userManager  | 
                                                        |
| 2424 | - ->expects($this->once())  | 
                                                        |
| 2425 | -			->method('get') | 
                                                        |
| 2426 | -			->with('UserToEdit') | 
                                                        |
| 2427 | - ->willReturn($targetUser);  | 
                                                        |
| 2428 | - $this->groupManager  | 
                                                        |
| 2429 | - ->expects($this->once())  | 
                                                        |
| 2430 | -			->method('isAdmin') | 
                                                        |
| 2431 | -			->with('admin') | 
                                                        |
| 2432 | - ->willReturn(true);  | 
                                                        |
| 2433 | - $subAdminManager = $this->createMock(SubAdmin::class);  | 
                                                        |
| 2434 | - $this->groupManager  | 
                                                        |
| 2435 | - ->expects($this->once())  | 
                                                        |
| 2436 | -			->method('getSubAdmin') | 
                                                        |
| 2437 | - ->willReturn($subAdminManager);  | 
                                                        |
| 2438 | - $targetUser  | 
                                                        |
| 2439 | - ->expects($this->any())  | 
                                                        |
| 2440 | -			->method('getUID') | 
                                                        |
| 2441 | -			->willReturn('UserToEdit'); | 
                                                        |
| 2442 | -  | 
                                                        |
| 2443 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2444 | - $targetUser  | 
                                                        |
| 2445 | - ->expects($this->any())  | 
                                                        |
| 2446 | -			->method('getBackend') | 
                                                        |
| 2447 | - ->willReturn($backend);  | 
                                                        |
| 2448 | -  | 
                                                        |
| 2449 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', 'language', 'ru')->getData()); | 
                                                        |
| 2450 | - }  | 
                                                        |
| 2451 | -  | 
                                                        |
| 2452 | -	public function testEditUserSubadminUserAccessible(): void { | 
                                                        |
| 2453 | - $this->config  | 
                                                        |
| 2454 | - ->expects($this->once())  | 
                                                        |
| 2455 | -			->method('getAppValue') | 
                                                        |
| 2456 | -			->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 2457 | -				if ($key === 'max_quota') { | 
                                                        |
| 2458 | - return '-1';  | 
                                                        |
| 2459 | - }  | 
                                                        |
| 2460 | - return null;  | 
                                                        |
| 2461 | - });  | 
                                                        |
| 2462 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2463 | - $loggedInUser  | 
                                                        |
| 2464 | - ->expects($this->any())  | 
                                                        |
| 2465 | -			->method('getUID') | 
                                                        |
| 2466 | -			->willReturn('subadmin'); | 
                                                        |
| 2467 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2468 | - $targetUser->expects($this->once())  | 
                                                        |
| 2469 | -			->method('setQuota') | 
                                                        |
| 2470 | -			->with('2.9 MB'); | 
                                                        |
| 2471 | - $this->userSession  | 
                                                        |
| 2472 | - ->expects($this->once())  | 
                                                        |
| 2473 | -			->method('getUser') | 
                                                        |
| 2474 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2475 | - $this->userManager  | 
                                                        |
| 2476 | - ->expects($this->once())  | 
                                                        |
| 2477 | -			->method('get') | 
                                                        |
| 2478 | -			->with('UserToEdit') | 
                                                        |
| 2479 | - ->willReturn($targetUser);  | 
                                                        |
| 2480 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2481 | - ->disableOriginalConstructor()  | 
                                                        |
| 2482 | - ->getMock();  | 
                                                        |
| 2483 | - $subAdminManager  | 
                                                        |
| 2484 | - ->expects($this->once())  | 
                                                        |
| 2485 | -			->method('isUserAccessible') | 
                                                        |
| 2486 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2487 | - ->willReturn(true);  | 
                                                        |
| 2488 | - $this->groupManager  | 
                                                        |
| 2489 | - ->expects($this->once())  | 
                                                        |
| 2490 | -			->method('getSubAdmin') | 
                                                        |
| 2491 | - ->willReturn($subAdminManager);  | 
                                                        |
| 2492 | - $targetUser  | 
                                                        |
| 2493 | - ->expects($this->any())  | 
                                                        |
| 2494 | -			->method('getUID') | 
                                                        |
| 2495 | -			->willReturn('UID'); | 
                                                        |
| 2496 | -  | 
                                                        |
| 2497 | - $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2498 | - $targetUser  | 
                                                        |
| 2499 | - ->expects($this->any())  | 
                                                        |
| 2500 | -			->method('getBackend') | 
                                                        |
| 2501 | - ->willReturn($backend);  | 
                                                        |
| 2502 | -  | 
                                                        |
| 2503 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', 'quota', '3042824')->getData()); | 
                                                        |
| 2504 | - }  | 
                                                        |
| 2505 | -  | 
                                                        |
| 2506 | -  | 
                                                        |
| 2507 | -	public function testEditUserSubadminUserInaccessible(): void { | 
                                                        |
| 2508 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2509 | - $this->expectExceptionCode(998);  | 
                                                        |
| 2510 | -  | 
                                                        |
| 2511 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2512 | - $loggedInUser  | 
                                                        |
| 2513 | - ->expects($this->any())  | 
                                                        |
| 2514 | -			->method('getUID') | 
                                                        |
| 2515 | -			->willReturn('subadmin'); | 
                                                        |
| 2516 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2517 | - $this->userSession  | 
                                                        |
| 2518 | - ->expects($this->once())  | 
                                                        |
| 2519 | -			->method('getUser') | 
                                                        |
| 2520 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2521 | - $this->userManager  | 
                                                        |
| 2522 | - ->expects($this->once())  | 
                                                        |
| 2523 | -			->method('get') | 
                                                        |
| 2524 | -			->with('UserToEdit') | 
                                                        |
| 2525 | - ->willReturn($targetUser);  | 
                                                        |
| 2526 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2527 | - ->disableOriginalConstructor()  | 
                                                        |
| 2528 | - ->getMock();  | 
                                                        |
| 2529 | - $subAdminManager  | 
                                                        |
| 2530 | - ->expects($this->once())  | 
                                                        |
| 2531 | -			->method('isUserAccessible') | 
                                                        |
| 2532 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2533 | - ->willReturn(false);  | 
                                                        |
| 2534 | - $this->groupManager  | 
                                                        |
| 2535 | - ->expects($this->once())  | 
                                                        |
| 2536 | -			->method('getSubAdmin') | 
                                                        |
| 2537 | - ->willReturn($subAdminManager);  | 
                                                        |
| 2538 | - $targetUser  | 
                                                        |
| 2539 | - ->expects($this->any())  | 
                                                        |
| 2540 | -			->method('getUID') | 
                                                        |
| 2541 | -			->willReturn('UID'); | 
                                                        |
| 2542 | -  | 
                                                        |
| 2543 | -		$this->api->editUser('UserToEdit', 'quota', 'value'); | 
                                                        |
| 2544 | - }  | 
                                                        |
| 2545 | -  | 
                                                        |
| 2546 | -  | 
                                                        |
| 2547 | -	public function testDeleteUserNotExistingUser(): void { | 
                                                        |
| 2548 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2549 | - $this->expectExceptionCode(998);  | 
                                                        |
| 2550 | -  | 
                                                        |
| 2551 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2552 | - $loggedInUser  | 
                                                        |
| 2553 | - ->expects($this->any())  | 
                                                        |
| 2554 | -			->method('getUID') | 
                                                        |
| 2555 | -			->willReturn('UserToEdit'); | 
                                                        |
| 2556 | - $this->userSession  | 
                                                        |
| 2557 | - ->expects($this->once())  | 
                                                        |
| 2558 | -			->method('getUser') | 
                                                        |
| 2559 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2560 | - $this->userManager  | 
                                                        |
| 2561 | - ->expects($this->once())  | 
                                                        |
| 2562 | -			->method('get') | 
                                                        |
| 2563 | -			->with('UserToDelete') | 
                                                        |
| 2564 | - ->willReturn(null);  | 
                                                        |
| 2565 | -  | 
                                                        |
| 2566 | -		$this->api->deleteUser('UserToDelete'); | 
                                                        |
| 2567 | - }  | 
                                                        |
| 2568 | -  | 
                                                        |
| 2569 | -  | 
                                                        |
| 2570 | -	public function testDeleteUserSelf(): void { | 
                                                        |
| 2571 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2572 | - $this->expectExceptionCode(101);  | 
                                                        |
| 2573 | -  | 
                                                        |
| 2574 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2575 | - $loggedInUser  | 
                                                        |
| 2576 | - ->expects($this->any())  | 
                                                        |
| 2577 | -			->method('getUID') | 
                                                        |
| 2578 | -			->willReturn('UID'); | 
                                                        |
| 2579 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2580 | - $targetUser  | 
                                                        |
| 2581 | - ->expects($this->once())  | 
                                                        |
| 2582 | -			->method('getUID') | 
                                                        |
| 2583 | -			->willReturn('UID'); | 
                                                        |
| 2584 | - $this->userSession  | 
                                                        |
| 2585 | - ->expects($this->once())  | 
                                                        |
| 2586 | -			->method('getUser') | 
                                                        |
| 2587 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2588 | - $this->userManager  | 
                                                        |
| 2589 | - ->expects($this->once())  | 
                                                        |
| 2590 | -			->method('get') | 
                                                        |
| 2591 | -			->with('UserToDelete') | 
                                                        |
| 2592 | - ->willReturn($targetUser);  | 
                                                        |
| 2593 | -  | 
                                                        |
| 2594 | -		$this->api->deleteUser('UserToDelete'); | 
                                                        |
| 2595 | - }  | 
                                                        |
| 2596 | -  | 
                                                        |
| 2597 | -	public function testDeleteSuccessfulUserAsAdmin(): void { | 
                                                        |
| 2598 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2599 | - $loggedInUser  | 
                                                        |
| 2600 | - ->expects($this->any())  | 
                                                        |
| 2601 | -			->method('getUID') | 
                                                        |
| 2602 | -			->willReturn('admin'); | 
                                                        |
| 2603 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2604 | - $targetUser  | 
                                                        |
| 2605 | - ->expects($this->once())  | 
                                                        |
| 2606 | -			->method('getUID') | 
                                                        |
| 2607 | -			->willReturn('UID'); | 
                                                        |
| 2608 | - $this->userSession  | 
                                                        |
| 2609 | - ->expects($this->once())  | 
                                                        |
| 2610 | -			->method('getUser') | 
                                                        |
| 2611 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2612 | - $this->userManager  | 
                                                        |
| 2613 | - ->expects($this->once())  | 
                                                        |
| 2614 | -			->method('get') | 
                                                        |
| 2615 | -			->with('UserToDelete') | 
                                                        |
| 2616 | - ->willReturn($targetUser);  | 
                                                        |
| 2617 | - $this->groupManager  | 
                                                        |
| 2618 | - ->expects($this->once())  | 
                                                        |
| 2619 | -			->method('isAdmin') | 
                                                        |
| 2620 | -			->with('admin') | 
                                                        |
| 2621 | - ->willReturn(true);  | 
                                                        |
| 2622 | - $targetUser  | 
                                                        |
| 2623 | - ->expects($this->once())  | 
                                                        |
| 2624 | -			->method('delete') | 
                                                        |
| 2625 | - ->willReturn(true);  | 
                                                        |
| 2626 | -  | 
                                                        |
| 2627 | -		$this->assertEquals([], $this->api->deleteUser('UserToDelete')->getData()); | 
                                                        |
| 2628 | - }  | 
                                                        |
| 2629 | -  | 
                                                        |
| 2630 | -  | 
                                                        |
| 2631 | -	public function testDeleteUnsuccessfulUserAsAdmin(): void { | 
                                                        |
| 2632 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2633 | - $this->expectExceptionCode(101);  | 
                                                        |
| 2634 | -  | 
                                                        |
| 2635 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2636 | - $loggedInUser  | 
                                                        |
| 2637 | - ->expects($this->any())  | 
                                                        |
| 2638 | -			->method('getUID') | 
                                                        |
| 2639 | -			->willReturn('admin'); | 
                                                        |
| 2640 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2641 | - $targetUser  | 
                                                        |
| 2642 | - ->expects($this->once())  | 
                                                        |
| 2643 | -			->method('getUID') | 
                                                        |
| 2644 | -			->willReturn('UID'); | 
                                                        |
| 2645 | - $this->userSession  | 
                                                        |
| 2646 | - ->expects($this->once())  | 
                                                        |
| 2647 | -			->method('getUser') | 
                                                        |
| 2648 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2649 | - $this->userManager  | 
                                                        |
| 2650 | - ->expects($this->once())  | 
                                                        |
| 2651 | -			->method('get') | 
                                                        |
| 2652 | -			->with('UserToDelete') | 
                                                        |
| 2653 | - ->willReturn($targetUser);  | 
                                                        |
| 2654 | - $this->groupManager  | 
                                                        |
| 2655 | - ->expects($this->once())  | 
                                                        |
| 2656 | -			->method('isAdmin') | 
                                                        |
| 2657 | -			->with('admin') | 
                                                        |
| 2658 | - ->willReturn(true);  | 
                                                        |
| 2659 | - $targetUser  | 
                                                        |
| 2660 | - ->expects($this->once())  | 
                                                        |
| 2661 | -			->method('delete') | 
                                                        |
| 2662 | - ->willReturn(false);  | 
                                                        |
| 2663 | -  | 
                                                        |
| 2664 | -		$this->api->deleteUser('UserToDelete'); | 
                                                        |
| 2665 | - }  | 
                                                        |
| 2666 | -  | 
                                                        |
| 2667 | -	public function testDeleteSuccessfulUserAsSubadmin(): void { | 
                                                        |
| 2668 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2669 | - $loggedInUser  | 
                                                        |
| 2670 | - ->expects($this->any())  | 
                                                        |
| 2671 | -			->method('getUID') | 
                                                        |
| 2672 | -			->willReturn('subadmin'); | 
                                                        |
| 2673 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2674 | - $targetUser  | 
                                                        |
| 2675 | - ->expects($this->once())  | 
                                                        |
| 2676 | -			->method('getUID') | 
                                                        |
| 2677 | -			->willReturn('UID'); | 
                                                        |
| 2678 | - $this->userSession  | 
                                                        |
| 2679 | - ->expects($this->once())  | 
                                                        |
| 2680 | -			->method('getUser') | 
                                                        |
| 2681 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2682 | - $this->userManager  | 
                                                        |
| 2683 | - ->expects($this->once())  | 
                                                        |
| 2684 | -			->method('get') | 
                                                        |
| 2685 | -			->with('UserToDelete') | 
                                                        |
| 2686 | - ->willReturn($targetUser);  | 
                                                        |
| 2687 | - $this->groupManager  | 
                                                        |
| 2688 | - ->expects($this->once())  | 
                                                        |
| 2689 | -			->method('isAdmin') | 
                                                        |
| 2690 | -			->with('subadmin') | 
                                                        |
| 2691 | - ->willReturn(false);  | 
                                                        |
| 2692 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2693 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2694 | - $subAdminManager  | 
                                                        |
| 2695 | - ->expects($this->once())  | 
                                                        |
| 2696 | -			->method('isUserAccessible') | 
                                                        |
| 2697 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2698 | - ->willReturn(true);  | 
                                                        |
| 2699 | - $this->groupManager  | 
                                                        |
| 2700 | - ->expects($this->once())  | 
                                                        |
| 2701 | -			->method('getSubAdmin') | 
                                                        |
| 2702 | - ->willReturn($subAdminManager);  | 
                                                        |
| 2703 | - $targetUser  | 
                                                        |
| 2704 | - ->expects($this->once())  | 
                                                        |
| 2705 | -			->method('delete') | 
                                                        |
| 2706 | - ->willReturn(true);  | 
                                                        |
| 2707 | -  | 
                                                        |
| 2708 | -		$this->assertEquals([], $this->api->deleteUser('UserToDelete')->getData()); | 
                                                        |
| 2709 | - }  | 
                                                        |
| 2710 | -  | 
                                                        |
| 2711 | -  | 
                                                        |
| 2712 | -	public function testDeleteUnsuccessfulUserAsSubadmin(): void { | 
                                                        |
| 2713 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2714 | - $this->expectExceptionCode(101);  | 
                                                        |
| 2715 | -  | 
                                                        |
| 2716 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2717 | - $loggedInUser  | 
                                                        |
| 2718 | - ->expects($this->any())  | 
                                                        |
| 2719 | -			->method('getUID') | 
                                                        |
| 2720 | -			->willReturn('subadmin'); | 
                                                        |
| 2721 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2722 | - $targetUser  | 
                                                        |
| 2723 | - ->expects($this->once())  | 
                                                        |
| 2724 | -			->method('getUID') | 
                                                        |
| 2725 | -			->willReturn('UID'); | 
                                                        |
| 2726 | - $this->userSession  | 
                                                        |
| 2727 | - ->expects($this->once())  | 
                                                        |
| 2728 | -			->method('getUser') | 
                                                        |
| 2729 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2730 | - $this->userManager  | 
                                                        |
| 2731 | - ->expects($this->once())  | 
                                                        |
| 2732 | -			->method('get') | 
                                                        |
| 2733 | -			->with('UserToDelete') | 
                                                        |
| 2734 | - ->willReturn($targetUser);  | 
                                                        |
| 2735 | - $this->groupManager  | 
                                                        |
| 2736 | - ->expects($this->once())  | 
                                                        |
| 2737 | -			->method('isAdmin') | 
                                                        |
| 2738 | -			->with('subadmin') | 
                                                        |
| 2739 | - ->willReturn(false);  | 
                                                        |
| 2740 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2741 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2742 | - $subAdminManager  | 
                                                        |
| 2743 | - ->expects($this->once())  | 
                                                        |
| 2744 | -			->method('isUserAccessible') | 
                                                        |
| 2745 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2746 | - ->willReturn(true);  | 
                                                        |
| 2747 | - $this->groupManager  | 
                                                        |
| 2748 | - ->expects($this->once())  | 
                                                        |
| 2749 | -			->method('getSubAdmin') | 
                                                        |
| 2750 | - ->willReturn($subAdminManager);  | 
                                                        |
| 2751 | - $targetUser  | 
                                                        |
| 2752 | - ->expects($this->once())  | 
                                                        |
| 2753 | -			->method('delete') | 
                                                        |
| 2754 | - ->willReturn(false);  | 
                                                        |
| 2755 | -  | 
                                                        |
| 2756 | -		$this->api->deleteUser('UserToDelete'); | 
                                                        |
| 2757 | - }  | 
                                                        |
| 2758 | -  | 
                                                        |
| 2759 | -  | 
                                                        |
| 2760 | -	public function testDeleteUserAsSubAdminAndUserIsNotAccessible(): void { | 
                                                        |
| 2761 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2762 | - $this->expectExceptionCode(998);  | 
                                                        |
| 2763 | -  | 
                                                        |
| 2764 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2765 | - $loggedInUser  | 
                                                        |
| 2766 | - ->expects($this->any())  | 
                                                        |
| 2767 | -			->method('getUID') | 
                                                        |
| 2768 | -			->willReturn('subadmin'); | 
                                                        |
| 2769 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2770 | - $targetUser  | 
                                                        |
| 2771 | - ->expects($this->once())  | 
                                                        |
| 2772 | -			->method('getUID') | 
                                                        |
| 2773 | -			->willReturn('UID'); | 
                                                        |
| 2774 | - $this->userSession  | 
                                                        |
| 2775 | - ->expects($this->once())  | 
                                                        |
| 2776 | -			->method('getUser') | 
                                                        |
| 2777 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2778 | - $this->userManager  | 
                                                        |
| 2779 | - ->expects($this->once())  | 
                                                        |
| 2780 | -			->method('get') | 
                                                        |
| 2781 | -			->with('UserToDelete') | 
                                                        |
| 2782 | - ->willReturn($targetUser);  | 
                                                        |
| 2783 | - $this->groupManager  | 
                                                        |
| 2784 | - ->expects($this->once())  | 
                                                        |
| 2785 | -			->method('isAdmin') | 
                                                        |
| 2786 | -			->with('subadmin') | 
                                                        |
| 2787 | - ->willReturn(false);  | 
                                                        |
| 2788 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2789 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2790 | - $subAdminManager  | 
                                                        |
| 2791 | - ->expects($this->once())  | 
                                                        |
| 2792 | -			->method('isUserAccessible') | 
                                                        |
| 2793 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2794 | - ->willReturn(false);  | 
                                                        |
| 2795 | - $this->groupManager  | 
                                                        |
| 2796 | - ->expects($this->once())  | 
                                                        |
| 2797 | -			->method('getSubAdmin') | 
                                                        |
| 2798 | - ->willReturn($subAdminManager);  | 
                                                        |
| 2799 | -  | 
                                                        |
| 2800 | -		$this->api->deleteUser('UserToDelete'); | 
                                                        |
| 2801 | - }  | 
                                                        |
| 2802 | -  | 
                                                        |
| 2803 | -  | 
                                                        |
| 2804 | -	public function testGetUsersGroupsTargetUserNotExisting(): void { | 
                                                        |
| 2805 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2806 | - $this->expectExceptionCode(998);  | 
                                                        |
| 2807 | -  | 
                                                        |
| 2808 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2809 | - $this->userSession  | 
                                                        |
| 2810 | - ->expects($this->once())  | 
                                                        |
| 2811 | -			->method('getUser') | 
                                                        |
| 2812 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2813 | -  | 
                                                        |
| 2814 | -		$this->api->getUsersGroups('UserToLookup'); | 
                                                        |
| 2815 | - }  | 
                                                        |
| 2816 | -  | 
                                                        |
| 2817 | -	public function testGetUsersGroupsSelfTargetted(): void { | 
                                                        |
| 2818 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2819 | - $loggedInUser  | 
                                                        |
| 2820 | - ->expects($this->exactly(3))  | 
                                                        |
| 2821 | -			->method('getUID') | 
                                                        |
| 2822 | -			->willReturn('UserToLookup'); | 
                                                        |
| 2823 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2824 | - $targetUser  | 
                                                        |
| 2825 | - ->expects($this->once())  | 
                                                        |
| 2826 | -			->method('getUID') | 
                                                        |
| 2827 | -			->willReturn('UserToLookup'); | 
                                                        |
| 2828 | - $this->userSession  | 
                                                        |
| 2829 | - ->expects($this->once())  | 
                                                        |
| 2830 | -			->method('getUser') | 
                                                        |
| 2831 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2832 | - $this->userManager  | 
                                                        |
| 2833 | - ->expects($this->once())  | 
                                                        |
| 2834 | -			->method('get') | 
                                                        |
| 2835 | -			->with('UserToLookup') | 
                                                        |
| 2836 | - ->willReturn($targetUser);  | 
                                                        |
| 2837 | - $this->groupManager  | 
                                                        |
| 2838 | - ->expects($this->once())  | 
                                                        |
| 2839 | -			->method('getUserGroupIds') | 
                                                        |
| 2840 | - ->with($targetUser)  | 
                                                        |
| 2841 | - ->willReturn(['DummyValue']);  | 
                                                        |
| 2842 | -  | 
                                                        |
| 2843 | -		$this->assertEquals(['groups' => ['DummyValue']], $this->api->getUsersGroups('UserToLookup')->getData()); | 
                                                        |
| 2844 | - }  | 
                                                        |
| 2845 | -  | 
                                                        |
| 2846 | -	public function testGetUsersGroupsForAdminUser(): void { | 
                                                        |
| 2847 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2848 | - $loggedInUser  | 
                                                        |
| 2849 | - ->expects($this->exactly(3))  | 
                                                        |
| 2850 | -			->method('getUID') | 
                                                        |
| 2851 | -			->willReturn('admin'); | 
                                                        |
| 2852 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2853 | - $targetUser  | 
                                                        |
| 2854 | - ->expects($this->once())  | 
                                                        |
| 2855 | -			->method('getUID') | 
                                                        |
| 2856 | -			->willReturn('UserToLookup'); | 
                                                        |
| 2857 | - $this->userSession  | 
                                                        |
| 2858 | - ->expects($this->once())  | 
                                                        |
| 2859 | -			->method('getUser') | 
                                                        |
| 2860 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2861 | - $this->userManager  | 
                                                        |
| 2862 | - ->expects($this->once())  | 
                                                        |
| 2863 | -			->method('get') | 
                                                        |
| 2864 | -			->with('UserToLookup') | 
                                                        |
| 2865 | - ->willReturn($targetUser);  | 
                                                        |
| 2866 | - $this->groupManager  | 
                                                        |
| 2867 | - ->expects($this->once())  | 
                                                        |
| 2868 | -			->method('getUserGroupIds') | 
                                                        |
| 2869 | - ->with($targetUser)  | 
                                                        |
| 2870 | - ->willReturn(['DummyValue']);  | 
                                                        |
| 2871 | - $this->groupManager  | 
                                                        |
| 2872 | - ->expects($this->once())  | 
                                                        |
| 2873 | -			->method('isAdmin') | 
                                                        |
| 2874 | -			->with('admin') | 
                                                        |
| 2875 | - ->willReturn(true);  | 
                                                        |
| 2876 | -  | 
                                                        |
| 2877 | -		$this->assertEquals(['groups' => ['DummyValue']], $this->api->getUsersGroups('UserToLookup')->getData()); | 
                                                        |
| 2878 | - }  | 
                                                        |
| 2879 | -  | 
                                                        |
| 2880 | -	public function testGetUsersGroupsForSubAdminUserAndUserIsAccessible(): void { | 
                                                        |
| 2881 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2882 | - $loggedInUser  | 
                                                        |
| 2883 | - ->expects($this->exactly(3))  | 
                                                        |
| 2884 | -			->method('getUID') | 
                                                        |
| 2885 | -			->willReturn('subadmin'); | 
                                                        |
| 2886 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2887 | - $targetUser  | 
                                                        |
| 2888 | - ->expects($this->once())  | 
                                                        |
| 2889 | -			->method('getUID') | 
                                                        |
| 2890 | -			->willReturn('UserToLookup'); | 
                                                        |
| 2891 | - $this->userSession  | 
                                                        |
| 2892 | - ->expects($this->once())  | 
                                                        |
| 2893 | -			->method('getUser') | 
                                                        |
| 2894 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2895 | - $this->userManager  | 
                                                        |
| 2896 | - ->expects($this->once())  | 
                                                        |
| 2897 | -			->method('get') | 
                                                        |
| 2898 | -			->with('UserToLookup') | 
                                                        |
| 2899 | - ->willReturn($targetUser);  | 
                                                        |
| 2900 | - $this->groupManager  | 
                                                        |
| 2901 | - ->expects($this->once())  | 
                                                        |
| 2902 | -			->method('isAdmin') | 
                                                        |
| 2903 | -			->with('subadmin') | 
                                                        |
| 2904 | - ->willReturn(false);  | 
                                                        |
| 2905 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2906 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2907 | - $subAdminManager  | 
                                                        |
| 2908 | - ->expects($this->once())  | 
                                                        |
| 2909 | -			->method('isUserAccessible') | 
                                                        |
| 2910 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2911 | - ->willReturn(true);  | 
                                                        |
| 2912 | - $this->groupManager  | 
                                                        |
| 2913 | - ->expects($this->once())  | 
                                                        |
| 2914 | -			->method('getSubAdmin') | 
                                                        |
| 2915 | - ->willReturn($subAdminManager);  | 
                                                        |
| 2916 | -		$group1 = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 2917 | - $group1  | 
                                                        |
| 2918 | - ->expects($this->any())  | 
                                                        |
| 2919 | -			->method('getGID') | 
                                                        |
| 2920 | -			->willReturn('Group1'); | 
                                                        |
| 2921 | -		$group2 = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 2922 | - $group2  | 
                                                        |
| 2923 | - ->expects($this->any())  | 
                                                        |
| 2924 | -			->method('getGID') | 
                                                        |
| 2925 | -			->willReturn('Group2'); | 
                                                        |
| 2926 | - $subAdminManager  | 
                                                        |
| 2927 | - ->expects($this->once())  | 
                                                        |
| 2928 | -			->method('getSubAdminsGroups') | 
                                                        |
| 2929 | - ->with($loggedInUser)  | 
                                                        |
| 2930 | - ->willReturn([$group1, $group2]);  | 
                                                        |
| 2931 | - $this->groupManager  | 
                                                        |
| 2932 | - ->expects($this->any())  | 
                                                        |
| 2933 | -			->method('getUserGroupIds') | 
                                                        |
| 2934 | - ->with($targetUser)  | 
                                                        |
| 2935 | - ->willReturn(['Group1']);  | 
                                                        |
| 2936 | -  | 
                                                        |
| 2937 | -		$this->assertEquals(['groups' => ['Group1']], $this->api->getUsersGroups('UserToLookup')->getData()); | 
                                                        |
| 2938 | - }  | 
                                                        |
| 2939 | -  | 
                                                        |
| 2940 | -  | 
                                                        |
| 2941 | -	public function testGetUsersGroupsForSubAdminUserAndUserIsInaccessible(): void { | 
                                                        |
| 2942 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2943 | - $this->expectExceptionCode(998);  | 
                                                        |
| 2944 | -  | 
                                                        |
| 2945 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2946 | - $loggedInUser  | 
                                                        |
| 2947 | - ->expects($this->exactly(3))  | 
                                                        |
| 2948 | -			->method('getUID') | 
                                                        |
| 2949 | -			->willReturn('subadmin'); | 
                                                        |
| 2950 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2951 | - $targetUser  | 
                                                        |
| 2952 | - ->expects($this->once())  | 
                                                        |
| 2953 | -			->method('getUID') | 
                                                        |
| 2954 | -			->willReturn('UserToLookup'); | 
                                                        |
| 2955 | - $this->userSession  | 
                                                        |
| 2956 | - ->expects($this->once())  | 
                                                        |
| 2957 | -			->method('getUser') | 
                                                        |
| 2958 | - ->willReturn($loggedInUser);  | 
                                                        |
| 2959 | - $this->userManager  | 
                                                        |
| 2960 | - ->expects($this->once())  | 
                                                        |
| 2961 | -			->method('get') | 
                                                        |
| 2962 | -			->with('UserToLookup') | 
                                                        |
| 2963 | - ->willReturn($targetUser);  | 
                                                        |
| 2964 | - $this->groupManager  | 
                                                        |
| 2965 | - ->expects($this->once())  | 
                                                        |
| 2966 | -			->method('isAdmin') | 
                                                        |
| 2967 | -			->with('subadmin') | 
                                                        |
| 2968 | - ->willReturn(false);  | 
                                                        |
| 2969 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2970 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2971 | - $subAdminManager  | 
                                                        |
| 2972 | - ->expects($this->once())  | 
                                                        |
| 2973 | -			->method('isUserAccessible') | 
                                                        |
| 2974 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2975 | - ->willReturn(false);  | 
                                                        |
| 2976 | - $this->groupManager  | 
                                                        |
| 2977 | - ->expects($this->once())  | 
                                                        |
| 2978 | -			->method('getSubAdmin') | 
                                                        |
| 2979 | - ->willReturn($subAdminManager);  | 
                                                        |
| 2980 | - $this->groupManager  | 
                                                        |
| 2981 | - ->expects($this->any())  | 
                                                        |
| 2982 | -			->method('getUserGroupIds') | 
                                                        |
| 2983 | - ->with($targetUser)  | 
                                                        |
| 2984 | - ->willReturn(['Group1']);  | 
                                                        |
| 2985 | -  | 
                                                        |
| 2986 | -		$this->api->getUsersGroups('UserToLookup'); | 
                                                        |
| 2987 | - }  | 
                                                        |
| 2988 | -  | 
                                                        |
| 2989 | -  | 
                                                        |
| 2990 | -	public function testAddToGroupWithTargetGroupNotExisting(): void { | 
                                                        |
| 2991 | - $this->expectException(OCSException::class);  | 
                                                        |
| 2992 | - $this->expectExceptionCode(102);  | 
                                                        |
| 2993 | -  | 
                                                        |
| 2994 | - $this->groupManager->expects($this->once())  | 
                                                        |
| 2995 | -			->method('get') | 
                                                        |
| 2996 | -			->with('GroupToAddTo') | 
                                                        |
| 2997 | - ->willReturn(null);  | 
                                                        |
| 2998 | -  | 
                                                        |
| 2999 | -		$this->api->addToGroup('TargetUser', 'GroupToAddTo'); | 
                                                        |
| 3000 | - }  | 
                                                        |
| 3001 | -  | 
                                                        |
| 3002 | -  | 
                                                        |
| 3003 | -	public function testAddToGroupWithNoGroupSpecified(): void { | 
                                                        |
| 3004 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3005 | - $this->expectExceptionCode(101);  | 
                                                        |
| 3006 | -  | 
                                                        |
| 3007 | -		$this->api->addToGroup('TargetUser'); | 
                                                        |
| 3008 | - }  | 
                                                        |
| 3009 | -  | 
                                                        |
| 3010 | -  | 
                                                        |
| 3011 | -	public function testAddToGroupWithTargetUserNotExisting(): void { | 
                                                        |
| 3012 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3013 | - $this->expectExceptionCode(103);  | 
                                                        |
| 3014 | -  | 
                                                        |
| 3015 | - $targetGroup = $this->createMock(IGroup::class);  | 
                                                        |
| 3016 | - $this->groupManager->expects($this->once())  | 
                                                        |
| 3017 | -			->method('get') | 
                                                        |
| 3018 | -			->with('GroupToAddTo') | 
                                                        |
| 3019 | - ->willReturn($targetGroup);  | 
                                                        |
| 3020 | -  | 
                                                        |
| 3021 | -		$this->api->addToGroup('TargetUser', 'GroupToAddTo'); | 
                                                        |
| 3022 | - }  | 
                                                        |
| 3023 | -  | 
                                                        |
| 3024 | -  | 
                                                        |
| 3025 | -	public function testAddToGroupNoSubadmin(): void { | 
                                                        |
| 3026 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3027 | - $this->expectExceptionCode(104);  | 
                                                        |
| 3028 | -  | 
                                                        |
| 3029 | - $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 3030 | - $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 3031 | - $loggedInUser->expects($this->exactly(2))  | 
                                                        |
| 3032 | -			->method('getUID') | 
                                                        |
| 3033 | -			->willReturn('subadmin'); | 
                                                        |
| 3034 | -  | 
                                                        |
| 3035 | - $targetGroup = $this->createMock(IGroup::class);  | 
                                                        |
| 3036 | - $targetGroup->expects($this->never())  | 
                                                        |
| 3037 | -			->method('addUser') | 
                                                        |
| 3038 | - ->with($targetUser);  | 
                                                        |
| 3039 | -  | 
                                                        |
| 3040 | - $this->groupManager->expects($this->once())  | 
                                                        |
| 3041 | -			->method('get') | 
                                                        |
| 3042 | -			->with('GroupToAddTo') | 
                                                        |
| 3043 | - ->willReturn($targetGroup);  | 
                                                        |
| 3044 | -  | 
                                                        |
| 3045 | -  | 
                                                        |
| 3046 | - $subAdminManager = $this->createMock(SubAdmin::class);  | 
                                                        |
| 3047 | - $subAdminManager->expects($this->once())  | 
                                                        |
| 3048 | -			->method('isSubAdminOfGroup') | 
                                                        |
| 3049 | - ->with($loggedInUser, $targetGroup)  | 
                                                        |
| 3050 | - ->willReturn(false);  | 
                                                        |
| 3051 | -  | 
                                                        |
| 3052 | - $this->groupManager->expects($this->once())  | 
                                                        |
| 3053 | -			->method('getSubAdmin') | 
                                                        |
| 3054 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3055 | - $this->groupManager->expects($this->once())  | 
                                                        |
| 3056 | -			->method('isAdmin') | 
                                                        |
| 3057 | -			->with('subadmin') | 
                                                        |
| 3058 | - ->willReturn(false);  | 
                                                        |
| 3059 | -  | 
                                                        |
| 3060 | - $this->userManager->expects($this->once())  | 
                                                        |
| 3061 | -			->method('get') | 
                                                        |
| 3062 | -			->with('TargetUser') | 
                                                        |
| 3063 | - ->willReturn($targetUser);  | 
                                                        |
| 3064 | -  | 
                                                        |
| 3065 | - $this->userSession->expects($this->once())  | 
                                                        |
| 3066 | -			->method('getUser') | 
                                                        |
| 3067 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3068 | -  | 
                                                        |
| 3069 | -		$this->api->addToGroup('TargetUser', 'GroupToAddTo'); | 
                                                        |
| 3070 | - }  | 
                                                        |
| 3071 | -  | 
                                                        |
| 3072 | -	public function testAddToGroupSuccessAsSubadmin(): void { | 
                                                        |
| 3073 | - $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 3074 | - $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 3075 | - $loggedInUser->expects($this->exactly(2))  | 
                                                        |
| 3076 | -			->method('getUID') | 
                                                        |
| 3077 | -			->willReturn('subadmin'); | 
                                                        |
| 3078 | -  | 
                                                        |
| 3079 | - $targetGroup = $this->createMock(IGroup::class);  | 
                                                        |
| 3080 | - $targetGroup->expects($this->once())  | 
                                                        |
| 3081 | -			->method('addUser') | 
                                                        |
| 3082 | - ->with($targetUser);  | 
                                                        |
| 3083 | -  | 
                                                        |
| 3084 | - $this->groupManager->expects($this->once())  | 
                                                        |
| 3085 | -			->method('get') | 
                                                        |
| 3086 | -			->with('GroupToAddTo') | 
                                                        |
| 3087 | - ->willReturn($targetGroup);  | 
                                                        |
| 49 | + /** @var IUserManager|MockObject */  | 
                                                        |
| 50 | + protected $userManager;  | 
                                                        |
| 51 | + /** @var IConfig|MockObject */  | 
                                                        |
| 52 | + protected $config;  | 
                                                        |
| 53 | + /** @var Manager|MockObject */  | 
                                                        |
| 54 | + protected $groupManager;  | 
                                                        |
| 55 | + /** @var IUserSession|MockObject */  | 
                                                        |
| 56 | + protected $userSession;  | 
                                                        |
| 57 | + /** @var LoggerInterface|MockObject */  | 
                                                        |
| 58 | + protected $logger;  | 
                                                        |
| 59 | + /** @var UsersController|MockObject */  | 
                                                        |
| 60 | + protected $api;  | 
                                                        |
| 61 | + /** @var IAccountManager|MockObject */  | 
                                                        |
| 62 | + protected $accountManager;  | 
                                                        |
| 63 | + /** @var ISubAdmin|MockObject */  | 
                                                        |
| 64 | + protected $subAdminManager;  | 
                                                        |
| 65 | + /** @var IURLGenerator|MockObject */  | 
                                                        |
| 66 | + protected $urlGenerator;  | 
                                                        |
| 67 | + /** @var IRequest|MockObject */  | 
                                                        |
| 68 | + protected $request;  | 
                                                        |
| 69 | + /** @var IFactory|MockObject */  | 
                                                        |
| 70 | + private $l10nFactory;  | 
                                                        |
| 71 | + /** @var NewUserMailHelper|MockObject */  | 
                                                        |
| 72 | + private $newUserMailHelper;  | 
                                                        |
| 73 | + /** @var ISecureRandom|MockObject */  | 
                                                        |
| 74 | + private $secureRandom;  | 
                                                        |
| 75 | + /** @var RemoteWipe|MockObject */  | 
                                                        |
| 76 | + private $remoteWipe;  | 
                                                        |
| 77 | + /** @var KnownUserService|MockObject */  | 
                                                        |
| 78 | + private $knownUserService;  | 
                                                        |
| 79 | + /** @var IEventDispatcher|MockObject */  | 
                                                        |
| 80 | + private $eventDispatcher;  | 
                                                        |
| 81 | + private IRootFolder $rootFolder;  | 
                                                        |
| 82 | + /** @var IPhoneNumberUtil */  | 
                                                        |
| 83 | + private $phoneNumberUtil;  | 
                                                        |
| 84 | +  | 
                                                        |
| 85 | +    protected function setUp(): void { | 
                                                        |
| 86 | + parent::setUp();  | 
                                                        |
| 87 | +  | 
                                                        |
| 88 | + $this->userManager = $this->createMock(IUserManager::class);  | 
                                                        |
| 89 | + $this->config = $this->createMock(IConfig::class);  | 
                                                        |
| 90 | + $this->groupManager = $this->createMock(Manager::class);  | 
                                                        |
| 91 | + $this->userSession = $this->createMock(IUserSession::class);  | 
                                                        |
| 92 | + $this->logger = $this->createMock(LoggerInterface::class);  | 
                                                        |
| 93 | + $this->request = $this->createMock(IRequest::class);  | 
                                                        |
| 94 | + $this->accountManager = $this->createMock(IAccountManager::class);  | 
                                                        |
| 95 | + $this->subAdminManager = $this->createMock(ISubAdmin::class);  | 
                                                        |
| 96 | + $this->urlGenerator = $this->createMock(IURLGenerator::class);  | 
                                                        |
| 97 | + $this->l10nFactory = $this->createMock(IFactory::class);  | 
                                                        |
| 98 | + $this->newUserMailHelper = $this->createMock(NewUserMailHelper::class);  | 
                                                        |
| 99 | + $this->secureRandom = $this->createMock(ISecureRandom::class);  | 
                                                        |
| 100 | + $this->remoteWipe = $this->createMock(RemoteWipe::class);  | 
                                                        |
| 101 | + $this->knownUserService = $this->createMock(KnownUserService::class);  | 
                                                        |
| 102 | + $this->eventDispatcher = $this->createMock(IEventDispatcher::class);  | 
                                                        |
| 103 | + $this->phoneNumberUtil = new PhoneNumberUtil();  | 
                                                        |
| 104 | + $this->rootFolder = $this->createMock(IRootFolder::class);  | 
                                                        |
| 105 | +  | 
                                                        |
| 106 | + $l10n = $this->createMock(IL10N::class);  | 
                                                        |
| 107 | +        $l10n->method('t')->willReturnCallback(fn (string $txt, array $replacement = []) => sprintf($txt, ...$replacement)); | 
                                                        |
| 108 | +        $this->l10nFactory->method('get')->with('provisioning_api')->willReturn($l10n); | 
                                                        |
| 109 | +  | 
                                                        |
| 110 | + $this->api = $this->getMockBuilder(UsersController::class)  | 
                                                        |
| 111 | + ->setConstructorArgs([  | 
                                                        |
| 112 | + 'provisioning_api',  | 
                                                        |
| 113 | + $this->request,  | 
                                                        |
| 114 | + $this->userManager,  | 
                                                        |
| 115 | + $this->config,  | 
                                                        |
| 116 | + $this->groupManager,  | 
                                                        |
| 117 | + $this->userSession,  | 
                                                        |
| 118 | + $this->accountManager,  | 
                                                        |
| 119 | + $this->subAdminManager,  | 
                                                        |
| 120 | + $this->l10nFactory,  | 
                                                        |
| 121 | + $this->rootFolder,  | 
                                                        |
| 122 | + $this->urlGenerator,  | 
                                                        |
| 123 | + $this->logger,  | 
                                                        |
| 124 | + $this->newUserMailHelper,  | 
                                                        |
| 125 | + $this->secureRandom,  | 
                                                        |
| 126 | + $this->remoteWipe,  | 
                                                        |
| 127 | + $this->knownUserService,  | 
                                                        |
| 128 | + $this->eventDispatcher,  | 
                                                        |
| 129 | + $this->phoneNumberUtil,  | 
                                                        |
| 130 | + ])  | 
                                                        |
| 131 | + ->onlyMethods(['fillStorageInfo'])  | 
                                                        |
| 132 | + ->getMock();  | 
                                                        |
| 133 | + }  | 
                                                        |
| 134 | +  | 
                                                        |
| 135 | +    public function testGetUsersAsAdmin(): void { | 
                                                        |
| 136 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 137 | + ->disableOriginalConstructor()  | 
                                                        |
| 138 | + ->getMock();  | 
                                                        |
| 139 | + $loggedInUser  | 
                                                        |
| 140 | + ->expects($this->once())  | 
                                                        |
| 141 | +            ->method('getUID') | 
                                                        |
| 142 | +            ->willReturn('admin'); | 
                                                        |
| 143 | + $this->userSession  | 
                                                        |
| 144 | + ->expects($this->once())  | 
                                                        |
| 145 | +            ->method('getUser') | 
                                                        |
| 146 | + ->willReturn($loggedInUser);  | 
                                                        |
| 147 | + $this->groupManager  | 
                                                        |
| 148 | + ->expects($this->once())  | 
                                                        |
| 149 | +            ->method('isAdmin') | 
                                                        |
| 150 | + ->willReturn(true);  | 
                                                        |
| 151 | + $this->userManager  | 
                                                        |
| 152 | + ->expects($this->once())  | 
                                                        |
| 153 | +            ->method('search') | 
                                                        |
| 154 | +            ->with('MyCustomSearch') | 
                                                        |
| 155 | + ->willReturn(['Admin' => [], 'Foo' => [], 'Bar' => []]);  | 
                                                        |
| 156 | +  | 
                                                        |
| 157 | + $expected = [  | 
                                                        |
| 158 | + 'users' => [  | 
                                                        |
| 159 | + 'Admin',  | 
                                                        |
| 160 | + 'Foo',  | 
                                                        |
| 161 | + 'Bar',  | 
                                                        |
| 162 | + ],  | 
                                                        |
| 163 | + ];  | 
                                                        |
| 164 | +        $this->assertEquals($expected, $this->api->getUsers('MyCustomSearch')->getData()); | 
                                                        |
| 165 | + }  | 
                                                        |
| 166 | +  | 
                                                        |
| 167 | +    public function testGetUsersAsSubAdmin(): void { | 
                                                        |
| 168 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 169 | + ->disableOriginalConstructor()  | 
                                                        |
| 170 | + ->getMock();  | 
                                                        |
| 171 | + $loggedInUser  | 
                                                        |
| 172 | + ->expects($this->once())  | 
                                                        |
| 173 | +            ->method('getUID') | 
                                                        |
| 174 | +            ->willReturn('subadmin'); | 
                                                        |
| 175 | + $this->userSession  | 
                                                        |
| 176 | + ->expects($this->once())  | 
                                                        |
| 177 | +            ->method('getUser') | 
                                                        |
| 178 | + ->willReturn($loggedInUser);  | 
                                                        |
| 179 | + $this->groupManager  | 
                                                        |
| 180 | + ->expects($this->once())  | 
                                                        |
| 181 | +            ->method('isAdmin') | 
                                                        |
| 182 | + ->willReturn(false);  | 
                                                        |
| 183 | +        $firstGroup = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 184 | + ->disableOriginalConstructor()  | 
                                                        |
| 185 | + ->getMock();  | 
                                                        |
| 186 | + $firstGroup  | 
                                                        |
| 187 | + ->expects($this->once())  | 
                                                        |
| 188 | +            ->method('getGID') | 
                                                        |
| 189 | +            ->willReturn('FirstGroup'); | 
                                                        |
| 190 | +        $secondGroup = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 191 | + ->disableOriginalConstructor()  | 
                                                        |
| 192 | + ->getMock();  | 
                                                        |
| 193 | + $secondGroup  | 
                                                        |
| 194 | + ->expects($this->once())  | 
                                                        |
| 195 | +            ->method('getGID') | 
                                                        |
| 196 | +            ->willReturn('SecondGroup'); | 
                                                        |
| 197 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 198 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 199 | + $subAdminManager  | 
                                                        |
| 200 | + ->expects($this->once())  | 
                                                        |
| 201 | +            ->method('isSubAdmin') | 
                                                        |
| 202 | + ->with($loggedInUser)  | 
                                                        |
| 203 | + ->willReturn(true);  | 
                                                        |
| 204 | + $subAdminManager  | 
                                                        |
| 205 | + ->expects($this->once())  | 
                                                        |
| 206 | +            ->method('getSubAdminsGroups') | 
                                                        |
| 207 | + ->with($loggedInUser)  | 
                                                        |
| 208 | + ->willReturn([$firstGroup, $secondGroup]);  | 
                                                        |
| 209 | + $this->groupManager  | 
                                                        |
| 210 | + ->expects($this->once())  | 
                                                        |
| 211 | +            ->method('getSubAdmin') | 
                                                        |
| 212 | + ->willReturn($subAdminManager);  | 
                                                        |
| 213 | + $this->groupManager  | 
                                                        |
| 214 | + ->expects($this->any())  | 
                                                        |
| 215 | +            ->method('displayNamesInGroup') | 
                                                        |
| 216 | + ->will($this->onConsecutiveCalls(['AnotherUserInTheFirstGroup' => []], ['UserInTheSecondGroup' => []]));  | 
                                                        |
| 217 | +  | 
                                                        |
| 218 | + $expected = [  | 
                                                        |
| 219 | + 'users' => [  | 
                                                        |
| 220 | + 'AnotherUserInTheFirstGroup',  | 
                                                        |
| 221 | + 'UserInTheSecondGroup',  | 
                                                        |
| 222 | + ],  | 
                                                        |
| 223 | + ];  | 
                                                        |
| 224 | +        $this->assertEquals($expected, $this->api->getUsers('MyCustomSearch')->getData()); | 
                                                        |
| 225 | + }  | 
                                                        |
| 226 | +  | 
                                                        |
| 227 | +    private function createUserMock(string $uid, bool $enabled): MockObject&IUser { | 
                                                        |
| 228 | + $mockUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 229 | + ->disableOriginalConstructor()  | 
                                                        |
| 230 | + ->getMock();  | 
                                                        |
| 231 | + $mockUser  | 
                                                        |
| 232 | +            ->method('getUID') | 
                                                        |
| 233 | + ->willReturn($uid);  | 
                                                        |
| 234 | + $mockUser  | 
                                                        |
| 235 | +            ->method('isEnabled') | 
                                                        |
| 236 | + ->willReturn($enabled);  | 
                                                        |
| 237 | + return $mockUser;  | 
                                                        |
| 238 | + }  | 
                                                        |
| 239 | +  | 
                                                        |
| 240 | +    public function testGetDisabledUsersAsAdmin(): void { | 
                                                        |
| 241 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 242 | + ->disableOriginalConstructor()  | 
                                                        |
| 243 | + ->getMock();  | 
                                                        |
| 244 | + $loggedInUser  | 
                                                        |
| 245 | + ->expects($this->once())  | 
                                                        |
| 246 | +            ->method('getUID') | 
                                                        |
| 247 | +            ->willReturn('admin'); | 
                                                        |
| 248 | + $this->userSession  | 
                                                        |
| 249 | + ->expects($this->atLeastOnce())  | 
                                                        |
| 250 | +            ->method('getUser') | 
                                                        |
| 251 | + ->willReturn($loggedInUser);  | 
                                                        |
| 252 | + $this->groupManager  | 
                                                        |
| 253 | + ->expects($this->once())  | 
                                                        |
| 254 | +            ->method('isAdmin') | 
                                                        |
| 255 | + ->willReturn(true);  | 
                                                        |
| 256 | + $this->userManager  | 
                                                        |
| 257 | + ->expects($this->once())  | 
                                                        |
| 258 | +            ->method('getDisabledUsers') | 
                                                        |
| 259 | + ->with(3, 0, 'MyCustomSearch')  | 
                                                        |
| 260 | + ->willReturn([  | 
                                                        |
| 261 | +                $this->createUserMock('admin', false), | 
                                                        |
| 262 | +                $this->createUserMock('foo', false), | 
                                                        |
| 263 | +                $this->createUserMock('bar', false), | 
                                                        |
| 264 | + ]);  | 
                                                        |
| 265 | +  | 
                                                        |
| 266 | + $expected = [  | 
                                                        |
| 267 | + 'users' => [  | 
                                                        |
| 268 | + 'admin' => ['id' => 'admin'],  | 
                                                        |
| 269 | + 'foo' => ['id' => 'foo'],  | 
                                                        |
| 270 | + 'bar' => ['id' => 'bar'],  | 
                                                        |
| 271 | + ],  | 
                                                        |
| 272 | + ];  | 
                                                        |
| 273 | +        $this->assertEquals($expected, $this->api->getDisabledUsersDetails('MyCustomSearch', 3)->getData()); | 
                                                        |
| 274 | + }  | 
                                                        |
| 275 | +  | 
                                                        |
| 276 | +    public function testGetDisabledUsersAsSubAdmin(): void { | 
                                                        |
| 277 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 278 | + ->disableOriginalConstructor()  | 
                                                        |
| 279 | + ->getMock();  | 
                                                        |
| 280 | + $loggedInUser  | 
                                                        |
| 281 | + ->expects($this->once())  | 
                                                        |
| 282 | +            ->method('getUID') | 
                                                        |
| 283 | +            ->willReturn('subadmin'); | 
                                                        |
| 284 | + $this->userSession  | 
                                                        |
| 285 | + ->expects($this->atLeastOnce())  | 
                                                        |
| 286 | +            ->method('getUser') | 
                                                        |
| 287 | + ->willReturn($loggedInUser);  | 
                                                        |
| 288 | + $this->groupManager  | 
                                                        |
| 289 | + ->expects($this->once())  | 
                                                        |
| 290 | +            ->method('isAdmin') | 
                                                        |
| 291 | + ->willReturn(false);  | 
                                                        |
| 292 | +        $firstGroup = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 293 | + ->disableOriginalConstructor()  | 
                                                        |
| 294 | + ->getMock();  | 
                                                        |
| 295 | +        $secondGroup = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 296 | + ->disableOriginalConstructor()  | 
                                                        |
| 297 | + ->getMock();  | 
                                                        |
| 298 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 299 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 300 | + $subAdminManager  | 
                                                        |
| 301 | + ->expects($this->once())  | 
                                                        |
| 302 | +            ->method('isSubAdmin') | 
                                                        |
| 303 | + ->with($loggedInUser)  | 
                                                        |
| 304 | + ->willReturn(true);  | 
                                                        |
| 305 | + $subAdminManager  | 
                                                        |
| 306 | + ->expects($this->once())  | 
                                                        |
| 307 | +            ->method('getSubAdminsGroups') | 
                                                        |
| 308 | + ->with($loggedInUser)  | 
                                                        |
| 309 | + ->willReturn([$firstGroup, $secondGroup]);  | 
                                                        |
| 310 | + $this->groupManager  | 
                                                        |
| 311 | + ->expects($this->once())  | 
                                                        |
| 312 | +            ->method('getSubAdmin') | 
                                                        |
| 313 | + ->willReturn($subAdminManager);  | 
                                                        |
| 314 | + $this->groupManager  | 
                                                        |
| 315 | + ->expects($this->never())  | 
                                                        |
| 316 | +            ->method('displayNamesInGroup'); | 
                                                        |
| 317 | +  | 
                                                        |
| 318 | + $firstGroup  | 
                                                        |
| 319 | + ->expects($this->once())  | 
                                                        |
| 320 | +            ->method('searchUsers') | 
                                                        |
| 321 | +            ->with('MyCustomSearch') | 
                                                        |
| 322 | + ->willReturn([  | 
                                                        |
| 323 | +                $this->createUserMock('user1', false), | 
                                                        |
| 324 | +                $this->createUserMock('bob', true), | 
                                                        |
| 325 | +                $this->createUserMock('user2', false), | 
                                                        |
| 326 | +                $this->createUserMock('alice', true), | 
                                                        |
| 327 | + ]);  | 
                                                        |
| 328 | +  | 
                                                        |
| 329 | + $secondGroup  | 
                                                        |
| 330 | + ->expects($this->once())  | 
                                                        |
| 331 | +            ->method('searchUsers') | 
                                                        |
| 332 | +            ->with('MyCustomSearch') | 
                                                        |
| 333 | + ->willReturn([  | 
                                                        |
| 334 | +                $this->createUserMock('user2', false), | 
                                                        |
| 335 | +                $this->createUserMock('joe', true), | 
                                                        |
| 336 | +                $this->createUserMock('user3', false), | 
                                                        |
| 337 | +                $this->createUserMock('jim', true), | 
                                                        |
| 338 | +                $this->createUserMock('john', true), | 
                                                        |
| 339 | + ]);  | 
                                                        |
| 340 | +  | 
                                                        |
| 341 | +  | 
                                                        |
| 342 | + $expected = [  | 
                                                        |
| 343 | + 'users' => [  | 
                                                        |
| 344 | + 'user1' => ['id' => 'user1'],  | 
                                                        |
| 345 | + 'user2' => ['id' => 'user2'],  | 
                                                        |
| 346 | + 'user3' => ['id' => 'user3'],  | 
                                                        |
| 347 | + ],  | 
                                                        |
| 348 | + ];  | 
                                                        |
| 349 | +        $this->assertEquals($expected, $this->api->getDisabledUsersDetails('MyCustomSearch', 3)->getData()); | 
                                                        |
| 350 | + }  | 
                                                        |
| 351 | +  | 
                                                        |
| 352 | +  | 
                                                        |
| 353 | +    public function testAddUserAlreadyExisting(): void { | 
                                                        |
| 354 | + $this->expectException(OCSException::class);  | 
                                                        |
| 355 | + $this->expectExceptionCode(102);  | 
                                                        |
| 356 | +  | 
                                                        |
| 357 | + $this->userManager  | 
                                                        |
| 358 | + ->expects($this->once())  | 
                                                        |
| 359 | +            ->method('userExists') | 
                                                        |
| 360 | +            ->with('AlreadyExistingUser') | 
                                                        |
| 361 | + ->willReturn(true);  | 
                                                        |
| 362 | + $this->logger  | 
                                                        |
| 363 | + ->expects($this->once())  | 
                                                        |
| 364 | +            ->method('error') | 
                                                        |
| 365 | +            ->with('Failed addUser attempt: User already exists.', ['app' => 'ocs_api']); | 
                                                        |
| 366 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 367 | + ->disableOriginalConstructor()  | 
                                                        |
| 368 | + ->getMock();  | 
                                                        |
| 369 | + $loggedInUser  | 
                                                        |
| 370 | + ->expects($this->exactly(2))  | 
                                                        |
| 371 | +            ->method('getUID') | 
                                                        |
| 372 | +            ->willReturn('adminUser'); | 
                                                        |
| 373 | + $this->userSession  | 
                                                        |
| 374 | + ->expects($this->once())  | 
                                                        |
| 375 | +            ->method('getUser') | 
                                                        |
| 376 | + ->willReturn($loggedInUser);  | 
                                                        |
| 377 | + $this->groupManager  | 
                                                        |
| 378 | + ->expects($this->once())  | 
                                                        |
| 379 | +            ->method('isAdmin') | 
                                                        |
| 380 | +            ->with('adminUser') | 
                                                        |
| 381 | + ->willReturn(true);  | 
                                                        |
| 382 | +  | 
                                                        |
| 383 | +        $this->api->addUser('AlreadyExistingUser', 'password', '', '', []); | 
                                                        |
| 384 | + }  | 
                                                        |
| 385 | +  | 
                                                        |
| 386 | +  | 
                                                        |
| 387 | +    public function testAddUserNonExistingGroup(): void { | 
                                                        |
| 388 | + $this->expectException(OCSException::class);  | 
                                                        |
| 389 | +        $this->expectExceptionMessage('Group NonExistingGroup does not exist'); | 
                                                        |
| 390 | + $this->expectExceptionCode(104);  | 
                                                        |
| 391 | +  | 
                                                        |
| 392 | + $this->userManager  | 
                                                        |
| 393 | + ->expects($this->once())  | 
                                                        |
| 394 | +            ->method('userExists') | 
                                                        |
| 395 | +            ->with('NewUser') | 
                                                        |
| 396 | + ->willReturn(false);  | 
                                                        |
| 397 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 398 | + ->disableOriginalConstructor()  | 
                                                        |
| 399 | + ->getMock();  | 
                                                        |
| 400 | + $loggedInUser  | 
                                                        |
| 401 | + ->expects($this->exactly(2))  | 
                                                        |
| 402 | +            ->method('getUID') | 
                                                        |
| 403 | +            ->willReturn('adminUser'); | 
                                                        |
| 404 | + $this->userSession  | 
                                                        |
| 405 | + ->expects($this->once())  | 
                                                        |
| 406 | +            ->method('getUser') | 
                                                        |
| 407 | + ->willReturn($loggedInUser);  | 
                                                        |
| 408 | + $this->groupManager  | 
                                                        |
| 409 | + ->expects($this->once())  | 
                                                        |
| 410 | +            ->method('isAdmin') | 
                                                        |
| 411 | +            ->with('adminUser') | 
                                                        |
| 412 | + ->willReturn(true);  | 
                                                        |
| 413 | + $this->groupManager  | 
                                                        |
| 414 | + ->expects($this->once())  | 
                                                        |
| 415 | +            ->method('groupExists') | 
                                                        |
| 416 | +            ->with('NonExistingGroup') | 
                                                        |
| 417 | + ->willReturn(false);  | 
                                                        |
| 418 | +  | 
                                                        |
| 419 | +        $this->api->addUser('NewUser', 'pass', '', '', ['NonExistingGroup']); | 
                                                        |
| 420 | + }  | 
                                                        |
| 421 | +  | 
                                                        |
| 422 | +  | 
                                                        |
| 423 | +    public function testAddUserExistingGroupNonExistingGroup(): void { | 
                                                        |
| 424 | + $this->expectException(OCSException::class);  | 
                                                        |
| 425 | +        $this->expectExceptionMessage('Group NonExistingGroup does not exist'); | 
                                                        |
| 426 | + $this->expectExceptionCode(104);  | 
                                                        |
| 427 | +  | 
                                                        |
| 428 | + $this->userManager  | 
                                                        |
| 429 | + ->expects($this->once())  | 
                                                        |
| 430 | +            ->method('userExists') | 
                                                        |
| 431 | +            ->with('NewUser') | 
                                                        |
| 432 | + ->willReturn(false);  | 
                                                        |
| 433 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 434 | + ->disableOriginalConstructor()  | 
                                                        |
| 435 | + ->getMock();  | 
                                                        |
| 436 | + $loggedInUser  | 
                                                        |
| 437 | + ->expects($this->exactly(2))  | 
                                                        |
| 438 | +            ->method('getUID') | 
                                                        |
| 439 | +            ->willReturn('adminUser'); | 
                                                        |
| 440 | + $this->userSession  | 
                                                        |
| 441 | + ->expects($this->once())  | 
                                                        |
| 442 | +            ->method('getUser') | 
                                                        |
| 443 | + ->willReturn($loggedInUser);  | 
                                                        |
| 444 | + $this->groupManager  | 
                                                        |
| 445 | + ->expects($this->once())  | 
                                                        |
| 446 | +            ->method('isAdmin') | 
                                                        |
| 447 | +            ->with('adminUser') | 
                                                        |
| 448 | + ->willReturn(true);  | 
                                                        |
| 449 | + $this->groupManager  | 
                                                        |
| 450 | + ->expects($this->exactly(2))  | 
                                                        |
| 451 | +            ->method('groupExists') | 
                                                        |
| 452 | + ->withConsecutive(  | 
                                                        |
| 453 | + ['ExistingGroup'],  | 
                                                        |
| 454 | + ['NonExistingGroup']  | 
                                                        |
| 455 | + )  | 
                                                        |
| 456 | + ->willReturnMap([  | 
                                                        |
| 457 | + ['ExistingGroup', true],  | 
                                                        |
| 458 | + ['NonExistingGroup', false]  | 
                                                        |
| 459 | + ]);  | 
                                                        |
| 460 | +  | 
                                                        |
| 461 | +        $this->api->addUser('NewUser', 'pass', '', '', ['ExistingGroup', 'NonExistingGroup']); | 
                                                        |
| 462 | + }  | 
                                                        |
| 463 | +  | 
                                                        |
| 464 | +    public function testAddUserSuccessful(): void { | 
                                                        |
| 465 | + $this->userManager  | 
                                                        |
| 466 | + ->expects($this->once())  | 
                                                        |
| 467 | +            ->method('userExists') | 
                                                        |
| 468 | +            ->with('NewUser') | 
                                                        |
| 469 | + ->willReturn(false);  | 
                                                        |
| 470 | + $this->userManager  | 
                                                        |
| 471 | + ->expects($this->once())  | 
                                                        |
| 472 | +            ->method('createUser') | 
                                                        |
| 473 | +            ->with('NewUser', 'PasswordOfTheNewUser'); | 
                                                        |
| 474 | + $this->logger  | 
                                                        |
| 475 | + ->expects($this->once())  | 
                                                        |
| 476 | +            ->method('info') | 
                                                        |
| 477 | +            ->with('Successful addUser call with userid: NewUser', ['app' => 'ocs_api']); | 
                                                        |
| 478 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 479 | + ->disableOriginalConstructor()  | 
                                                        |
| 480 | + ->getMock();  | 
                                                        |
| 481 | + $loggedInUser  | 
                                                        |
| 482 | + ->expects($this->exactly(2))  | 
                                                        |
| 483 | +            ->method('getUID') | 
                                                        |
| 484 | +            ->willReturn('adminUser'); | 
                                                        |
| 485 | + $this->userSession  | 
                                                        |
| 486 | + ->expects($this->once())  | 
                                                        |
| 487 | +            ->method('getUser') | 
                                                        |
| 488 | + ->willReturn($loggedInUser);  | 
                                                        |
| 489 | + $this->groupManager  | 
                                                        |
| 490 | + ->expects($this->once())  | 
                                                        |
| 491 | +            ->method('isAdmin') | 
                                                        |
| 492 | +            ->with('adminUser') | 
                                                        |
| 493 | + ->willReturn(true);  | 
                                                        |
| 494 | +  | 
                                                        |
| 495 | + $this->assertTrue(key_exists(  | 
                                                        |
| 496 | + 'id',  | 
                                                        |
| 497 | +            $this->api->addUser('NewUser', 'PasswordOfTheNewUser')->getData() | 
                                                        |
| 498 | + ));  | 
                                                        |
| 499 | + }  | 
                                                        |
| 500 | +  | 
                                                        |
| 501 | +    public function testAddUserSuccessfulWithDisplayName(): void { | 
                                                        |
| 502 | + /**  | 
                                                        |
| 503 | + * @var UserController  | 
                                                        |
| 504 | + */  | 
                                                        |
| 505 | + $api = $this->getMockBuilder(UsersController::class)  | 
                                                        |
| 506 | + ->setConstructorArgs([  | 
                                                        |
| 507 | + 'provisioning_api',  | 
                                                        |
| 508 | + $this->request,  | 
                                                        |
| 509 | + $this->userManager,  | 
                                                        |
| 510 | + $this->config,  | 
                                                        |
| 511 | + $this->groupManager,  | 
                                                        |
| 512 | + $this->userSession,  | 
                                                        |
| 513 | + $this->accountManager,  | 
                                                        |
| 514 | + $this->subAdminManager,  | 
                                                        |
| 515 | + $this->l10nFactory,  | 
                                                        |
| 516 | + $this->rootFolder,  | 
                                                        |
| 517 | + $this->urlGenerator,  | 
                                                        |
| 518 | + $this->logger,  | 
                                                        |
| 519 | + $this->newUserMailHelper,  | 
                                                        |
| 520 | + $this->secureRandom,  | 
                                                        |
| 521 | + $this->remoteWipe,  | 
                                                        |
| 522 | + $this->knownUserService,  | 
                                                        |
| 523 | + $this->eventDispatcher,  | 
                                                        |
| 524 | + $this->phoneNumberUtil,  | 
                                                        |
| 525 | + ])  | 
                                                        |
| 526 | + ->onlyMethods(['editUser'])  | 
                                                        |
| 527 | + ->getMock();  | 
                                                        |
| 528 | +  | 
                                                        |
| 529 | + $this->userManager  | 
                                                        |
| 530 | + ->expects($this->once())  | 
                                                        |
| 531 | +            ->method('userExists') | 
                                                        |
| 532 | +            ->with('NewUser') | 
                                                        |
| 533 | + ->willReturn(false);  | 
                                                        |
| 534 | + $this->userManager  | 
                                                        |
| 535 | + ->expects($this->once())  | 
                                                        |
| 536 | +            ->method('createUser') | 
                                                        |
| 537 | +            ->with('NewUser', 'PasswordOfTheNewUser'); | 
                                                        |
| 538 | + $this->logger  | 
                                                        |
| 539 | + ->expects($this->once())  | 
                                                        |
| 540 | +            ->method('info') | 
                                                        |
| 541 | +            ->with('Successful addUser call with userid: NewUser', ['app' => 'ocs_api']); | 
                                                        |
| 542 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 543 | + ->disableOriginalConstructor()  | 
                                                        |
| 544 | + ->getMock();  | 
                                                        |
| 545 | + $loggedInUser  | 
                                                        |
| 546 | + ->expects($this->any())  | 
                                                        |
| 547 | +            ->method('getUID') | 
                                                        |
| 548 | +            ->willReturn('adminUser'); | 
                                                        |
| 549 | + $this->userSession  | 
                                                        |
| 550 | + ->expects($this->any())  | 
                                                        |
| 551 | +            ->method('getUser') | 
                                                        |
| 552 | + ->willReturn($loggedInUser);  | 
                                                        |
| 553 | + $this->groupManager  | 
                                                        |
| 554 | + ->expects($this->once())  | 
                                                        |
| 555 | +            ->method('isAdmin') | 
                                                        |
| 556 | +            ->with('adminUser') | 
                                                        |
| 557 | + ->willReturn(true);  | 
                                                        |
| 558 | + $api  | 
                                                        |
| 559 | + ->expects($this->once())  | 
                                                        |
| 560 | +            ->method('editUser') | 
                                                        |
| 561 | +            ->with('NewUser', 'display', 'DisplayNameOfTheNewUser'); | 
                                                        |
| 562 | +  | 
                                                        |
| 563 | + $this->assertTrue(key_exists(  | 
                                                        |
| 564 | + 'id',  | 
                                                        |
| 565 | +            $api->addUser('NewUser', 'PasswordOfTheNewUser', 'DisplayNameOfTheNewUser')->getData() | 
                                                        |
| 566 | + ));  | 
                                                        |
| 567 | + }  | 
                                                        |
| 568 | +  | 
                                                        |
| 569 | +    public function testAddUserSuccessfulGenerateUserID(): void { | 
                                                        |
| 570 | + $this->config  | 
                                                        |
| 571 | + ->expects($this->any())  | 
                                                        |
| 572 | +            ->method('getAppValue') | 
                                                        |
| 573 | +            ->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 574 | +                if ($key === 'newUser.generateUserID') { | 
                                                        |
| 575 | + return 'yes';  | 
                                                        |
| 576 | + }  | 
                                                        |
| 577 | + return null;  | 
                                                        |
| 578 | + });  | 
                                                        |
| 579 | + $this->userManager  | 
                                                        |
| 580 | + ->expects($this->any())  | 
                                                        |
| 581 | +            ->method('userExists') | 
                                                        |
| 582 | + ->with($this->anything())  | 
                                                        |
| 583 | + ->willReturn(false);  | 
                                                        |
| 584 | + $this->userManager  | 
                                                        |
| 585 | + ->expects($this->once())  | 
                                                        |
| 586 | +            ->method('createUser') | 
                                                        |
| 587 | + ->with($this->anything(), 'PasswordOfTheNewUser');  | 
                                                        |
| 588 | + $this->logger  | 
                                                        |
| 589 | + ->expects($this->once())  | 
                                                        |
| 590 | +            ->method('info') | 
                                                        |
| 591 | +            ->with($this->stringStartsWith('Successful addUser call with userid: '), ['app' => 'ocs_api']); | 
                                                        |
| 592 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 593 | + ->disableOriginalConstructor()  | 
                                                        |
| 594 | + ->getMock();  | 
                                                        |
| 595 | + $loggedInUser  | 
                                                        |
| 596 | + ->expects($this->exactly(2))  | 
                                                        |
| 597 | +            ->method('getUID') | 
                                                        |
| 598 | +            ->willReturn('adminUser'); | 
                                                        |
| 599 | + $this->userSession  | 
                                                        |
| 600 | + ->expects($this->once())  | 
                                                        |
| 601 | +            ->method('getUser') | 
                                                        |
| 602 | + ->willReturn($loggedInUser);  | 
                                                        |
| 603 | + $this->groupManager  | 
                                                        |
| 604 | + ->expects($this->once())  | 
                                                        |
| 605 | +            ->method('isAdmin') | 
                                                        |
| 606 | +            ->with('adminUser') | 
                                                        |
| 607 | + ->willReturn(true);  | 
                                                        |
| 608 | + $this->secureRandom->expects($this->any())  | 
                                                        |
| 609 | +            ->method('generate') | 
                                                        |
| 610 | + ->with(10)  | 
                                                        |
| 611 | +            ->willReturnCallback(function () { | 
                                                        |
| 612 | + return (string)rand(100000000, 999999999);  | 
                                                        |
| 613 | + });  | 
                                                        |
| 614 | +  | 
                                                        |
| 615 | + $this->assertTrue(key_exists(  | 
                                                        |
| 616 | + 'id',  | 
                                                        |
| 617 | +            $this->api->addUser('', 'PasswordOfTheNewUser')->getData() | 
                                                        |
| 618 | + ));  | 
                                                        |
| 619 | + }  | 
                                                        |
| 620 | +  | 
                                                        |
| 621 | +    public function testAddUserSuccessfulGeneratePassword(): void { | 
                                                        |
| 622 | + $this->userManager  | 
                                                        |
| 623 | + ->expects($this->once())  | 
                                                        |
| 624 | +            ->method('userExists') | 
                                                        |
| 625 | +            ->with('NewUser') | 
                                                        |
| 626 | + ->willReturn(false);  | 
                                                        |
| 627 | + $newUser = $this->createMock(IUser::class);  | 
                                                        |
| 628 | + $newUser->expects($this->once())  | 
                                                        |
| 629 | +            ->method('setEMailAddress'); | 
                                                        |
| 630 | + $this->userManager  | 
                                                        |
| 631 | + ->expects($this->once())  | 
                                                        |
| 632 | +            ->method('createUser') | 
                                                        |
| 633 | + ->willReturn($newUser);  | 
                                                        |
| 634 | + $this->logger  | 
                                                        |
| 635 | + ->expects($this->once())  | 
                                                        |
| 636 | +            ->method('info') | 
                                                        |
| 637 | +            ->with('Successful addUser call with userid: NewUser', ['app' => 'ocs_api']); | 
                                                        |
| 638 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 639 | + ->disableOriginalConstructor()  | 
                                                        |
| 640 | + ->getMock();  | 
                                                        |
| 641 | + $loggedInUser  | 
                                                        |
| 642 | + ->expects($this->exactly(2))  | 
                                                        |
| 643 | +            ->method('getUID') | 
                                                        |
| 644 | +            ->willReturn('adminUser'); | 
                                                        |
| 645 | + $this->userSession  | 
                                                        |
| 646 | + ->expects($this->once())  | 
                                                        |
| 647 | +            ->method('getUser') | 
                                                        |
| 648 | + ->willReturn($loggedInUser);  | 
                                                        |
| 649 | + $this->groupManager  | 
                                                        |
| 650 | + ->expects($this->once())  | 
                                                        |
| 651 | +            ->method('isAdmin') | 
                                                        |
| 652 | +            ->with('adminUser') | 
                                                        |
| 653 | + ->willReturn(true);  | 
                                                        |
| 654 | + $this->eventDispatcher  | 
                                                        |
| 655 | + ->expects($this->once())  | 
                                                        |
| 656 | +            ->method('dispatchTyped') | 
                                                        |
| 657 | + ->with(new GenerateSecurePasswordEvent());  | 
                                                        |
| 658 | +  | 
                                                        |
| 659 | + $this->assertTrue(key_exists(  | 
                                                        |
| 660 | + 'id',  | 
                                                        |
| 661 | +            $this->api->addUser('NewUser', '', '', 'foo@bar')->getData() | 
                                                        |
| 662 | + ));  | 
                                                        |
| 663 | + }  | 
                                                        |
| 664 | +  | 
                                                        |
| 665 | +  | 
                                                        |
| 666 | +    public function testAddUserFailedToGenerateUserID(): void { | 
                                                        |
| 667 | + $this->expectException(OCSException::class);  | 
                                                        |
| 668 | +        $this->expectExceptionMessage('Could not create non-existing user ID'); | 
                                                        |
| 669 | + $this->expectExceptionCode(111);  | 
                                                        |
| 670 | +  | 
                                                        |
| 671 | + $this->config  | 
                                                        |
| 672 | + ->expects($this->any())  | 
                                                        |
| 673 | +            ->method('getAppValue') | 
                                                        |
| 674 | +            ->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 675 | +                if ($key === 'newUser.generateUserID') { | 
                                                        |
| 676 | + return 'yes';  | 
                                                        |
| 677 | + }  | 
                                                        |
| 678 | + return null;  | 
                                                        |
| 679 | + });  | 
                                                        |
| 680 | + $this->userManager  | 
                                                        |
| 681 | + ->expects($this->any())  | 
                                                        |
| 682 | +            ->method('userExists') | 
                                                        |
| 683 | + ->with($this->anything())  | 
                                                        |
| 684 | + ->willReturn(true);  | 
                                                        |
| 685 | + $this->userManager  | 
                                                        |
| 686 | + ->expects($this->never())  | 
                                                        |
| 687 | +            ->method('createUser'); | 
                                                        |
| 688 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 689 | + ->disableOriginalConstructor()  | 
                                                        |
| 690 | + ->getMock();  | 
                                                        |
| 691 | + $loggedInUser  | 
                                                        |
| 692 | + ->expects($this->exactly(2))  | 
                                                        |
| 693 | +            ->method('getUID') | 
                                                        |
| 694 | +            ->willReturn('adminUser'); | 
                                                        |
| 695 | + $this->userSession  | 
                                                        |
| 696 | + ->expects($this->once())  | 
                                                        |
| 697 | +            ->method('getUser') | 
                                                        |
| 698 | + ->willReturn($loggedInUser);  | 
                                                        |
| 699 | + $this->groupManager  | 
                                                        |
| 700 | + ->expects($this->once())  | 
                                                        |
| 701 | +            ->method('isAdmin') | 
                                                        |
| 702 | +            ->with('adminUser') | 
                                                        |
| 703 | + ->willReturn(true);  | 
                                                        |
| 704 | +  | 
                                                        |
| 705 | +        $this->api->addUser('', 'PasswordOfTheNewUser')->getData(); | 
                                                        |
| 706 | + }  | 
                                                        |
| 707 | +  | 
                                                        |
| 708 | +  | 
                                                        |
| 709 | +    public function testAddUserEmailRequired(): void { | 
                                                        |
| 710 | + $this->expectException(OCSException::class);  | 
                                                        |
| 711 | +        $this->expectExceptionMessage('Required email address was not provided'); | 
                                                        |
| 712 | + $this->expectExceptionCode(110);  | 
                                                        |
| 713 | +  | 
                                                        |
| 714 | + $this->config  | 
                                                        |
| 715 | + ->expects($this->any())  | 
                                                        |
| 716 | +            ->method('getAppValue') | 
                                                        |
| 717 | +            ->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 718 | +                if ($key === 'newUser.requireEmail') { | 
                                                        |
| 719 | + return 'yes';  | 
                                                        |
| 720 | + }  | 
                                                        |
| 721 | + return null;  | 
                                                        |
| 722 | + });  | 
                                                        |
| 723 | + $this->userManager  | 
                                                        |
| 724 | + ->expects($this->once())  | 
                                                        |
| 725 | +            ->method('userExists') | 
                                                        |
| 726 | +            ->with('NewUser') | 
                                                        |
| 727 | + ->willReturn(false);  | 
                                                        |
| 728 | + $this->userManager  | 
                                                        |
| 729 | + ->expects($this->never())  | 
                                                        |
| 730 | +            ->method('createUser'); | 
                                                        |
| 731 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 732 | + ->disableOriginalConstructor()  | 
                                                        |
| 733 | + ->getMock();  | 
                                                        |
| 734 | + $loggedInUser  | 
                                                        |
| 735 | + ->expects($this->exactly(2))  | 
                                                        |
| 736 | +            ->method('getUID') | 
                                                        |
| 737 | +            ->willReturn('adminUser'); | 
                                                        |
| 738 | + $this->userSession  | 
                                                        |
| 739 | + ->expects($this->once())  | 
                                                        |
| 740 | +            ->method('getUser') | 
                                                        |
| 741 | + ->willReturn($loggedInUser);  | 
                                                        |
| 742 | + $this->groupManager  | 
                                                        |
| 743 | + ->expects($this->once())  | 
                                                        |
| 744 | +            ->method('isAdmin') | 
                                                        |
| 745 | +            ->with('adminUser') | 
                                                        |
| 746 | + ->willReturn(true);  | 
                                                        |
| 747 | +  | 
                                                        |
| 748 | + $this->assertTrue(key_exists(  | 
                                                        |
| 749 | + 'id',  | 
                                                        |
| 750 | +            $this->api->addUser('NewUser', 'PasswordOfTheNewUser')->getData() | 
                                                        |
| 751 | + ));  | 
                                                        |
| 752 | + }  | 
                                                        |
| 753 | +  | 
                                                        |
| 754 | +    public function testAddUserExistingGroup(): void { | 
                                                        |
| 755 | + $this->userManager  | 
                                                        |
| 756 | + ->expects($this->once())  | 
                                                        |
| 757 | +            ->method('userExists') | 
                                                        |
| 758 | +            ->with('NewUser') | 
                                                        |
| 759 | + ->willReturn(false);  | 
                                                        |
| 760 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 761 | + ->disableOriginalConstructor()  | 
                                                        |
| 762 | + ->getMock();  | 
                                                        |
| 763 | + $loggedInUser  | 
                                                        |
| 764 | + ->expects($this->exactly(2))  | 
                                                        |
| 765 | +            ->method('getUID') | 
                                                        |
| 766 | +            ->willReturn('adminUser'); | 
                                                        |
| 767 | + $this->userSession  | 
                                                        |
| 768 | + ->expects($this->once())  | 
                                                        |
| 769 | +            ->method('getUser') | 
                                                        |
| 770 | + ->willReturn($loggedInUser);  | 
                                                        |
| 771 | + $this->groupManager  | 
                                                        |
| 772 | + ->expects($this->once())  | 
                                                        |
| 773 | +            ->method('isAdmin') | 
                                                        |
| 774 | +            ->with('adminUser') | 
                                                        |
| 775 | + ->willReturn(true);  | 
                                                        |
| 776 | + $this->groupManager  | 
                                                        |
| 777 | + ->expects($this->once())  | 
                                                        |
| 778 | +            ->method('groupExists') | 
                                                        |
| 779 | +            ->with('ExistingGroup') | 
                                                        |
| 780 | + ->willReturn(true);  | 
                                                        |
| 781 | + $user = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 782 | + ->disableOriginalConstructor()  | 
                                                        |
| 783 | + ->getMock();  | 
                                                        |
| 784 | + $this->userManager  | 
                                                        |
| 785 | + ->expects($this->once())  | 
                                                        |
| 786 | +            ->method('createUser') | 
                                                        |
| 787 | +            ->with('NewUser', 'PasswordOfTheNewUser') | 
                                                        |
| 788 | + ->willReturn($user);  | 
                                                        |
| 789 | +        $group = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 790 | + ->disableOriginalConstructor()  | 
                                                        |
| 791 | + ->getMock();  | 
                                                        |
| 792 | + $group  | 
                                                        |
| 793 | + ->expects($this->once())  | 
                                                        |
| 794 | +            ->method('addUser') | 
                                                        |
| 795 | + ->with($user);  | 
                                                        |
| 796 | + $this->groupManager  | 
                                                        |
| 797 | + ->expects($this->once())  | 
                                                        |
| 798 | +            ->method('get') | 
                                                        |
| 799 | +            ->with('ExistingGroup') | 
                                                        |
| 800 | + ->willReturn($group);  | 
                                                        |
| 801 | + $this->logger  | 
                                                        |
| 802 | + ->expects($this->exactly(2))  | 
                                                        |
| 803 | +            ->method('info') | 
                                                        |
| 804 | + ->withConsecutive(  | 
                                                        |
| 805 | + ['Successful addUser call with userid: NewUser', ['app' => 'ocs_api']],  | 
                                                        |
| 806 | + ['Added userid NewUser to group ExistingGroup', ['app' => 'ocs_api']]  | 
                                                        |
| 807 | + );  | 
                                                        |
| 808 | +  | 
                                                        |
| 809 | + $this->assertTrue(key_exists(  | 
                                                        |
| 810 | + 'id',  | 
                                                        |
| 811 | +            $this->api->addUser('NewUser', 'PasswordOfTheNewUser', '', '', ['ExistingGroup'])->getData() | 
                                                        |
| 812 | + ));  | 
                                                        |
| 813 | + }  | 
                                                        |
| 814 | +  | 
                                                        |
| 815 | +  | 
                                                        |
| 816 | +    public function testAddUserUnsuccessful(): void { | 
                                                        |
| 817 | + $this->expectException(OCSException::class);  | 
                                                        |
| 818 | +        $this->expectExceptionMessage('Bad request'); | 
                                                        |
| 819 | + $this->expectExceptionCode(101);  | 
                                                        |
| 820 | +  | 
                                                        |
| 821 | +        $exception = new Exception('User backend not found.'); | 
                                                        |
| 822 | + $this->userManager  | 
                                                        |
| 823 | + ->expects($this->once())  | 
                                                        |
| 824 | +            ->method('userExists') | 
                                                        |
| 825 | +            ->with('NewUser') | 
                                                        |
| 826 | + ->willReturn(false);  | 
                                                        |
| 827 | + $this->userManager  | 
                                                        |
| 828 | + ->expects($this->once())  | 
                                                        |
| 829 | +            ->method('createUser') | 
                                                        |
| 830 | +            ->with('NewUser', 'PasswordOfTheNewUser') | 
                                                        |
| 831 | + ->will($this->throwException($exception));  | 
                                                        |
| 832 | + $this->logger  | 
                                                        |
| 833 | + ->expects($this->once())  | 
                                                        |
| 834 | +            ->method('error') | 
                                                        |
| 835 | + ->with(  | 
                                                        |
| 836 | + 'Failed addUser attempt with exception.',  | 
                                                        |
| 837 | + [  | 
                                                        |
| 838 | + 'app' => 'ocs_api',  | 
                                                        |
| 839 | + 'exception' => $exception  | 
                                                        |
| 840 | + ]  | 
                                                        |
| 841 | + );  | 
                                                        |
| 842 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 843 | + ->disableOriginalConstructor()  | 
                                                        |
| 844 | + ->getMock();  | 
                                                        |
| 845 | + $loggedInUser  | 
                                                        |
| 846 | + ->expects($this->exactly(2))  | 
                                                        |
| 847 | +            ->method('getUID') | 
                                                        |
| 848 | +            ->willReturn('adminUser'); | 
                                                        |
| 849 | + $this->userSession  | 
                                                        |
| 850 | + ->expects($this->once())  | 
                                                        |
| 851 | +            ->method('getUser') | 
                                                        |
| 852 | + ->willReturn($loggedInUser);  | 
                                                        |
| 853 | + $this->groupManager  | 
                                                        |
| 854 | + ->expects($this->once())  | 
                                                        |
| 855 | +            ->method('isAdmin') | 
                                                        |
| 856 | +            ->with('adminUser') | 
                                                        |
| 857 | + ->willReturn(true);  | 
                                                        |
| 858 | +  | 
                                                        |
| 859 | +        $this->api->addUser('NewUser', 'PasswordOfTheNewUser'); | 
                                                        |
| 860 | + }  | 
                                                        |
| 861 | +  | 
                                                        |
| 862 | +  | 
                                                        |
| 863 | +    public function testAddUserAsSubAdminNoGroup(): void { | 
                                                        |
| 864 | + $this->expectException(OCSException::class);  | 
                                                        |
| 865 | +        $this->expectExceptionMessage('No group specified (required for sub-admins)'); | 
                                                        |
| 866 | + $this->expectExceptionCode(106);  | 
                                                        |
| 867 | +  | 
                                                        |
| 868 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 869 | + ->disableOriginalConstructor()  | 
                                                        |
| 870 | + ->getMock();  | 
                                                        |
| 871 | + $loggedInUser  | 
                                                        |
| 872 | + ->expects($this->exactly(2))  | 
                                                        |
| 873 | +            ->method('getUID') | 
                                                        |
| 874 | +            ->willReturn('regularUser'); | 
                                                        |
| 875 | + $this->userSession  | 
                                                        |
| 876 | + ->expects($this->once())  | 
                                                        |
| 877 | +            ->method('getUser') | 
                                                        |
| 878 | + ->willReturn($loggedInUser);  | 
                                                        |
| 879 | + $this->groupManager  | 
                                                        |
| 880 | + ->expects($this->once())  | 
                                                        |
| 881 | +            ->method('isAdmin') | 
                                                        |
| 882 | +            ->with('regularUser') | 
                                                        |
| 883 | + ->willReturn(false);  | 
                                                        |
| 884 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 885 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 886 | + $this->groupManager  | 
                                                        |
| 887 | + ->expects($this->once())  | 
                                                        |
| 888 | +            ->method('getSubAdmin') | 
                                                        |
| 889 | + ->with()  | 
                                                        |
| 890 | + ->willReturn($subAdminManager);  | 
                                                        |
| 891 | +  | 
                                                        |
| 892 | +        $this->api->addUser('NewUser', 'PasswordOfTheNewUser', '', '', []); | 
                                                        |
| 893 | + }  | 
                                                        |
| 894 | +  | 
                                                        |
| 895 | +  | 
                                                        |
| 896 | +    public function testAddUserAsSubAdminValidGroupNotSubAdmin(): void { | 
                                                        |
| 897 | + $this->expectException(OCSException::class);  | 
                                                        |
| 898 | +        $this->expectExceptionMessage('Insufficient privileges for group ExistingGroup'); | 
                                                        |
| 899 | + $this->expectExceptionCode(105);  | 
                                                        |
| 900 | +  | 
                                                        |
| 901 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 902 | + ->disableOriginalConstructor()  | 
                                                        |
| 903 | + ->getMock();  | 
                                                        |
| 904 | + $loggedInUser  | 
                                                        |
| 905 | + ->expects($this->exactly(2))  | 
                                                        |
| 906 | +            ->method('getUID') | 
                                                        |
| 907 | +            ->willReturn('regularUser'); | 
                                                        |
| 908 | + $this->userSession  | 
                                                        |
| 909 | + ->expects($this->once())  | 
                                                        |
| 910 | +            ->method('getUser') | 
                                                        |
| 911 | + ->willReturn($loggedInUser);  | 
                                                        |
| 912 | + $this->groupManager  | 
                                                        |
| 913 | + ->expects($this->once())  | 
                                                        |
| 914 | +            ->method('isAdmin') | 
                                                        |
| 915 | +            ->with('regularUser') | 
                                                        |
| 916 | + ->willReturn(false);  | 
                                                        |
| 917 | +        $existingGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 918 | + $this->groupManager  | 
                                                        |
| 919 | + ->expects($this->once())  | 
                                                        |
| 920 | +            ->method('get') | 
                                                        |
| 921 | +            ->with('ExistingGroup') | 
                                                        |
| 922 | + ->willReturn($existingGroup);  | 
                                                        |
| 923 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 924 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 925 | + $subAdminManager  | 
                                                        |
| 926 | + ->expects($this->once())  | 
                                                        |
| 927 | +            ->method('isSubAdminOfGroup') | 
                                                        |
| 928 | + ->with($loggedInUser, $existingGroup)  | 
                                                        |
| 929 | + ->willReturn(false);  | 
                                                        |
| 930 | + $this->groupManager  | 
                                                        |
| 931 | + ->expects($this->once())  | 
                                                        |
| 932 | +            ->method('getSubAdmin') | 
                                                        |
| 933 | + ->with()  | 
                                                        |
| 934 | + ->willReturn($subAdminManager);  | 
                                                        |
| 935 | + $this->groupManager  | 
                                                        |
| 936 | + ->expects($this->once())  | 
                                                        |
| 937 | +            ->method('groupExists') | 
                                                        |
| 938 | +            ->with('ExistingGroup') | 
                                                        |
| 939 | + ->willReturn(true);  | 
                                                        |
| 940 | +  | 
                                                        |
| 941 | +        $this->api->addUser('NewUser', 'PasswordOfTheNewUser', '', '', ['ExistingGroup'])->getData(); | 
                                                        |
| 942 | + }  | 
                                                        |
| 943 | +  | 
                                                        |
| 944 | +    public function testAddUserAsSubAdminExistingGroups(): void { | 
                                                        |
| 945 | + $this->userManager  | 
                                                        |
| 946 | + ->expects($this->once())  | 
                                                        |
| 947 | +            ->method('userExists') | 
                                                        |
| 948 | +            ->with('NewUser') | 
                                                        |
| 949 | + ->willReturn(false);  | 
                                                        |
| 950 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 951 | + ->disableOriginalConstructor()  | 
                                                        |
| 952 | + ->getMock();  | 
                                                        |
| 953 | + $loggedInUser  | 
                                                        |
| 954 | + ->expects($this->exactly(2))  | 
                                                        |
| 955 | +            ->method('getUID') | 
                                                        |
| 956 | +            ->willReturn('subAdminUser'); | 
                                                        |
| 957 | + $this->userSession  | 
                                                        |
| 958 | + ->expects($this->once())  | 
                                                        |
| 959 | +            ->method('getUser') | 
                                                        |
| 960 | + ->willReturn($loggedInUser);  | 
                                                        |
| 961 | + $this->groupManager  | 
                                                        |
| 962 | + ->expects($this->once())  | 
                                                        |
| 963 | +            ->method('isAdmin') | 
                                                        |
| 964 | +            ->with('subAdminUser') | 
                                                        |
| 965 | + ->willReturn(false);  | 
                                                        |
| 966 | + $this->groupManager  | 
                                                        |
| 967 | + ->expects($this->exactly(2))  | 
                                                        |
| 968 | +            ->method('groupExists') | 
                                                        |
| 969 | + ->withConsecutive(  | 
                                                        |
| 970 | + ['ExistingGroup1'],  | 
                                                        |
| 971 | + ['ExistingGroup2']  | 
                                                        |
| 972 | + )  | 
                                                        |
| 973 | + ->willReturn(true);  | 
                                                        |
| 974 | + $user = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 975 | + ->disableOriginalConstructor()  | 
                                                        |
| 976 | + ->getMock();  | 
                                                        |
| 977 | + $this->userManager  | 
                                                        |
| 978 | + ->expects($this->once())  | 
                                                        |
| 979 | +            ->method('createUser') | 
                                                        |
| 980 | +            ->with('NewUser', 'PasswordOfTheNewUser') | 
                                                        |
| 981 | + ->willReturn($user);  | 
                                                        |
| 982 | +        $existingGroup1 = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 983 | + ->disableOriginalConstructor()  | 
                                                        |
| 984 | + ->getMock();  | 
                                                        |
| 985 | +        $existingGroup2 = $this->getMockBuilder('OCP\IGroup') | 
                                                        |
| 986 | + ->disableOriginalConstructor()  | 
                                                        |
| 987 | + ->getMock();  | 
                                                        |
| 988 | + $existingGroup1  | 
                                                        |
| 989 | + ->expects($this->once())  | 
                                                        |
| 990 | +            ->method('addUser') | 
                                                        |
| 991 | + ->with($user);  | 
                                                        |
| 992 | + $existingGroup2  | 
                                                        |
| 993 | + ->expects($this->once())  | 
                                                        |
| 994 | +            ->method('addUser') | 
                                                        |
| 995 | + ->with($user);  | 
                                                        |
| 996 | + $this->groupManager  | 
                                                        |
| 997 | + ->expects($this->exactly(4))  | 
                                                        |
| 998 | +            ->method('get') | 
                                                        |
| 999 | + ->withConsecutive(  | 
                                                        |
| 1000 | + ['ExistingGroup1'],  | 
                                                        |
| 1001 | + ['ExistingGroup2'],  | 
                                                        |
| 1002 | + ['ExistingGroup1'],  | 
                                                        |
| 1003 | + ['ExistingGroup2']  | 
                                                        |
| 1004 | + )  | 
                                                        |
| 1005 | + ->willReturnMap([  | 
                                                        |
| 1006 | + ['ExistingGroup1', $existingGroup1],  | 
                                                        |
| 1007 | + ['ExistingGroup2', $existingGroup2]  | 
                                                        |
| 1008 | + ]);  | 
                                                        |
| 1009 | + $this->logger  | 
                                                        |
| 1010 | + ->expects($this->exactly(3))  | 
                                                        |
| 1011 | +            ->method('info') | 
                                                        |
| 1012 | + ->withConsecutive(  | 
                                                        |
| 1013 | + ['Successful addUser call with userid: NewUser', ['app' => 'ocs_api']],  | 
                                                        |
| 1014 | + ['Added userid NewUser to group ExistingGroup1', ['app' => 'ocs_api']],  | 
                                                        |
| 1015 | + ['Added userid NewUser to group ExistingGroup2', ['app' => 'ocs_api']]  | 
                                                        |
| 1016 | + );  | 
                                                        |
| 1017 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 1018 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 1019 | + $this->groupManager  | 
                                                        |
| 1020 | + ->expects($this->once())  | 
                                                        |
| 1021 | +            ->method('getSubAdmin') | 
                                                        |
| 1022 | + ->willReturn($subAdminManager);  | 
                                                        |
| 1023 | + $subAdminManager  | 
                                                        |
| 1024 | + ->expects($this->exactly(2))  | 
                                                        |
| 1025 | +            ->method('isSubAdminOfGroup') | 
                                                        |
| 1026 | + ->withConsecutive(  | 
                                                        |
| 1027 | + [$loggedInUser, $existingGroup1],  | 
                                                        |
| 1028 | + [$loggedInUser, $existingGroup2]  | 
                                                        |
| 1029 | + )  | 
                                                        |
| 1030 | + ->willReturn(true);  | 
                                                        |
| 1031 | +  | 
                                                        |
| 1032 | + $this->assertTrue(key_exists(  | 
                                                        |
| 1033 | + 'id',  | 
                                                        |
| 1034 | +            $this->api->addUser('NewUser', 'PasswordOfTheNewUser', '', '', ['ExistingGroup1', 'ExistingGroup2'])->getData() | 
                                                        |
| 1035 | + ));  | 
                                                        |
| 1036 | + }  | 
                                                        |
| 1037 | +  | 
                                                        |
| 1038 | +  | 
                                                        |
| 1039 | +    public function testGetUserTargetDoesNotExist(): void { | 
                                                        |
| 1040 | + $this->expectException(OCSException::class);  | 
                                                        |
| 1041 | +        $this->expectExceptionMessage('User does not exist'); | 
                                                        |
| 1042 | + $this->expectExceptionCode(404);  | 
                                                        |
| 1043 | +  | 
                                                        |
| 1044 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1045 | + ->disableOriginalConstructor()  | 
                                                        |
| 1046 | + ->getMock();  | 
                                                        |
| 1047 | + $this->userSession  | 
                                                        |
| 1048 | +            ->method('getUser') | 
                                                        |
| 1049 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1050 | + $this->userManager  | 
                                                        |
| 1051 | + ->expects($this->once())  | 
                                                        |
| 1052 | +            ->method('get') | 
                                                        |
| 1053 | +            ->with('UserToGet') | 
                                                        |
| 1054 | + ->willReturn(null);  | 
                                                        |
| 1055 | +  | 
                                                        |
| 1056 | +        $this->api->getUser('UserToGet'); | 
                                                        |
| 1057 | + }  | 
                                                        |
| 1058 | +  | 
                                                        |
| 1059 | +    public function testGetUserDataAsAdmin(): void { | 
                                                        |
| 1060 | + $group0 = $this->createMock(IGroup::class);  | 
                                                        |
| 1061 | + $group1 = $this->createMock(IGroup::class);  | 
                                                        |
| 1062 | + $group2 = $this->createMock(IGroup::class);  | 
                                                        |
| 1063 | + $group3 = $this->createMock(IGroup::class);  | 
                                                        |
| 1064 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1065 | + ->disableOriginalConstructor()  | 
                                                        |
| 1066 | + ->getMock();  | 
                                                        |
| 1067 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 1068 | + ->disableOriginalConstructor()  | 
                                                        |
| 1069 | + ->getMock();  | 
                                                        |
| 1070 | + $loggedInUser  | 
                                                        |
| 1071 | +            ->method('getUID') | 
                                                        |
| 1072 | +            ->willReturn('admin'); | 
                                                        |
| 1073 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1074 | + ->disableOriginalConstructor()  | 
                                                        |
| 1075 | + ->getMock();  | 
                                                        |
| 1076 | + $targetUser->expects($this->once())  | 
                                                        |
| 1077 | +            ->method('getSystemEMailAddress') | 
                                                        |
| 1078 | +            ->willReturn('[email protected]'); | 
                                                        |
| 1079 | + $this->userSession  | 
                                                        |
| 1080 | +            ->method('getUser') | 
                                                        |
| 1081 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1082 | + $this->userManager  | 
                                                        |
| 1083 | +            ->method('get') | 
                                                        |
| 1084 | +            ->with('UID') | 
                                                        |
| 1085 | + ->willReturn($targetUser);  | 
                                                        |
| 1086 | + $this->groupManager  | 
                                                        |
| 1087 | +            ->method('isAdmin') | 
                                                        |
| 1088 | +            ->with('admin') | 
                                                        |
| 1089 | + ->willReturn(true);  | 
                                                        |
| 1090 | + $this->groupManager  | 
                                                        |
| 1091 | + ->expects($this->any())  | 
                                                        |
| 1092 | +            ->method('getUserGroups') | 
                                                        |
| 1093 | + ->willReturn([$group0, $group1, $group2]);  | 
                                                        |
| 1094 | + $this->groupManager  | 
                                                        |
| 1095 | + ->expects($this->once())  | 
                                                        |
| 1096 | +            ->method('getSubAdmin') | 
                                                        |
| 1097 | + ->willReturn($subAdminManager);  | 
                                                        |
| 1098 | + $subAdminManager  | 
                                                        |
| 1099 | + ->expects($this->once())  | 
                                                        |
| 1100 | +            ->method('getSubAdminsGroups') | 
                                                        |
| 1101 | + ->willReturn([$group3]);  | 
                                                        |
| 1102 | + $group0->expects($this->once())  | 
                                                        |
| 1103 | +            ->method('getGID') | 
                                                        |
| 1104 | +            ->willReturn('group0'); | 
                                                        |
| 1105 | + $group1->expects($this->once())  | 
                                                        |
| 1106 | +            ->method('getGID') | 
                                                        |
| 1107 | +            ->willReturn('group1'); | 
                                                        |
| 1108 | + $group2->expects($this->once())  | 
                                                        |
| 1109 | +            ->method('getGID') | 
                                                        |
| 1110 | +            ->willReturn('group2'); | 
                                                        |
| 1111 | + $group3->expects($this->once())  | 
                                                        |
| 1112 | +            ->method('getGID') | 
                                                        |
| 1113 | +            ->willReturn('group3'); | 
                                                        |
| 1114 | +  | 
                                                        |
| 1115 | + $this->mockAccount($targetUser, [  | 
                                                        |
| 1116 | + IAccountManager::PROPERTY_ADDRESS => ['value' => 'address'],  | 
                                                        |
| 1117 | + IAccountManager::PROPERTY_PHONE => ['value' => 'phone'],  | 
                                                        |
| 1118 | + IAccountManager::PROPERTY_TWITTER => ['value' => 'twitter'],  | 
                                                        |
| 1119 | + IAccountManager::PROPERTY_FEDIVERSE => ['value' => 'fediverse'],  | 
                                                        |
| 1120 | + IAccountManager::PROPERTY_WEBSITE => ['value' => 'website'],  | 
                                                        |
| 1121 | + IAccountManager::PROPERTY_ORGANISATION => ['value' => 'organisation'],  | 
                                                        |
| 1122 | + IAccountManager::PROPERTY_ROLE => ['value' => 'role'],  | 
                                                        |
| 1123 | + IAccountManager::PROPERTY_HEADLINE => ['value' => 'headline'],  | 
                                                        |
| 1124 | + IAccountManager::PROPERTY_BIOGRAPHY => ['value' => 'biography'],  | 
                                                        |
| 1125 | + IAccountManager::PROPERTY_PROFILE_ENABLED => ['value' => '1'],  | 
                                                        |
| 1126 | + IAccountManager::PROPERTY_PRONOUNS => ['value' => 'they/them'],  | 
                                                        |
| 1127 | + ]);  | 
                                                        |
| 1128 | + $this->config  | 
                                                        |
| 1129 | +            ->method('getUserValue') | 
                                                        |
| 1130 | + ->willReturnMap([  | 
                                                        |
| 1131 | + ['UID', 'core', 'enabled', 'true', 'true'],  | 
                                                        |
| 1132 | + ]);  | 
                                                        |
| 1133 | + $this->api  | 
                                                        |
| 1134 | + ->expects($this->once())  | 
                                                        |
| 1135 | +            ->method('fillStorageInfo') | 
                                                        |
| 1136 | + ->with($targetUser)  | 
                                                        |
| 1137 | + ->willReturn(['DummyValue']);  | 
                                                        |
| 1138 | +  | 
                                                        |
| 1139 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1140 | + $backend->expects($this->any())  | 
                                                        |
| 1141 | +            ->method('implementsActions') | 
                                                        |
| 1142 | + ->willReturn(true);  | 
                                                        |
| 1143 | +  | 
                                                        |
| 1144 | + $targetUser  | 
                                                        |
| 1145 | + ->expects($this->once())  | 
                                                        |
| 1146 | +            ->method('getDisplayName') | 
                                                        |
| 1147 | +            ->willReturn('Demo User'); | 
                                                        |
| 1148 | + $targetUser  | 
                                                        |
| 1149 | + ->expects($this->once())  | 
                                                        |
| 1150 | +            ->method('getHome') | 
                                                        |
| 1151 | +            ->willReturn('/var/www/newtcloud/data/UID'); | 
                                                        |
| 1152 | + $targetUser  | 
                                                        |
| 1153 | + ->expects($this->exactly(2))  | 
                                                        |
| 1154 | +            ->method('getLastLogin') | 
                                                        |
| 1155 | + ->willReturn(1521191471);  | 
                                                        |
| 1156 | + $targetUser  | 
                                                        |
| 1157 | + ->expects($this->once())  | 
                                                        |
| 1158 | +            ->method('getFirstLogin') | 
                                                        |
| 1159 | + ->willReturn(1511191471);  | 
                                                        |
| 1160 | + $targetUser  | 
                                                        |
| 1161 | + ->expects($this->once())  | 
                                                        |
| 1162 | +            ->method('getBackendClassName') | 
                                                        |
| 1163 | +            ->willReturn('Database'); | 
                                                        |
| 1164 | + $targetUser  | 
                                                        |
| 1165 | + ->expects($this->once())  | 
                                                        |
| 1166 | +            ->method('getBackend') | 
                                                        |
| 1167 | + ->willReturn($backend);  | 
                                                        |
| 1168 | + $targetUser  | 
                                                        |
| 1169 | +            ->method('getUID') | 
                                                        |
| 1170 | +            ->willReturn('UID'); | 
                                                        |
| 1171 | +  | 
                                                        |
| 1172 | + $this->l10nFactory  | 
                                                        |
| 1173 | + ->expects($this->once())  | 
                                                        |
| 1174 | +            ->method('getUserLanguage') | 
                                                        |
| 1175 | + ->with($targetUser)  | 
                                                        |
| 1176 | +            ->willReturn('de'); | 
                                                        |
| 1177 | +  | 
                                                        |
| 1178 | + $expected = [  | 
                                                        |
| 1179 | + 'id' => 'UID',  | 
                                                        |
| 1180 | + 'enabled' => true,  | 
                                                        |
| 1181 | + 'storageLocation' => '/var/www/newtcloud/data/UID',  | 
                                                        |
| 1182 | + 'firstLoginTimestamp' => 1511191471,  | 
                                                        |
| 1183 | + 'lastLoginTimestamp' => 1521191471,  | 
                                                        |
| 1184 | + 'lastLogin' => 1521191471000,  | 
                                                        |
| 1185 | + 'backend' => 'Database',  | 
                                                        |
| 1186 | + 'subadmin' => ['group3'],  | 
                                                        |
| 1187 | + 'quota' => ['DummyValue'],  | 
                                                        |
| 1188 | + 'email' => '[email protected]',  | 
                                                        |
| 1189 | + 'displayname' => 'Demo User',  | 
                                                        |
| 1190 | + 'display-name' => 'Demo User',  | 
                                                        |
| 1191 | + 'phone' => 'phone',  | 
                                                        |
| 1192 | + 'address' => 'address',  | 
                                                        |
| 1193 | + 'website' => 'website',  | 
                                                        |
| 1194 | + 'twitter' => 'twitter',  | 
                                                        |
| 1195 | + 'fediverse' => 'fediverse',  | 
                                                        |
| 1196 | + 'groups' => ['group0', 'group1', 'group2'],  | 
                                                        |
| 1197 | + 'language' => 'de',  | 
                                                        |
| 1198 | + 'locale' => null,  | 
                                                        |
| 1199 | + 'backendCapabilities' => [  | 
                                                        |
| 1200 | + 'setDisplayName' => true,  | 
                                                        |
| 1201 | + 'setPassword' => true,  | 
                                                        |
| 1202 | + ],  | 
                                                        |
| 1203 | + 'additional_mail' => [],  | 
                                                        |
| 1204 | + 'organisation' => 'organisation',  | 
                                                        |
| 1205 | + 'role' => 'role',  | 
                                                        |
| 1206 | + 'headline' => 'headline',  | 
                                                        |
| 1207 | + 'biography' => 'biography',  | 
                                                        |
| 1208 | + 'profile_enabled' => '1',  | 
                                                        |
| 1209 | + 'notify_email' => null,  | 
                                                        |
| 1210 | + 'manager' => '',  | 
                                                        |
| 1211 | + 'pronouns' => 'they/them',  | 
                                                        |
| 1212 | + ];  | 
                                                        |
| 1213 | + $this->assertEquals($expected, $this->invokePrivate($this->api, 'getUserData', ['UID']));  | 
                                                        |
| 1214 | + }  | 
                                                        |
| 1215 | +  | 
                                                        |
| 1216 | +    public function testGetUserDataAsSubAdminAndUserIsAccessible(): void { | 
                                                        |
| 1217 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1218 | + ->disableOriginalConstructor()  | 
                                                        |
| 1219 | + ->getMock();  | 
                                                        |
| 1220 | + $loggedInUser  | 
                                                        |
| 1221 | +            ->method('getUID') | 
                                                        |
| 1222 | +            ->willReturn('subadmin'); | 
                                                        |
| 1223 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1224 | + ->disableOriginalConstructor()  | 
                                                        |
| 1225 | + ->getMock();  | 
                                                        |
| 1226 | + $targetUser  | 
                                                        |
| 1227 | + ->expects($this->once())  | 
                                                        |
| 1228 | +            ->method('getSystemEMailAddress') | 
                                                        |
| 1229 | +            ->willReturn('[email protected]'); | 
                                                        |
| 1230 | + $this->userSession  | 
                                                        |
| 1231 | +            ->method('getUser') | 
                                                        |
| 1232 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1233 | + $this->userManager  | 
                                                        |
| 1234 | +            ->method('get') | 
                                                        |
| 1235 | +            ->with('UID') | 
                                                        |
| 1236 | + ->willReturn($targetUser);  | 
                                                        |
| 1237 | + $this->groupManager  | 
                                                        |
| 1238 | +            ->method('isAdmin') | 
                                                        |
| 1239 | +            ->with('subadmin') | 
                                                        |
| 1240 | + ->willReturn(false);  | 
                                                        |
| 1241 | + $this->groupManager  | 
                                                        |
| 1242 | + ->expects($this->any())  | 
                                                        |
| 1243 | +            ->method('getUserGroups') | 
                                                        |
| 1244 | + ->willReturn([]);  | 
                                                        |
| 1245 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 1246 | + ->disableOriginalConstructor()  | 
                                                        |
| 1247 | + ->getMock();  | 
                                                        |
| 1248 | + $subAdminManager  | 
                                                        |
| 1249 | + ->expects($this->once())  | 
                                                        |
| 1250 | +            ->method('isUserAccessible') | 
                                                        |
| 1251 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 1252 | + ->willReturn(true);  | 
                                                        |
| 1253 | + $subAdminManager  | 
                                                        |
| 1254 | + ->expects($this->once())  | 
                                                        |
| 1255 | +            ->method('getSubAdminsGroups') | 
                                                        |
| 1256 | + ->willReturn([]);  | 
                                                        |
| 1257 | + $this->groupManager  | 
                                                        |
| 1258 | + ->expects($this->exactly(2))  | 
                                                        |
| 1259 | +            ->method('getSubAdmin') | 
                                                        |
| 1260 | + ->willReturn($subAdminManager);  | 
                                                        |
| 1261 | + $this->config  | 
                                                        |
| 1262 | +            ->method('getUserValue') | 
                                                        |
| 1263 | + ->willReturnMap([  | 
                                                        |
| 1264 | + ['UID', 'core', 'enabled', 'true', 'true'],  | 
                                                        |
| 1265 | + ]);  | 
                                                        |
| 1266 | + $this->api  | 
                                                        |
| 1267 | + ->expects($this->once())  | 
                                                        |
| 1268 | +            ->method('fillStorageInfo') | 
                                                        |
| 1269 | + ->with($targetUser)  | 
                                                        |
| 1270 | + ->willReturn(['DummyValue']);  | 
                                                        |
| 1271 | +  | 
                                                        |
| 1272 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1273 | + $backend->expects($this->any())  | 
                                                        |
| 1274 | +            ->method('implementsActions') | 
                                                        |
| 1275 | + ->willReturn(true);  | 
                                                        |
| 1276 | +  | 
                                                        |
| 1277 | + $targetUser  | 
                                                        |
| 1278 | + ->expects($this->once())  | 
                                                        |
| 1279 | +            ->method('getDisplayName') | 
                                                        |
| 1280 | +            ->willReturn('Demo User'); | 
                                                        |
| 1281 | + $targetUser  | 
                                                        |
| 1282 | + ->expects($this->never())  | 
                                                        |
| 1283 | +            ->method('getHome'); | 
                                                        |
| 1284 | + $targetUser  | 
                                                        |
| 1285 | + ->expects($this->exactly(2))  | 
                                                        |
| 1286 | +            ->method('getLastLogin') | 
                                                        |
| 1287 | + ->willReturn(1521191471);  | 
                                                        |
| 1288 | + $targetUser  | 
                                                        |
| 1289 | + ->expects($this->once())  | 
                                                        |
| 1290 | +            ->method('getFirstLogin') | 
                                                        |
| 1291 | + ->willReturn(1511191471);  | 
                                                        |
| 1292 | + $targetUser  | 
                                                        |
| 1293 | + ->expects($this->once())  | 
                                                        |
| 1294 | +            ->method('getBackendClassName') | 
                                                        |
| 1295 | +            ->willReturn('Database'); | 
                                                        |
| 1296 | + $targetUser  | 
                                                        |
| 1297 | + ->expects($this->once())  | 
                                                        |
| 1298 | +            ->method('getBackend') | 
                                                        |
| 1299 | + ->willReturn($backend);  | 
                                                        |
| 1300 | + $targetUser  | 
                                                        |
| 1301 | +            ->method('getUID') | 
                                                        |
| 1302 | +            ->willReturn('UID'); | 
                                                        |
| 1303 | +  | 
                                                        |
| 1304 | + $this->mockAccount($targetUser, [  | 
                                                        |
| 1305 | + IAccountManager::PROPERTY_ADDRESS => ['value' => 'address'],  | 
                                                        |
| 1306 | + IAccountManager::PROPERTY_PHONE => ['value' => 'phone'],  | 
                                                        |
| 1307 | + IAccountManager::PROPERTY_TWITTER => ['value' => 'twitter'],  | 
                                                        |
| 1308 | + IAccountManager::PROPERTY_FEDIVERSE => ['value' => 'fediverse'],  | 
                                                        |
| 1309 | + IAccountManager::PROPERTY_WEBSITE => ['value' => 'website'],  | 
                                                        |
| 1310 | + IAccountManager::PROPERTY_ORGANISATION => ['value' => 'organisation'],  | 
                                                        |
| 1311 | + IAccountManager::PROPERTY_ROLE => ['value' => 'role'],  | 
                                                        |
| 1312 | + IAccountManager::PROPERTY_HEADLINE => ['value' => 'headline'],  | 
                                                        |
| 1313 | + IAccountManager::PROPERTY_BIOGRAPHY => ['value' => 'biography'],  | 
                                                        |
| 1314 | + IAccountManager::PROPERTY_PROFILE_ENABLED => ['value' => '1'],  | 
                                                        |
| 1315 | + IAccountManager::PROPERTY_PRONOUNS => ['value' => 'they/them'],  | 
                                                        |
| 1316 | + ]);  | 
                                                        |
| 1317 | +  | 
                                                        |
| 1318 | + $this->l10nFactory  | 
                                                        |
| 1319 | + ->expects($this->once())  | 
                                                        |
| 1320 | +            ->method('getUserLanguage') | 
                                                        |
| 1321 | + ->with($targetUser)  | 
                                                        |
| 1322 | +            ->willReturn('da'); | 
                                                        |
| 1323 | +  | 
                                                        |
| 1324 | + $expected = [  | 
                                                        |
| 1325 | + 'id' => 'UID',  | 
                                                        |
| 1326 | + 'enabled' => true,  | 
                                                        |
| 1327 | + 'firstLoginTimestamp' => 1511191471,  | 
                                                        |
| 1328 | + 'lastLoginTimestamp' => 1521191471,  | 
                                                        |
| 1329 | + 'lastLogin' => 1521191471000,  | 
                                                        |
| 1330 | + 'backend' => 'Database',  | 
                                                        |
| 1331 | + 'subadmin' => [],  | 
                                                        |
| 1332 | + 'quota' => ['DummyValue'],  | 
                                                        |
| 1333 | + 'email' => '[email protected]',  | 
                                                        |
| 1334 | + 'displayname' => 'Demo User',  | 
                                                        |
| 1335 | + 'display-name' => 'Demo User',  | 
                                                        |
| 1336 | + 'phone' => 'phone',  | 
                                                        |
| 1337 | + 'address' => 'address',  | 
                                                        |
| 1338 | + 'website' => 'website',  | 
                                                        |
| 1339 | + 'twitter' => 'twitter',  | 
                                                        |
| 1340 | + 'fediverse' => 'fediverse',  | 
                                                        |
| 1341 | + 'groups' => [],  | 
                                                        |
| 1342 | + 'language' => 'da',  | 
                                                        |
| 1343 | + 'locale' => null,  | 
                                                        |
| 1344 | + 'backendCapabilities' => [  | 
                                                        |
| 1345 | + 'setDisplayName' => true,  | 
                                                        |
| 1346 | + 'setPassword' => true,  | 
                                                        |
| 1347 | + ],  | 
                                                        |
| 1348 | + 'additional_mail' => [],  | 
                                                        |
| 1349 | + 'organisation' => 'organisation',  | 
                                                        |
| 1350 | + 'role' => 'role',  | 
                                                        |
| 1351 | + 'headline' => 'headline',  | 
                                                        |
| 1352 | + 'biography' => 'biography',  | 
                                                        |
| 1353 | + 'profile_enabled' => '1',  | 
                                                        |
| 1354 | + 'notify_email' => null,  | 
                                                        |
| 1355 | + 'manager' => '',  | 
                                                        |
| 1356 | + 'pronouns' => 'they/them',  | 
                                                        |
| 1357 | + ];  | 
                                                        |
| 1358 | + $this->assertEquals($expected, $this->invokePrivate($this->api, 'getUserData', ['UID']));  | 
                                                        |
| 1359 | + }  | 
                                                        |
| 1360 | +  | 
                                                        |
| 1361 | +  | 
                                                        |
| 1362 | +  | 
                                                        |
| 1363 | +    public function testGetUserDataAsSubAdminAndUserIsNotAccessible(): void { | 
                                                        |
| 1364 | + $this->expectException(OCSException::class);  | 
                                                        |
| 1365 | + $this->expectExceptionCode(998);  | 
                                                        |
| 1366 | +  | 
                                                        |
| 1367 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1368 | + ->disableOriginalConstructor()  | 
                                                        |
| 1369 | + ->getMock();  | 
                                                        |
| 1370 | + $loggedInUser  | 
                                                        |
| 1371 | + ->expects($this->exactly(4))  | 
                                                        |
| 1372 | +            ->method('getUID') | 
                                                        |
| 1373 | +            ->willReturn('subadmin'); | 
                                                        |
| 1374 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1375 | + ->disableOriginalConstructor()  | 
                                                        |
| 1376 | + ->getMock();  | 
                                                        |
| 1377 | + $this->userSession  | 
                                                        |
| 1378 | +            ->method('getUser') | 
                                                        |
| 1379 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1380 | + $this->userManager  | 
                                                        |
| 1381 | + ->expects($this->once())  | 
                                                        |
| 1382 | +            ->method('get') | 
                                                        |
| 1383 | +            ->with('UserToGet') | 
                                                        |
| 1384 | + ->willReturn($targetUser);  | 
                                                        |
| 1385 | + $this->groupManager  | 
                                                        |
| 1386 | + ->expects($this->once())  | 
                                                        |
| 1387 | +            ->method('isAdmin') | 
                                                        |
| 1388 | +            ->with('subadmin') | 
                                                        |
| 1389 | + ->willReturn(false);  | 
                                                        |
| 1390 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 1391 | + ->disableOriginalConstructor()  | 
                                                        |
| 1392 | + ->getMock();  | 
                                                        |
| 1393 | + $subAdminManager  | 
                                                        |
| 1394 | + ->expects($this->once())  | 
                                                        |
| 1395 | +            ->method('isUserAccessible') | 
                                                        |
| 1396 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 1397 | + ->willReturn(false);  | 
                                                        |
| 1398 | + $this->groupManager  | 
                                                        |
| 1399 | + ->expects($this->once())  | 
                                                        |
| 1400 | +            ->method('getSubAdmin') | 
                                                        |
| 1401 | + ->willReturn($subAdminManager);  | 
                                                        |
| 1402 | +  | 
                                                        |
| 1403 | + $this->invokePrivate($this->api, 'getUser', ['UserToGet']);  | 
                                                        |
| 1404 | + }  | 
                                                        |
| 1405 | +  | 
                                                        |
| 1406 | +    public function testGetUserDataAsSubAdminSelfLookup(): void { | 
                                                        |
| 1407 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1408 | + ->disableOriginalConstructor()  | 
                                                        |
| 1409 | + ->getMock();  | 
                                                        |
| 1410 | + $loggedInUser  | 
                                                        |
| 1411 | +            ->method('getUID') | 
                                                        |
| 1412 | +            ->willReturn('UID'); | 
                                                        |
| 1413 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1414 | + ->disableOriginalConstructor()  | 
                                                        |
| 1415 | + ->getMock();  | 
                                                        |
| 1416 | + $this->userSession  | 
                                                        |
| 1417 | +            ->method('getUser') | 
                                                        |
| 1418 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1419 | + $this->userManager  | 
                                                        |
| 1420 | +            ->method('get') | 
                                                        |
| 1421 | +            ->with('UID') | 
                                                        |
| 1422 | + ->willReturn($targetUser);  | 
                                                        |
| 1423 | + $this->groupManager  | 
                                                        |
| 1424 | +            ->method('isAdmin') | 
                                                        |
| 1425 | +            ->with('UID') | 
                                                        |
| 1426 | + ->willReturn(false);  | 
                                                        |
| 1427 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 1428 | + ->disableOriginalConstructor()  | 
                                                        |
| 1429 | + ->getMock();  | 
                                                        |
| 1430 | + $subAdminManager  | 
                                                        |
| 1431 | + ->expects($this->once())  | 
                                                        |
| 1432 | +            ->method('isUserAccessible') | 
                                                        |
| 1433 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 1434 | + ->willReturn(false);  | 
                                                        |
| 1435 | + $subAdminManager  | 
                                                        |
| 1436 | + ->expects($this->once())  | 
                                                        |
| 1437 | +            ->method('getSubAdminsGroups') | 
                                                        |
| 1438 | + ->willReturn([]);  | 
                                                        |
| 1439 | + $this->groupManager  | 
                                                        |
| 1440 | + ->expects($this->exactly(2))  | 
                                                        |
| 1441 | +            ->method('getSubAdmin') | 
                                                        |
| 1442 | + ->willReturn($subAdminManager);  | 
                                                        |
| 1443 | + $this->groupManager  | 
                                                        |
| 1444 | + ->expects($this->any())  | 
                                                        |
| 1445 | +            ->method('getUserGroups') | 
                                                        |
| 1446 | + ->willReturn([]);  | 
                                                        |
| 1447 | + $this->api  | 
                                                        |
| 1448 | + ->expects($this->once())  | 
                                                        |
| 1449 | +            ->method('fillStorageInfo') | 
                                                        |
| 1450 | + ->with($targetUser)  | 
                                                        |
| 1451 | + ->willReturn(['DummyValue']);  | 
                                                        |
| 1452 | +  | 
                                                        |
| 1453 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1454 | + $backend->expects($this->atLeastOnce())  | 
                                                        |
| 1455 | +            ->method('implementsActions') | 
                                                        |
| 1456 | + ->willReturn(false);  | 
                                                        |
| 1457 | +  | 
                                                        |
| 1458 | + $targetUser  | 
                                                        |
| 1459 | + ->expects($this->once())  | 
                                                        |
| 1460 | +            ->method('getDisplayName') | 
                                                        |
| 1461 | +            ->willReturn('Subadmin User'); | 
                                                        |
| 1462 | + $targetUser  | 
                                                        |
| 1463 | + ->expects($this->once())  | 
                                                        |
| 1464 | +            ->method('getSystemEMailAddress') | 
                                                        |
| 1465 | +            ->willReturn('[email protected]'); | 
                                                        |
| 1466 | + $targetUser  | 
                                                        |
| 1467 | +            ->method('getUID') | 
                                                        |
| 1468 | +            ->willReturn('UID'); | 
                                                        |
| 1469 | + $targetUser  | 
                                                        |
| 1470 | + ->expects($this->never())  | 
                                                        |
| 1471 | +            ->method('getHome'); | 
                                                        |
| 1472 | + $targetUser  | 
                                                        |
| 1473 | + ->expects($this->exactly(2))  | 
                                                        |
| 1474 | +            ->method('getLastLogin') | 
                                                        |
| 1475 | + ->willReturn(1521191471);  | 
                                                        |
| 1476 | + $targetUser  | 
                                                        |
| 1477 | + ->expects($this->once())  | 
                                                        |
| 1478 | +            ->method('getFirstLogin') | 
                                                        |
| 1479 | + ->willReturn(1511191471);  | 
                                                        |
| 1480 | + $targetUser  | 
                                                        |
| 1481 | + ->expects($this->once())  | 
                                                        |
| 1482 | +            ->method('getBackendClassName') | 
                                                        |
| 1483 | +            ->willReturn('Database'); | 
                                                        |
| 1484 | + $targetUser  | 
                                                        |
| 1485 | + ->expects($this->once())  | 
                                                        |
| 1486 | +            ->method('getBackend') | 
                                                        |
| 1487 | + ->willReturn($backend);  | 
                                                        |
| 1488 | + $this->mockAccount($targetUser, [  | 
                                                        |
| 1489 | + IAccountManager::PROPERTY_ADDRESS => ['value' => 'address'],  | 
                                                        |
| 1490 | + IAccountManager::PROPERTY_PHONE => ['value' => 'phone'],  | 
                                                        |
| 1491 | + IAccountManager::PROPERTY_TWITTER => ['value' => 'twitter'],  | 
                                                        |
| 1492 | + IAccountManager::PROPERTY_FEDIVERSE => ['value' => 'fediverse'],  | 
                                                        |
| 1493 | + IAccountManager::PROPERTY_WEBSITE => ['value' => 'website'],  | 
                                                        |
| 1494 | + IAccountManager::PROPERTY_ORGANISATION => ['value' => 'organisation'],  | 
                                                        |
| 1495 | + IAccountManager::PROPERTY_ROLE => ['value' => 'role'],  | 
                                                        |
| 1496 | + IAccountManager::PROPERTY_HEADLINE => ['value' => 'headline'],  | 
                                                        |
| 1497 | + IAccountManager::PROPERTY_BIOGRAPHY => ['value' => 'biography'],  | 
                                                        |
| 1498 | + IAccountManager::PROPERTY_PROFILE_ENABLED => ['value' => '1'],  | 
                                                        |
| 1499 | + IAccountManager::PROPERTY_PRONOUNS => ['value' => 'they/them'],  | 
                                                        |
| 1500 | + ]);  | 
                                                        |
| 1501 | +  | 
                                                        |
| 1502 | + $this->l10nFactory  | 
                                                        |
| 1503 | + ->expects($this->once())  | 
                                                        |
| 1504 | +            ->method('getUserLanguage') | 
                                                        |
| 1505 | + ->with($targetUser)  | 
                                                        |
| 1506 | +            ->willReturn('ru'); | 
                                                        |
| 1507 | +  | 
                                                        |
| 1508 | + $expected = [  | 
                                                        |
| 1509 | + 'id' => 'UID',  | 
                                                        |
| 1510 | + 'firstLoginTimestamp' => 1511191471,  | 
                                                        |
| 1511 | + 'lastLoginTimestamp' => 1521191471,  | 
                                                        |
| 1512 | + 'lastLogin' => 1521191471000,  | 
                                                        |
| 1513 | + 'backend' => 'Database',  | 
                                                        |
| 1514 | + 'subadmin' => [],  | 
                                                        |
| 1515 | + 'quota' => ['DummyValue'],  | 
                                                        |
| 1516 | + 'email' => '[email protected]',  | 
                                                        |
| 1517 | + 'displayname' => 'Subadmin User',  | 
                                                        |
| 1518 | + 'display-name' => 'Subadmin User',  | 
                                                        |
| 1519 | + 'phone' => 'phone',  | 
                                                        |
| 1520 | + 'address' => 'address',  | 
                                                        |
| 1521 | + 'website' => 'website',  | 
                                                        |
| 1522 | + 'twitter' => 'twitter',  | 
                                                        |
| 1523 | + 'fediverse' => 'fediverse',  | 
                                                        |
| 1524 | + 'groups' => [],  | 
                                                        |
| 1525 | + 'language' => 'ru',  | 
                                                        |
| 1526 | + 'locale' => null,  | 
                                                        |
| 1527 | + 'backendCapabilities' => [  | 
                                                        |
| 1528 | + 'setDisplayName' => false,  | 
                                                        |
| 1529 | + 'setPassword' => false,  | 
                                                        |
| 1530 | + ],  | 
                                                        |
| 1531 | + 'additional_mail' => [],  | 
                                                        |
| 1532 | + 'organisation' => 'organisation',  | 
                                                        |
| 1533 | + 'role' => 'role',  | 
                                                        |
| 1534 | + 'headline' => 'headline',  | 
                                                        |
| 1535 | + 'biography' => 'biography',  | 
                                                        |
| 1536 | + 'profile_enabled' => '1',  | 
                                                        |
| 1537 | + 'notify_email' => null,  | 
                                                        |
| 1538 | + 'manager' => '',  | 
                                                        |
| 1539 | + 'pronouns' => 'they/them',  | 
                                                        |
| 1540 | + ];  | 
                                                        |
| 1541 | + $this->assertEquals($expected, $this->invokePrivate($this->api, 'getUserData', ['UID']));  | 
                                                        |
| 1542 | + }  | 
                                                        |
| 1543 | +  | 
                                                        |
| 1544 | +    public function dataSearchByPhoneNumbers(): array { | 
                                                        |
| 1545 | + return [  | 
                                                        |
| 1546 | + 'Invalid country' => ['Not a country code', ['12345' => ['NaN']], 400, null, null, []],  | 
                                                        |
| 1547 | + 'No number to search' => ['DE', ['12345' => ['NaN']], 200, null, null, []],  | 
                                                        |
| 1548 | + 'Valid number but no match' => ['DE', ['12345' => ['0711 / 25 24 28-90']], 200, ['+4971125242890'], [], []],  | 
                                                        |
| 1549 | + 'Invalid number' => ['FR', ['12345' => ['0711 / 25 24 28-90']], 200, null, null, []],  | 
                                                        |
| 1550 | + 'Invalid and valid number' => ['DE', ['12345' => ['NaN', '0711 / 25 24 28-90']], 200, ['+4971125242890'], [], []],  | 
                                                        |
| 1551 | + 'Valid and invalid number' => ['DE', ['12345' => ['0711 / 25 24 28-90', 'NaN']], 200, ['+4971125242890'], [], []],  | 
                                                        |
| 1552 | + 'Valid number and a match' => ['DE', ['12345' => ['0711 / 25 24 28-90']], 200, ['+4971125242890'], ['+4971125242890' => 'admin'], ['12345' => 'admin@localhost']],  | 
                                                        |
| 1553 | + 'Same number twice, later hits' => ['DE', ['12345' => ['0711 / 25 24 28-90'], '23456' => ['0711 / 25 24 28-90']], 200, ['+4971125242890'], ['+4971125242890' => 'admin'], ['23456' => 'admin@localhost']],  | 
                                                        |
| 1554 | + ];  | 
                                                        |
| 1555 | + }  | 
                                                        |
| 1556 | +  | 
                                                        |
| 1557 | + /**  | 
                                                        |
| 1558 | + * @dataProvider dataSearchByPhoneNumbers  | 
                                                        |
| 1559 | + * @param string $location  | 
                                                        |
| 1560 | + * @param array $search  | 
                                                        |
| 1561 | + * @param int $status  | 
                                                        |
| 1562 | + * @param array $expected  | 
                                                        |
| 1563 | + */  | 
                                                        |
| 1564 | +    public function testSearchByPhoneNumbers(string $location, array $search, int $status, ?array $searchUsers, ?array $userMatches, array $expected): void { | 
                                                        |
| 1565 | + $knownTo = 'knownTo';  | 
                                                        |
| 1566 | + $user = $this->createMock(IUser::class);  | 
                                                        |
| 1567 | +        $user->method('getUID') | 
                                                        |
| 1568 | + ->willReturn($knownTo);  | 
                                                        |
| 1569 | +        $this->userSession->method('getUser') | 
                                                        |
| 1570 | + ->willReturn($user);  | 
                                                        |
| 1571 | +  | 
                                                        |
| 1572 | +        if ($searchUsers === null) { | 
                                                        |
| 1573 | + $this->accountManager->expects($this->never())  | 
                                                        |
| 1574 | +                ->method('searchUsers'); | 
                                                        |
| 1575 | +        } else { | 
                                                        |
| 1576 | + $this->accountManager->expects($this->once())  | 
                                                        |
| 1577 | +                ->method('searchUsers') | 
                                                        |
| 1578 | + ->with(IAccountManager::PROPERTY_PHONE, $searchUsers)  | 
                                                        |
| 1579 | + ->willReturn($userMatches);  | 
                                                        |
| 1580 | +  | 
                                                        |
| 1581 | + $this->knownUserService->expects($this->once())  | 
                                                        |
| 1582 | +                ->method('deleteKnownTo') | 
                                                        |
| 1583 | + ->with($knownTo);  | 
                                                        |
| 1584 | +  | 
                                                        |
| 1585 | + $this->knownUserService->expects($this->exactly(count($expected)))  | 
                                                        |
| 1586 | +                ->method('storeIsKnownToUser') | 
                                                        |
| 1587 | + ->with($knownTo, $this->anything());  | 
                                                        |
| 1588 | + }  | 
                                                        |
| 1589 | +  | 
                                                        |
| 1590 | +        $this->urlGenerator->method('getAbsoluteURL') | 
                                                        |
| 1591 | +            ->with('/') | 
                                                        |
| 1592 | +            ->willReturn('https://localhost/'); | 
                                                        |
| 1593 | +  | 
                                                        |
| 1594 | + $response = $this->api->searchByPhoneNumbers($location, $search);  | 
                                                        |
| 1595 | +  | 
                                                        |
| 1596 | + self::assertEquals($status, $response->getStatus());  | 
                                                        |
| 1597 | + self::assertEquals($expected, $response->getData());  | 
                                                        |
| 1598 | + }  | 
                                                        |
| 1599 | +  | 
                                                        |
| 1600 | +    public function testEditUserRegularUserSelfEditChangeDisplayName(): void { | 
                                                        |
| 1601 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1602 | + ->disableOriginalConstructor()  | 
                                                        |
| 1603 | + ->getMock();  | 
                                                        |
| 1604 | + $loggedInUser  | 
                                                        |
| 1605 | + ->expects($this->any())  | 
                                                        |
| 1606 | +            ->method('getUID') | 
                                                        |
| 1607 | +            ->willReturn('UID'); | 
                                                        |
| 1608 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1609 | + ->disableOriginalConstructor()  | 
                                                        |
| 1610 | + ->getMock();  | 
                                                        |
| 1611 | + $this->userSession  | 
                                                        |
| 1612 | + ->expects($this->once())  | 
                                                        |
| 1613 | +            ->method('getUser') | 
                                                        |
| 1614 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1615 | + $this->userManager  | 
                                                        |
| 1616 | + ->expects($this->once())  | 
                                                        |
| 1617 | +            ->method('get') | 
                                                        |
| 1618 | +            ->with('UserToEdit') | 
                                                        |
| 1619 | + ->willReturn($targetUser);  | 
                                                        |
| 1620 | + $targetUser  | 
                                                        |
| 1621 | + ->expects($this->once())  | 
                                                        |
| 1622 | +            ->method('getBackend') | 
                                                        |
| 1623 | + ->willReturn($this->createMock(ISetDisplayNameBackend::class));  | 
                                                        |
| 1624 | + $targetUser  | 
                                                        |
| 1625 | + ->expects($this->once())  | 
                                                        |
| 1626 | +            ->method('setDisplayName') | 
                                                        |
| 1627 | +            ->with('NewDisplayName') | 
                                                        |
| 1628 | + ->willReturn(true);  | 
                                                        |
| 1629 | + $targetUser  | 
                                                        |
| 1630 | + ->expects($this->any())  | 
                                                        |
| 1631 | +            ->method('getUID') | 
                                                        |
| 1632 | +            ->willReturn('UID'); | 
                                                        |
| 1633 | +  | 
                                                        |
| 1634 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', 'display', 'NewDisplayName')->getData()); | 
                                                        |
| 1635 | + }  | 
                                                        |
| 1636 | +  | 
                                                        |
| 1637 | +    public function testEditUserRegularUserSelfEditChangeEmailValid(): void { | 
                                                        |
| 1638 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1639 | + ->disableOriginalConstructor()  | 
                                                        |
| 1640 | + ->getMock();  | 
                                                        |
| 1641 | + $loggedInUser  | 
                                                        |
| 1642 | + ->expects($this->any())  | 
                                                        |
| 1643 | +            ->method('getUID') | 
                                                        |
| 1644 | +            ->willReturn('UID'); | 
                                                        |
| 1645 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1646 | + ->disableOriginalConstructor()  | 
                                                        |
| 1647 | + ->getMock();  | 
                                                        |
| 1648 | + $this->userSession  | 
                                                        |
| 1649 | + ->expects($this->once())  | 
                                                        |
| 1650 | +            ->method('getUser') | 
                                                        |
| 1651 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1652 | + $this->userManager  | 
                                                        |
| 1653 | + ->expects($this->once())  | 
                                                        |
| 1654 | +            ->method('get') | 
                                                        |
| 1655 | +            ->with('UserToEdit') | 
                                                        |
| 1656 | + ->willReturn($targetUser);  | 
                                                        |
| 1657 | + $targetUser  | 
                                                        |
| 1658 | + ->expects($this->once())  | 
                                                        |
| 1659 | +            ->method('setEMailAddress') | 
                                                        |
| 1660 | +            ->with('[email protected]'); | 
                                                        |
| 1661 | + $targetUser  | 
                                                        |
| 1662 | + ->expects($this->any())  | 
                                                        |
| 1663 | +            ->method('getUID') | 
                                                        |
| 1664 | +            ->willReturn('UID'); | 
                                                        |
| 1665 | +  | 
                                                        |
| 1666 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1667 | + $targetUser  | 
                                                        |
| 1668 | + ->expects($this->any())  | 
                                                        |
| 1669 | +            ->method('getBackend') | 
                                                        |
| 1670 | + ->willReturn($backend);  | 
                                                        |
| 1671 | +  | 
                                                        |
| 1672 | +        $this->config->method('getSystemValue')->willReturnCallback(fn (string $key, mixed $default) => $default); | 
                                                        |
| 1673 | +  | 
                                                        |
| 1674 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', 'email', '[email protected]')->getData()); | 
                                                        |
| 1675 | + }  | 
                                                        |
| 1676 | +  | 
                                                        |
| 1677 | +    public function testEditUserRegularUserSelfEditAddAdditionalEmailValid(): void { | 
                                                        |
| 1678 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1679 | + ->disableOriginalConstructor()  | 
                                                        |
| 1680 | + ->getMock();  | 
                                                        |
| 1681 | + $loggedInUser  | 
                                                        |
| 1682 | + ->expects($this->any())  | 
                                                        |
| 1683 | +            ->method('getUID') | 
                                                        |
| 1684 | +            ->willReturn('UID'); | 
                                                        |
| 1685 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1686 | + ->disableOriginalConstructor()  | 
                                                        |
| 1687 | + ->getMock();  | 
                                                        |
| 1688 | + $this->userSession  | 
                                                        |
| 1689 | + ->expects($this->once())  | 
                                                        |
| 1690 | +            ->method('getUser') | 
                                                        |
| 1691 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1692 | + $this->userManager  | 
                                                        |
| 1693 | + ->expects($this->once())  | 
                                                        |
| 1694 | +            ->method('get') | 
                                                        |
| 1695 | +            ->with('UserToEdit') | 
                                                        |
| 1696 | + ->willReturn($targetUser);  | 
                                                        |
| 1697 | + $targetUser  | 
                                                        |
| 1698 | + ->expects($this->any())  | 
                                                        |
| 1699 | +            ->method('getUID') | 
                                                        |
| 1700 | +            ->willReturn('UID'); | 
                                                        |
| 1701 | +  | 
                                                        |
| 1702 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1703 | + $targetUser  | 
                                                        |
| 1704 | + ->expects($this->any())  | 
                                                        |
| 1705 | +            ->method('getBackend') | 
                                                        |
| 1706 | + ->willReturn($backend);  | 
                                                        |
| 1707 | +  | 
                                                        |
| 1708 | + $userAccount = $this->createMock(IAccount::class);  | 
                                                        |
| 1709 | +  | 
                                                        |
| 1710 | + $this->accountManager  | 
                                                        |
| 1711 | + ->expects($this->once())  | 
                                                        |
| 1712 | +            ->method('getAccount') | 
                                                        |
| 1713 | + ->with($targetUser)  | 
                                                        |
| 1714 | + ->willReturn($userAccount);  | 
                                                        |
| 1715 | + $this->accountManager  | 
                                                        |
| 1716 | + ->expects($this->once())  | 
                                                        |
| 1717 | +            ->method('updateAccount') | 
                                                        |
| 1718 | + ->with($userAccount);  | 
                                                        |
| 1719 | +  | 
                                                        |
| 1720 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', 'additional_mail', '[email protected]')->getData()); | 
                                                        |
| 1721 | + }  | 
                                                        |
| 1722 | +  | 
                                                        |
| 1723 | +    public function testEditUserRegularUserSelfEditAddAdditionalEmailMainAddress(): void { | 
                                                        |
| 1724 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1725 | + ->disableOriginalConstructor()  | 
                                                        |
| 1726 | + ->getMock();  | 
                                                        |
| 1727 | + $loggedInUser  | 
                                                        |
| 1728 | + ->expects($this->any())  | 
                                                        |
| 1729 | +            ->method('getUID') | 
                                                        |
| 1730 | +            ->willReturn('UID'); | 
                                                        |
| 1731 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1732 | + ->disableOriginalConstructor()  | 
                                                        |
| 1733 | + ->getMock();  | 
                                                        |
| 1734 | + $this->userSession  | 
                                                        |
| 1735 | + ->expects($this->once())  | 
                                                        |
| 1736 | +            ->method('getUser') | 
                                                        |
| 1737 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1738 | + $this->userManager  | 
                                                        |
| 1739 | + ->expects($this->once())  | 
                                                        |
| 1740 | +            ->method('get') | 
                                                        |
| 1741 | +            ->with('UserToEdit') | 
                                                        |
| 1742 | + ->willReturn($targetUser);  | 
                                                        |
| 1743 | + $targetUser  | 
                                                        |
| 1744 | + ->expects($this->any())  | 
                                                        |
| 1745 | +            ->method('getUID') | 
                                                        |
| 1746 | +            ->willReturn('UID'); | 
                                                        |
| 1747 | +  | 
                                                        |
| 1748 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1749 | + $targetUser  | 
                                                        |
| 1750 | + ->expects($this->any())  | 
                                                        |
| 1751 | +            ->method('getBackend') | 
                                                        |
| 1752 | + ->willReturn($backend);  | 
                                                        |
| 1753 | + $targetUser  | 
                                                        |
| 1754 | + ->expects($this->any())  | 
                                                        |
| 1755 | +            ->method('getSystemEMailAddress') | 
                                                        |
| 1756 | +            ->willReturn('[email protected]'); | 
                                                        |
| 1757 | +  | 
                                                        |
| 1758 | + $userAccount = $this->createMock(IAccount::class);  | 
                                                        |
| 1759 | +  | 
                                                        |
| 1760 | + $this->accountManager  | 
                                                        |
| 1761 | + ->expects($this->never())  | 
                                                        |
| 1762 | +            ->method('getAccount') | 
                                                        |
| 1763 | + ->with($targetUser)  | 
                                                        |
| 1764 | + ->willReturn($userAccount);  | 
                                                        |
| 1765 | + $this->accountManager  | 
                                                        |
| 1766 | + ->expects($this->never())  | 
                                                        |
| 1767 | +            ->method('updateAccount') | 
                                                        |
| 1768 | + ->with($userAccount);  | 
                                                        |
| 1769 | +  | 
                                                        |
| 1770 | + $this->expectException(OCSException::class);  | 
                                                        |
| 1771 | + $this->expectExceptionCode(101);  | 
                                                        |
| 1772 | +        $this->api->editUser('UserToEdit', 'additional_mail', '[email protected]')->getData(); | 
                                                        |
| 1773 | + }  | 
                                                        |
| 1774 | +  | 
                                                        |
| 1775 | +    public function testEditUserRegularUserSelfEditAddAdditionalEmailDuplicate(): void { | 
                                                        |
| 1776 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1777 | + ->disableOriginalConstructor()  | 
                                                        |
| 1778 | + ->getMock();  | 
                                                        |
| 1779 | + $loggedInUser  | 
                                                        |
| 1780 | + ->expects($this->any())  | 
                                                        |
| 1781 | +            ->method('getUID') | 
                                                        |
| 1782 | +            ->willReturn('UID'); | 
                                                        |
| 1783 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1784 | + ->disableOriginalConstructor()  | 
                                                        |
| 1785 | + ->getMock();  | 
                                                        |
| 1786 | + $this->userSession  | 
                                                        |
| 1787 | + ->expects($this->once())  | 
                                                        |
| 1788 | +            ->method('getUser') | 
                                                        |
| 1789 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1790 | + $this->userManager  | 
                                                        |
| 1791 | + ->expects($this->once())  | 
                                                        |
| 1792 | +            ->method('get') | 
                                                        |
| 1793 | +            ->with('UserToEdit') | 
                                                        |
| 1794 | + ->willReturn($targetUser);  | 
                                                        |
| 1795 | + $targetUser  | 
                                                        |
| 1796 | + ->expects($this->any())  | 
                                                        |
| 1797 | +            ->method('getUID') | 
                                                        |
| 1798 | +            ->willReturn('UID'); | 
                                                        |
| 1799 | +  | 
                                                        |
| 1800 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1801 | + $targetUser  | 
                                                        |
| 1802 | + ->expects($this->any())  | 
                                                        |
| 1803 | +            ->method('getBackend') | 
                                                        |
| 1804 | + ->willReturn($backend);  | 
                                                        |
| 1805 | +  | 
                                                        |
| 1806 | + $property = $this->createMock(IAccountProperty::class);  | 
                                                        |
| 1807 | +        $property->method('getValue') | 
                                                        |
| 1808 | +            ->willReturn('[email protected]'); | 
                                                        |
| 1809 | + $collection = $this->createMock(IAccountPropertyCollection::class);  | 
                                                        |
| 1810 | +        $collection->method('getPropertyByValue') | 
                                                        |
| 1811 | +            ->with('[email protected]') | 
                                                        |
| 1812 | + ->willReturn($property);  | 
                                                        |
| 1813 | +  | 
                                                        |
| 1814 | + $userAccount = $this->createMock(IAccount::class);  | 
                                                        |
| 1815 | +        $userAccount->method('getPropertyCollection') | 
                                                        |
| 1816 | + ->with(IAccountManager::COLLECTION_EMAIL)  | 
                                                        |
| 1817 | + ->willReturn($collection);  | 
                                                        |
| 1818 | +  | 
                                                        |
| 1819 | + $this->accountManager  | 
                                                        |
| 1820 | + ->expects($this->once())  | 
                                                        |
| 1821 | +            ->method('getAccount') | 
                                                        |
| 1822 | + ->with($targetUser)  | 
                                                        |
| 1823 | + ->willReturn($userAccount);  | 
                                                        |
| 1824 | + $this->accountManager  | 
                                                        |
| 1825 | + ->expects($this->never())  | 
                                                        |
| 1826 | +            ->method('updateAccount') | 
                                                        |
| 1827 | + ->with($userAccount);  | 
                                                        |
| 1828 | +  | 
                                                        |
| 1829 | + $this->expectException(OCSException::class);  | 
                                                        |
| 1830 | + $this->expectExceptionCode(101);  | 
                                                        |
| 1831 | +        $this->api->editUser('UserToEdit', 'additional_mail', '[email protected]')->getData(); | 
                                                        |
| 1832 | + }  | 
                                                        |
| 1833 | +  | 
                                                        |
| 1834 | +    public function testEditUserRegularUserSelfEditChangeEmailInvalid(): void { | 
                                                        |
| 1835 | + $this->expectException(OCSException::class);  | 
                                                        |
| 1836 | + $this->expectExceptionCode(101);  | 
                                                        |
| 1837 | +  | 
                                                        |
| 1838 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1839 | + ->disableOriginalConstructor()  | 
                                                        |
| 1840 | + ->getMock();  | 
                                                        |
| 1841 | + $loggedInUser  | 
                                                        |
| 1842 | + ->expects($this->any())  | 
                                                        |
| 1843 | +            ->method('getUID') | 
                                                        |
| 1844 | +            ->willReturn('UID'); | 
                                                        |
| 1845 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1846 | + ->disableOriginalConstructor()  | 
                                                        |
| 1847 | + ->getMock();  | 
                                                        |
| 1848 | + $this->userSession  | 
                                                        |
| 1849 | + ->expects($this->once())  | 
                                                        |
| 1850 | +            ->method('getUser') | 
                                                        |
| 1851 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1852 | + $this->userManager  | 
                                                        |
| 1853 | + ->expects($this->once())  | 
                                                        |
| 1854 | +            ->method('get') | 
                                                        |
| 1855 | +            ->with('UserToEdit') | 
                                                        |
| 1856 | + ->willReturn($targetUser);  | 
                                                        |
| 1857 | + $targetUser  | 
                                                        |
| 1858 | + ->expects($this->any())  | 
                                                        |
| 1859 | +            ->method('getUID') | 
                                                        |
| 1860 | +            ->willReturn('UID'); | 
                                                        |
| 1861 | +  | 
                                                        |
| 1862 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1863 | + $targetUser  | 
                                                        |
| 1864 | + ->expects($this->any())  | 
                                                        |
| 1865 | +            ->method('getBackend') | 
                                                        |
| 1866 | + ->willReturn($backend);  | 
                                                        |
| 1867 | +  | 
                                                        |
| 1868 | +        $this->config->method('getSystemValue')->willReturnCallback(fn (string $key, mixed $default) => $default); | 
                                                        |
| 1869 | +  | 
                                                        |
| 1870 | +        $this->api->editUser('UserToEdit', 'email', 'demo.org'); | 
                                                        |
| 1871 | + }  | 
                                                        |
| 1872 | +  | 
                                                        |
| 1873 | +    public function selfEditChangePropertyProvider() { | 
                                                        |
| 1874 | + return [  | 
                                                        |
| 1875 | + [IAccountManager::PROPERTY_TWITTER, '@oldtwitter', '@newtwitter'],  | 
                                                        |
| 1876 | + [IAccountManager::PROPERTY_FEDIVERSE, '@[email protected]', '@[email protected]'],  | 
                                                        |
| 1877 | + [IAccountManager::PROPERTY_PHONE, '1234', '12345'],  | 
                                                        |
| 1878 | + [IAccountManager::PROPERTY_ADDRESS, 'Something street 2', 'Another street 3'],  | 
                                                        |
| 1879 | + [IAccountManager::PROPERTY_WEBSITE, 'https://examplesite1', 'https://examplesite2'],  | 
                                                        |
| 1880 | + [IAccountManager::PROPERTY_ORGANISATION, 'Organisation A', 'Organisation B'],  | 
                                                        |
| 1881 | + [IAccountManager::PROPERTY_ROLE, 'Human', 'Alien'],  | 
                                                        |
| 1882 | + [IAccountManager::PROPERTY_HEADLINE, 'Hi', 'Hello'],  | 
                                                        |
| 1883 | + [IAccountManager::PROPERTY_BIOGRAPHY, 'A biography', 'Another biography'],  | 
                                                        |
| 1884 | + [IAccountManager::PROPERTY_PROFILE_ENABLED, '1', '0'],  | 
                                                        |
| 1885 | + [IAccountManager::PROPERTY_PRONOUNS, 'they/them', 'he/him'],  | 
                                                        |
| 1886 | + ];  | 
                                                        |
| 1887 | + }  | 
                                                        |
| 1888 | +  | 
                                                        |
| 1889 | + /**  | 
                                                        |
| 1890 | + * @dataProvider selfEditChangePropertyProvider  | 
                                                        |
| 1891 | + */  | 
                                                        |
| 1892 | +    public function testEditUserRegularUserSelfEditChangeProperty($propertyName, $oldValue, $newValue): void { | 
                                                        |
| 1893 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1894 | + ->disableOriginalConstructor()  | 
                                                        |
| 1895 | + ->getMock();  | 
                                                        |
| 1896 | + $loggedInUser  | 
                                                        |
| 1897 | + ->expects($this->any())  | 
                                                        |
| 1898 | +            ->method('getUID') | 
                                                        |
| 1899 | +            ->willReturn('UID'); | 
                                                        |
| 1900 | + $this->userSession  | 
                                                        |
| 1901 | + ->expects($this->once())  | 
                                                        |
| 1902 | +            ->method('getUser') | 
                                                        |
| 1903 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1904 | + $this->userManager  | 
                                                        |
| 1905 | + ->expects($this->once())  | 
                                                        |
| 1906 | +            ->method('get') | 
                                                        |
| 1907 | +            ->with('UserToEdit') | 
                                                        |
| 1908 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1909 | +  | 
                                                        |
| 1910 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1911 | + $loggedInUser  | 
                                                        |
| 1912 | + ->expects($this->any())  | 
                                                        |
| 1913 | +            ->method('getBackend') | 
                                                        |
| 1914 | + ->willReturn($backend);  | 
                                                        |
| 1915 | +  | 
                                                        |
| 1916 | + $propertyMock = $this->createMock(IAccountProperty::class);  | 
                                                        |
| 1917 | + $propertyMock->expects($this->any())  | 
                                                        |
| 1918 | +            ->method('getName') | 
                                                        |
| 1919 | + ->willReturn($propertyName);  | 
                                                        |
| 1920 | + $propertyMock->expects($this->any())  | 
                                                        |
| 1921 | +            ->method('getValue') | 
                                                        |
| 1922 | + ->willReturn($oldValue);  | 
                                                        |
| 1923 | + $propertyMock->expects($this->once())  | 
                                                        |
| 1924 | +            ->method('setValue') | 
                                                        |
| 1925 | + ->with($newValue)  | 
                                                        |
| 1926 | + ->willReturnSelf();  | 
                                                        |
| 1927 | + $propertyMock->expects($this->any())  | 
                                                        |
| 1928 | +            ->method('getScope') | 
                                                        |
| 1929 | + ->willReturn(IAccountManager::SCOPE_LOCAL);  | 
                                                        |
| 1930 | +  | 
                                                        |
| 1931 | + $accountMock = $this->createMock(IAccount::class);  | 
                                                        |
| 1932 | + $accountMock->expects($this->any())  | 
                                                        |
| 1933 | +            ->method('getProperty') | 
                                                        |
| 1934 | + ->with($propertyName)  | 
                                                        |
| 1935 | + ->willReturn($propertyMock);  | 
                                                        |
| 1936 | +  | 
                                                        |
| 1937 | + $this->accountManager->expects($this->atLeastOnce())  | 
                                                        |
| 1938 | +            ->method('getAccount') | 
                                                        |
| 1939 | + ->with($loggedInUser)  | 
                                                        |
| 1940 | + ->willReturn($accountMock);  | 
                                                        |
| 1941 | + $this->accountManager->expects($this->once())  | 
                                                        |
| 1942 | +            ->method('updateAccount') | 
                                                        |
| 1943 | + ->with($accountMock);  | 
                                                        |
| 1944 | +  | 
                                                        |
| 1945 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', $propertyName, $newValue)->getData()); | 
                                                        |
| 1946 | + }  | 
                                                        |
| 1947 | +  | 
                                                        |
| 1948 | +    public function selfEditChangePropertyScopeProvider() { | 
                                                        |
| 1949 | + return [  | 
                                                        |
| 1950 | + [IAccountManager::PROPERTY_AVATAR, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1951 | + [IAccountManager::PROPERTY_DISPLAYNAME, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1952 | + [IAccountManager::PROPERTY_EMAIL, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1953 | + [IAccountManager::PROPERTY_TWITTER, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1954 | + [IAccountManager::PROPERTY_FEDIVERSE, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1955 | + [IAccountManager::PROPERTY_PHONE, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1956 | + [IAccountManager::PROPERTY_ADDRESS, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1957 | + [IAccountManager::PROPERTY_WEBSITE, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1958 | + [IAccountManager::PROPERTY_ORGANISATION, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1959 | + [IAccountManager::PROPERTY_ROLE, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1960 | + [IAccountManager::PROPERTY_HEADLINE, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1961 | + [IAccountManager::PROPERTY_BIOGRAPHY, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1962 | + [IAccountManager::PROPERTY_PROFILE_ENABLED, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1963 | + [IAccountManager::PROPERTY_PRONOUNS, IAccountManager::SCOPE_LOCAL, IAccountManager::SCOPE_FEDERATED],  | 
                                                        |
| 1964 | + ];  | 
                                                        |
| 1965 | + }  | 
                                                        |
| 1966 | +  | 
                                                        |
| 1967 | + /**  | 
                                                        |
| 1968 | + * @dataProvider selfEditChangePropertyProvider  | 
                                                        |
| 1969 | + */  | 
                                                        |
| 1970 | +    public function testEditUserRegularUserSelfEditChangePropertyScope($propertyName, $oldScope, $newScope): void { | 
                                                        |
| 1971 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 1972 | + ->disableOriginalConstructor()  | 
                                                        |
| 1973 | + ->getMock();  | 
                                                        |
| 1974 | + $loggedInUser  | 
                                                        |
| 1975 | + ->expects($this->any())  | 
                                                        |
| 1976 | +            ->method('getUID') | 
                                                        |
| 1977 | +            ->willReturn('UID'); | 
                                                        |
| 1978 | + $this->userSession  | 
                                                        |
| 1979 | + ->expects($this->once())  | 
                                                        |
| 1980 | +            ->method('getUser') | 
                                                        |
| 1981 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1982 | + $this->userManager  | 
                                                        |
| 1983 | + ->expects($this->once())  | 
                                                        |
| 1984 | +            ->method('get') | 
                                                        |
| 1985 | +            ->with('UserToEdit') | 
                                                        |
| 1986 | + ->willReturn($loggedInUser);  | 
                                                        |
| 1987 | +  | 
                                                        |
| 1988 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 1989 | + $loggedInUser  | 
                                                        |
| 1990 | + ->expects($this->any())  | 
                                                        |
| 1991 | +            ->method('getBackend') | 
                                                        |
| 1992 | + ->willReturn($backend);  | 
                                                        |
| 1993 | +  | 
                                                        |
| 1994 | + $propertyMock = $this->createMock(IAccountProperty::class);  | 
                                                        |
| 1995 | + $propertyMock->expects($this->any())  | 
                                                        |
| 1996 | +            ->method('getName') | 
                                                        |
| 1997 | + ->willReturn($propertyName);  | 
                                                        |
| 1998 | + $propertyMock->expects($this->any())  | 
                                                        |
| 1999 | +            ->method('getValue') | 
                                                        |
| 2000 | +            ->willReturn('somevalue'); | 
                                                        |
| 2001 | + $propertyMock->expects($this->any())  | 
                                                        |
| 2002 | +            ->method('getScope') | 
                                                        |
| 2003 | + ->willReturn($oldScope);  | 
                                                        |
| 2004 | + $propertyMock->expects($this->atLeastOnce())  | 
                                                        |
| 2005 | +            ->method('setScope') | 
                                                        |
| 2006 | + ->with($newScope)  | 
                                                        |
| 2007 | + ->willReturnSelf();  | 
                                                        |
| 2008 | +  | 
                                                        |
| 2009 | + $accountMock = $this->createMock(IAccount::class);  | 
                                                        |
| 2010 | + $accountMock->expects($this->any())  | 
                                                        |
| 2011 | +            ->method('getProperty') | 
                                                        |
| 2012 | + ->with($propertyName)  | 
                                                        |
| 2013 | + ->willReturn($propertyMock);  | 
                                                        |
| 2014 | +  | 
                                                        |
| 2015 | + $this->accountManager->expects($this->atLeastOnce())  | 
                                                        |
| 2016 | +            ->method('getAccount') | 
                                                        |
| 2017 | + ->with($loggedInUser)  | 
                                                        |
| 2018 | + ->willReturn($accountMock);  | 
                                                        |
| 2019 | + $this->accountManager->expects($this->once())  | 
                                                        |
| 2020 | +            ->method('updateAccount') | 
                                                        |
| 2021 | + ->with($accountMock);  | 
                                                        |
| 2022 | +  | 
                                                        |
| 2023 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', $propertyName . 'Scope', $newScope)->getData()); | 
                                                        |
| 2024 | + }  | 
                                                        |
| 2025 | +  | 
                                                        |
| 2026 | +    public function testEditUserRegularUserSelfEditChangePassword(): void { | 
                                                        |
| 2027 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 2028 | + ->disableOriginalConstructor()  | 
                                                        |
| 2029 | + ->getMock();  | 
                                                        |
| 2030 | + $loggedInUser  | 
                                                        |
| 2031 | + ->expects($this->any())  | 
                                                        |
| 2032 | +            ->method('getUID') | 
                                                        |
| 2033 | +            ->willReturn('UID'); | 
                                                        |
| 2034 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 2035 | + ->disableOriginalConstructor()  | 
                                                        |
| 2036 | + ->getMock();  | 
                                                        |
| 2037 | + $this->userSession  | 
                                                        |
| 2038 | + ->expects($this->once())  | 
                                                        |
| 2039 | +            ->method('getUser') | 
                                                        |
| 2040 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2041 | + $this->userManager  | 
                                                        |
| 2042 | + ->expects($this->once())  | 
                                                        |
| 2043 | +            ->method('get') | 
                                                        |
| 2044 | +            ->with('UserToEdit') | 
                                                        |
| 2045 | + ->willReturn($targetUser);  | 
                                                        |
| 2046 | + $targetUser  | 
                                                        |
| 2047 | + ->expects($this->once())  | 
                                                        |
| 2048 | +            ->method('canChangePassword') | 
                                                        |
| 2049 | + ->willReturn(true);  | 
                                                        |
| 2050 | + $targetUser  | 
                                                        |
| 2051 | + ->expects($this->once())  | 
                                                        |
| 2052 | +            ->method('setPassword') | 
                                                        |
| 2053 | +            ->with('NewPassword'); | 
                                                        |
| 2054 | + $targetUser  | 
                                                        |
| 2055 | + ->expects($this->any())  | 
                                                        |
| 2056 | +            ->method('getUID') | 
                                                        |
| 2057 | +            ->willReturn('UID'); | 
                                                        |
| 2058 | +  | 
                                                        |
| 2059 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2060 | + $targetUser  | 
                                                        |
| 2061 | + ->expects($this->any())  | 
                                                        |
| 2062 | +            ->method('getBackend') | 
                                                        |
| 2063 | + ->willReturn($backend);  | 
                                                        |
| 2064 | +  | 
                                                        |
| 2065 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', 'password', 'NewPassword')->getData()); | 
                                                        |
| 2066 | + }  | 
                                                        |
| 2067 | +  | 
                                                        |
| 2068 | +  | 
                                                        |
| 2069 | +  | 
                                                        |
| 2070 | +    public function testEditUserRegularUserSelfEditChangeQuota(): void { | 
                                                        |
| 2071 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2072 | + $this->expectExceptionCode(113);  | 
                                                        |
| 2073 | +  | 
                                                        |
| 2074 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 2075 | + ->disableOriginalConstructor()  | 
                                                        |
| 2076 | + ->getMock();  | 
                                                        |
| 2077 | + $loggedInUser  | 
                                                        |
| 2078 | + ->expects($this->any())  | 
                                                        |
| 2079 | +            ->method('getUID') | 
                                                        |
| 2080 | +            ->willReturn('UID'); | 
                                                        |
| 2081 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 2082 | + ->disableOriginalConstructor()  | 
                                                        |
| 2083 | + ->getMock();  | 
                                                        |
| 2084 | + $this->userSession  | 
                                                        |
| 2085 | + ->expects($this->once())  | 
                                                        |
| 2086 | +            ->method('getUser') | 
                                                        |
| 2087 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2088 | + $this->userManager  | 
                                                        |
| 2089 | + ->expects($this->once())  | 
                                                        |
| 2090 | +            ->method('get') | 
                                                        |
| 2091 | +            ->with('UserToEdit') | 
                                                        |
| 2092 | + ->willReturn($targetUser);  | 
                                                        |
| 2093 | + $targetUser  | 
                                                        |
| 2094 | + ->expects($this->any())  | 
                                                        |
| 2095 | +            ->method('getUID') | 
                                                        |
| 2096 | +            ->willReturn('UID'); | 
                                                        |
| 2097 | +  | 
                                                        |
| 2098 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2099 | + $targetUser  | 
                                                        |
| 2100 | + ->expects($this->any())  | 
                                                        |
| 2101 | +            ->method('getBackend') | 
                                                        |
| 2102 | + ->willReturn($backend);  | 
                                                        |
| 2103 | +  | 
                                                        |
| 2104 | +        $this->api->editUser('UserToEdit', 'quota', 'NewQuota'); | 
                                                        |
| 2105 | + }  | 
                                                        |
| 2106 | +  | 
                                                        |
| 2107 | +    public function testEditUserAdminUserSelfEditChangeValidQuota(): void { | 
                                                        |
| 2108 | + $this->config  | 
                                                        |
| 2109 | + ->expects($this->once())  | 
                                                        |
| 2110 | +            ->method('getAppValue') | 
                                                        |
| 2111 | +            ->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 2112 | +                if ($key === 'max_quota') { | 
                                                        |
| 2113 | + return '-1';  | 
                                                        |
| 2114 | + }  | 
                                                        |
| 2115 | + return null;  | 
                                                        |
| 2116 | + });  | 
                                                        |
| 2117 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2118 | + $loggedInUser  | 
                                                        |
| 2119 | + ->expects($this->any())  | 
                                                        |
| 2120 | +            ->method('getUID') | 
                                                        |
| 2121 | +            ->willReturn('UID'); | 
                                                        |
| 2122 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2123 | + $targetUser->expects($this->once())  | 
                                                        |
| 2124 | +            ->method('setQuota') | 
                                                        |
| 2125 | +            ->with('2.9 MB'); | 
                                                        |
| 2126 | + $this->userSession  | 
                                                        |
| 2127 | + ->expects($this->once())  | 
                                                        |
| 2128 | +            ->method('getUser') | 
                                                        |
| 2129 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2130 | + $this->userManager  | 
                                                        |
| 2131 | + ->expects($this->once())  | 
                                                        |
| 2132 | +            ->method('get') | 
                                                        |
| 2133 | +            ->with('UserToEdit') | 
                                                        |
| 2134 | + ->willReturn($targetUser);  | 
                                                        |
| 2135 | + $this->groupManager  | 
                                                        |
| 2136 | + ->expects($this->exactly(3))  | 
                                                        |
| 2137 | +            ->method('isAdmin') | 
                                                        |
| 2138 | +            ->with('UID') | 
                                                        |
| 2139 | + ->willReturn(true);  | 
                                                        |
| 2140 | + $targetUser  | 
                                                        |
| 2141 | + ->expects($this->any())  | 
                                                        |
| 2142 | +            ->method('getUID') | 
                                                        |
| 2143 | +            ->willReturn('UID'); | 
                                                        |
| 2144 | +  | 
                                                        |
| 2145 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2146 | + $targetUser  | 
                                                        |
| 2147 | + ->expects($this->any())  | 
                                                        |
| 2148 | +            ->method('getBackend') | 
                                                        |
| 2149 | + ->willReturn($backend);  | 
                                                        |
| 2150 | +  | 
                                                        |
| 2151 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', 'quota', '3042824')->getData()); | 
                                                        |
| 2152 | + }  | 
                                                        |
| 2153 | +  | 
                                                        |
| 2154 | +  | 
                                                        |
| 2155 | +  | 
                                                        |
| 2156 | +    public function testEditUserAdminUserSelfEditChangeInvalidQuota(): void { | 
                                                        |
| 2157 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2158 | +        $this->expectExceptionMessage('Invalid quota value: ABC'); | 
                                                        |
| 2159 | + $this->expectExceptionCode(101);  | 
                                                        |
| 2160 | +  | 
                                                        |
| 2161 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2162 | + $loggedInUser  | 
                                                        |
| 2163 | + ->expects($this->any())  | 
                                                        |
| 2164 | +            ->method('getUID') | 
                                                        |
| 2165 | +            ->willReturn('UID'); | 
                                                        |
| 2166 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2167 | + $this->userSession  | 
                                                        |
| 2168 | + ->expects($this->once())  | 
                                                        |
| 2169 | +            ->method('getUser') | 
                                                        |
| 2170 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2171 | + $this->userManager  | 
                                                        |
| 2172 | + ->expects($this->once())  | 
                                                        |
| 2173 | +            ->method('get') | 
                                                        |
| 2174 | +            ->with('UserToEdit') | 
                                                        |
| 2175 | + ->willReturn($targetUser);  | 
                                                        |
| 2176 | + $this->groupManager  | 
                                                        |
| 2177 | + ->expects($this->exactly(3))  | 
                                                        |
| 2178 | +            ->method('isAdmin') | 
                                                        |
| 2179 | +            ->with('UID') | 
                                                        |
| 2180 | + ->willReturn(true);  | 
                                                        |
| 2181 | + $targetUser  | 
                                                        |
| 2182 | + ->expects($this->any())  | 
                                                        |
| 2183 | +            ->method('getUID') | 
                                                        |
| 2184 | +            ->willReturn('UID'); | 
                                                        |
| 2185 | +  | 
                                                        |
| 2186 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2187 | + $targetUser  | 
                                                        |
| 2188 | + ->expects($this->any())  | 
                                                        |
| 2189 | +            ->method('getBackend') | 
                                                        |
| 2190 | + ->willReturn($backend);  | 
                                                        |
| 2191 | +  | 
                                                        |
| 2192 | +        $this->api->editUser('UserToEdit', 'quota', 'ABC'); | 
                                                        |
| 2193 | + }  | 
                                                        |
| 2194 | +  | 
                                                        |
| 2195 | +    public function testEditUserAdminUserEditChangeValidQuota(): void { | 
                                                        |
| 2196 | + $this->config  | 
                                                        |
| 2197 | + ->expects($this->once())  | 
                                                        |
| 2198 | +            ->method('getAppValue') | 
                                                        |
| 2199 | +            ->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 2200 | +                if ($key === 'max_quota') { | 
                                                        |
| 2201 | + return '-1';  | 
                                                        |
| 2202 | + }  | 
                                                        |
| 2203 | + return null;  | 
                                                        |
| 2204 | + });  | 
                                                        |
| 2205 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2206 | + $loggedInUser  | 
                                                        |
| 2207 | + ->expects($this->any())  | 
                                                        |
| 2208 | +            ->method('getUID') | 
                                                        |
| 2209 | +            ->willReturn('admin'); | 
                                                        |
| 2210 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2211 | + $targetUser->expects($this->once())  | 
                                                        |
| 2212 | +            ->method('setQuota') | 
                                                        |
| 2213 | +            ->with('2.9 MB'); | 
                                                        |
| 2214 | + $this->userSession  | 
                                                        |
| 2215 | + ->expects($this->once())  | 
                                                        |
| 2216 | +            ->method('getUser') | 
                                                        |
| 2217 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2218 | + $this->userManager  | 
                                                        |
| 2219 | + ->expects($this->once())  | 
                                                        |
| 2220 | +            ->method('get') | 
                                                        |
| 2221 | +            ->with('UserToEdit') | 
                                                        |
| 2222 | + ->willReturn($targetUser);  | 
                                                        |
| 2223 | + $this->groupManager  | 
                                                        |
| 2224 | + ->expects($this->once())  | 
                                                        |
| 2225 | +            ->method('isAdmin') | 
                                                        |
| 2226 | +            ->with('admin') | 
                                                        |
| 2227 | + ->willReturn(true);  | 
                                                        |
| 2228 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2229 | + ->disableOriginalConstructor()  | 
                                                        |
| 2230 | + ->getMock();  | 
                                                        |
| 2231 | + $this->groupManager  | 
                                                        |
| 2232 | + ->expects($this->once())  | 
                                                        |
| 2233 | +            ->method('getSubAdmin') | 
                                                        |
| 2234 | + ->willReturn($subAdminManager);  | 
                                                        |
| 2235 | + $targetUser  | 
                                                        |
| 2236 | + ->expects($this->any())  | 
                                                        |
| 2237 | +            ->method('getUID') | 
                                                        |
| 2238 | +            ->willReturn('UID'); | 
                                                        |
| 2239 | +  | 
                                                        |
| 2240 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2241 | + $targetUser  | 
                                                        |
| 2242 | + ->expects($this->any())  | 
                                                        |
| 2243 | +            ->method('getBackend') | 
                                                        |
| 2244 | + ->willReturn($backend);  | 
                                                        |
| 2245 | +  | 
                                                        |
| 2246 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', 'quota', '3042824')->getData()); | 
                                                        |
| 2247 | + }  | 
                                                        |
| 2248 | +  | 
                                                        |
| 2249 | +    public function testEditUserSelfEditChangeLanguage(): void { | 
                                                        |
| 2250 | + $this->l10nFactory->expects($this->once())  | 
                                                        |
| 2251 | +            ->method('findAvailableLanguages') | 
                                                        |
| 2252 | + ->willReturn(['en', 'de', 'sv']);  | 
                                                        |
| 2253 | + $this->config->expects($this->any())  | 
                                                        |
| 2254 | +            ->method('getSystemValue') | 
                                                        |
| 2255 | + ->willReturnMap([  | 
                                                        |
| 2256 | + ['allow_user_to_change_display_name', true, true],  | 
                                                        |
| 2257 | + ['force_language', false, false],  | 
                                                        |
| 2258 | + ]);  | 
                                                        |
| 2259 | +  | 
                                                        |
| 2260 | + $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 2261 | + $loggedInUser  | 
                                                        |
| 2262 | + ->expects($this->any())  | 
                                                        |
| 2263 | +            ->method('getUID') | 
                                                        |
| 2264 | +            ->willReturn('UserToEdit'); | 
                                                        |
| 2265 | + $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 2266 | + $this->config->expects($this->once())  | 
                                                        |
| 2267 | +            ->method('setUserValue') | 
                                                        |
| 2268 | +            ->with('UserToEdit', 'core', 'lang', 'de'); | 
                                                        |
| 2269 | + $this->userSession  | 
                                                        |
| 2270 | + ->expects($this->once())  | 
                                                        |
| 2271 | +            ->method('getUser') | 
                                                        |
| 2272 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2273 | + $this->userManager  | 
                                                        |
| 2274 | + ->expects($this->once())  | 
                                                        |
| 2275 | +            ->method('get') | 
                                                        |
| 2276 | +            ->with('UserToEdit') | 
                                                        |
| 2277 | + ->willReturn($targetUser);  | 
                                                        |
| 2278 | + $this->groupManager  | 
                                                        |
| 2279 | + ->expects($this->atLeastOnce())  | 
                                                        |
| 2280 | +            ->method('isAdmin') | 
                                                        |
| 2281 | +            ->with('UserToEdit') | 
                                                        |
| 2282 | + ->willReturn(false);  | 
                                                        |
| 2283 | + $targetUser  | 
                                                        |
| 2284 | + ->expects($this->any())  | 
                                                        |
| 2285 | +            ->method('getUID') | 
                                                        |
| 2286 | +            ->willReturn('UserToEdit'); | 
                                                        |
| 2287 | +  | 
                                                        |
| 2288 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2289 | + $targetUser  | 
                                                        |
| 2290 | + ->expects($this->any())  | 
                                                        |
| 2291 | +            ->method('getBackend') | 
                                                        |
| 2292 | + ->willReturn($backend);  | 
                                                        |
| 2293 | +  | 
                                                        |
| 2294 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', 'language', 'de')->getData()); | 
                                                        |
| 2295 | + }  | 
                                                        |
| 2296 | +  | 
                                                        |
| 2297 | +    public function dataEditUserSelfEditChangeLanguageButForced() { | 
                                                        |
| 2298 | + return [  | 
                                                        |
| 2299 | + ['de'],  | 
                                                        |
| 2300 | + [true],  | 
                                                        |
| 2301 | + ];  | 
                                                        |
| 2302 | + }  | 
                                                        |
| 2303 | +  | 
                                                        |
| 2304 | + /**  | 
                                                        |
| 2305 | + * @dataProvider dataEditUserSelfEditChangeLanguageButForced  | 
                                                        |
| 2306 | + */  | 
                                                        |
| 2307 | +    public function testEditUserSelfEditChangeLanguageButForced($forced): void { | 
                                                        |
| 2308 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2309 | +  | 
                                                        |
| 2310 | + $this->config->expects($this->any())  | 
                                                        |
| 2311 | +            ->method('getSystemValue') | 
                                                        |
| 2312 | + ->willReturnMap([  | 
                                                        |
| 2313 | + ['allow_user_to_change_display_name', true, true],  | 
                                                        |
| 2314 | + ['force_language', false, $forced],  | 
                                                        |
| 2315 | + ]);  | 
                                                        |
| 2316 | +  | 
                                                        |
| 2317 | + $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 2318 | + $loggedInUser  | 
                                                        |
| 2319 | + ->expects($this->any())  | 
                                                        |
| 2320 | +            ->method('getUID') | 
                                                        |
| 2321 | +            ->willReturn('UserToEdit'); | 
                                                        |
| 2322 | + $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 2323 | + $this->config->expects($this->never())  | 
                                                        |
| 2324 | +            ->method('setUserValue'); | 
                                                        |
| 2325 | + $this->userSession  | 
                                                        |
| 2326 | + ->expects($this->once())  | 
                                                        |
| 2327 | +            ->method('getUser') | 
                                                        |
| 2328 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2329 | + $this->userManager  | 
                                                        |
| 2330 | + ->expects($this->once())  | 
                                                        |
| 2331 | +            ->method('get') | 
                                                        |
| 2332 | +            ->with('UserToEdit') | 
                                                        |
| 2333 | + ->willReturn($targetUser);  | 
                                                        |
| 2334 | + $this->groupManager  | 
                                                        |
| 2335 | + ->expects($this->atLeastOnce())  | 
                                                        |
| 2336 | +            ->method('isAdmin') | 
                                                        |
| 2337 | +            ->with('UserToEdit') | 
                                                        |
| 2338 | + ->willReturn(false);  | 
                                                        |
| 2339 | + $targetUser  | 
                                                        |
| 2340 | + ->expects($this->any())  | 
                                                        |
| 2341 | +            ->method('getUID') | 
                                                        |
| 2342 | +            ->willReturn('UserToEdit'); | 
                                                        |
| 2343 | +  | 
                                                        |
| 2344 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2345 | + $targetUser  | 
                                                        |
| 2346 | + ->expects($this->any())  | 
                                                        |
| 2347 | +            ->method('getBackend') | 
                                                        |
| 2348 | + ->willReturn($backend);  | 
                                                        |
| 2349 | +  | 
                                                        |
| 2350 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', 'language', 'de')->getData()); | 
                                                        |
| 2351 | + }  | 
                                                        |
| 2352 | +  | 
                                                        |
| 2353 | +    public function testEditUserAdminEditChangeLanguage(): void { | 
                                                        |
| 2354 | + $this->l10nFactory->expects($this->once())  | 
                                                        |
| 2355 | +            ->method('findAvailableLanguages') | 
                                                        |
| 2356 | + ->willReturn(['en', 'de', 'sv']);  | 
                                                        |
| 2357 | +  | 
                                                        |
| 2358 | + $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 2359 | + $loggedInUser  | 
                                                        |
| 2360 | + ->expects($this->any())  | 
                                                        |
| 2361 | +            ->method('getUID') | 
                                                        |
| 2362 | +            ->willReturn('admin'); | 
                                                        |
| 2363 | + $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 2364 | + $this->config->expects($this->once())  | 
                                                        |
| 2365 | +            ->method('setUserValue') | 
                                                        |
| 2366 | +            ->with('UserToEdit', 'core', 'lang', 'de'); | 
                                                        |
| 2367 | + $this->userSession  | 
                                                        |
| 2368 | + ->expects($this->once())  | 
                                                        |
| 2369 | +            ->method('getUser') | 
                                                        |
| 2370 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2371 | + $this->userManager  | 
                                                        |
| 2372 | + ->expects($this->once())  | 
                                                        |
| 2373 | +            ->method('get') | 
                                                        |
| 2374 | +            ->with('UserToEdit') | 
                                                        |
| 2375 | + ->willReturn($targetUser);  | 
                                                        |
| 2376 | + $this->groupManager  | 
                                                        |
| 2377 | + ->expects($this->once())  | 
                                                        |
| 2378 | +            ->method('isAdmin') | 
                                                        |
| 2379 | +            ->with('admin') | 
                                                        |
| 2380 | + ->willReturn(true);  | 
                                                        |
| 2381 | + $subAdminManager = $this->createMock(SubAdmin::class);  | 
                                                        |
| 2382 | + $this->groupManager  | 
                                                        |
| 2383 | + ->expects($this->once())  | 
                                                        |
| 2384 | +            ->method('getSubAdmin') | 
                                                        |
| 2385 | + ->willReturn($subAdminManager);  | 
                                                        |
| 2386 | + $targetUser  | 
                                                        |
| 2387 | + ->expects($this->any())  | 
                                                        |
| 2388 | +            ->method('getUID') | 
                                                        |
| 2389 | +            ->willReturn('UserToEdit'); | 
                                                        |
| 2390 | +  | 
                                                        |
| 2391 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2392 | + $targetUser  | 
                                                        |
| 2393 | + ->expects($this->any())  | 
                                                        |
| 2394 | +            ->method('getBackend') | 
                                                        |
| 2395 | + ->willReturn($backend);  | 
                                                        |
| 2396 | +  | 
                                                        |
| 2397 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', 'language', 'de')->getData()); | 
                                                        |
| 2398 | + }  | 
                                                        |
| 2399 | +  | 
                                                        |
| 2400 | + /**  | 
                                                        |
| 2401 | + * @dataProvider dataEditUserSelfEditChangeLanguageButForced  | 
                                                        |
| 2402 | + */  | 
                                                        |
| 2403 | +    public function testEditUserAdminEditChangeLanguageInvalidLanguage(): void { | 
                                                        |
| 2404 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2405 | +  | 
                                                        |
| 2406 | +  | 
                                                        |
| 2407 | + $this->l10nFactory->expects($this->once())  | 
                                                        |
| 2408 | +            ->method('findAvailableLanguages') | 
                                                        |
| 2409 | + ->willReturn(['en', 'de', 'sv']);  | 
                                                        |
| 2410 | +  | 
                                                        |
| 2411 | + $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 2412 | + $loggedInUser  | 
                                                        |
| 2413 | + ->expects($this->any())  | 
                                                        |
| 2414 | +            ->method('getUID') | 
                                                        |
| 2415 | +            ->willReturn('admin'); | 
                                                        |
| 2416 | + $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 2417 | + $this->config->expects($this->never())  | 
                                                        |
| 2418 | +            ->method('setUserValue'); | 
                                                        |
| 2419 | + $this->userSession  | 
                                                        |
| 2420 | + ->expects($this->once())  | 
                                                        |
| 2421 | +            ->method('getUser') | 
                                                        |
| 2422 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2423 | + $this->userManager  | 
                                                        |
| 2424 | + ->expects($this->once())  | 
                                                        |
| 2425 | +            ->method('get') | 
                                                        |
| 2426 | +            ->with('UserToEdit') | 
                                                        |
| 2427 | + ->willReturn($targetUser);  | 
                                                        |
| 2428 | + $this->groupManager  | 
                                                        |
| 2429 | + ->expects($this->once())  | 
                                                        |
| 2430 | +            ->method('isAdmin') | 
                                                        |
| 2431 | +            ->with('admin') | 
                                                        |
| 2432 | + ->willReturn(true);  | 
                                                        |
| 2433 | + $subAdminManager = $this->createMock(SubAdmin::class);  | 
                                                        |
| 2434 | + $this->groupManager  | 
                                                        |
| 2435 | + ->expects($this->once())  | 
                                                        |
| 2436 | +            ->method('getSubAdmin') | 
                                                        |
| 2437 | + ->willReturn($subAdminManager);  | 
                                                        |
| 2438 | + $targetUser  | 
                                                        |
| 2439 | + ->expects($this->any())  | 
                                                        |
| 2440 | +            ->method('getUID') | 
                                                        |
| 2441 | +            ->willReturn('UserToEdit'); | 
                                                        |
| 2442 | +  | 
                                                        |
| 2443 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2444 | + $targetUser  | 
                                                        |
| 2445 | + ->expects($this->any())  | 
                                                        |
| 2446 | +            ->method('getBackend') | 
                                                        |
| 2447 | + ->willReturn($backend);  | 
                                                        |
| 2448 | +  | 
                                                        |
| 2449 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', 'language', 'ru')->getData()); | 
                                                        |
| 2450 | + }  | 
                                                        |
| 2451 | +  | 
                                                        |
| 2452 | +    public function testEditUserSubadminUserAccessible(): void { | 
                                                        |
| 2453 | + $this->config  | 
                                                        |
| 2454 | + ->expects($this->once())  | 
                                                        |
| 2455 | +            ->method('getAppValue') | 
                                                        |
| 2456 | +            ->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 2457 | +                if ($key === 'max_quota') { | 
                                                        |
| 2458 | + return '-1';  | 
                                                        |
| 2459 | + }  | 
                                                        |
| 2460 | + return null;  | 
                                                        |
| 2461 | + });  | 
                                                        |
| 2462 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2463 | + $loggedInUser  | 
                                                        |
| 2464 | + ->expects($this->any())  | 
                                                        |
| 2465 | +            ->method('getUID') | 
                                                        |
| 2466 | +            ->willReturn('subadmin'); | 
                                                        |
| 2467 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2468 | + $targetUser->expects($this->once())  | 
                                                        |
| 2469 | +            ->method('setQuota') | 
                                                        |
| 2470 | +            ->with('2.9 MB'); | 
                                                        |
| 2471 | + $this->userSession  | 
                                                        |
| 2472 | + ->expects($this->once())  | 
                                                        |
| 2473 | +            ->method('getUser') | 
                                                        |
| 2474 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2475 | + $this->userManager  | 
                                                        |
| 2476 | + ->expects($this->once())  | 
                                                        |
| 2477 | +            ->method('get') | 
                                                        |
| 2478 | +            ->with('UserToEdit') | 
                                                        |
| 2479 | + ->willReturn($targetUser);  | 
                                                        |
| 2480 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2481 | + ->disableOriginalConstructor()  | 
                                                        |
| 2482 | + ->getMock();  | 
                                                        |
| 2483 | + $subAdminManager  | 
                                                        |
| 2484 | + ->expects($this->once())  | 
                                                        |
| 2485 | +            ->method('isUserAccessible') | 
                                                        |
| 2486 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2487 | + ->willReturn(true);  | 
                                                        |
| 2488 | + $this->groupManager  | 
                                                        |
| 2489 | + ->expects($this->once())  | 
                                                        |
| 2490 | +            ->method('getSubAdmin') | 
                                                        |
| 2491 | + ->willReturn($subAdminManager);  | 
                                                        |
| 2492 | + $targetUser  | 
                                                        |
| 2493 | + ->expects($this->any())  | 
                                                        |
| 2494 | +            ->method('getUID') | 
                                                        |
| 2495 | +            ->willReturn('UID'); | 
                                                        |
| 2496 | +  | 
                                                        |
| 2497 | + $backend = $this->createMock(UserInterface::class);  | 
                                                        |
| 2498 | + $targetUser  | 
                                                        |
| 2499 | + ->expects($this->any())  | 
                                                        |
| 2500 | +            ->method('getBackend') | 
                                                        |
| 2501 | + ->willReturn($backend);  | 
                                                        |
| 2502 | +  | 
                                                        |
| 2503 | +        $this->assertEquals([], $this->api->editUser('UserToEdit', 'quota', '3042824')->getData()); | 
                                                        |
| 2504 | + }  | 
                                                        |
| 2505 | +  | 
                                                        |
| 2506 | +  | 
                                                        |
| 2507 | +    public function testEditUserSubadminUserInaccessible(): void { | 
                                                        |
| 2508 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2509 | + $this->expectExceptionCode(998);  | 
                                                        |
| 2510 | +  | 
                                                        |
| 2511 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2512 | + $loggedInUser  | 
                                                        |
| 2513 | + ->expects($this->any())  | 
                                                        |
| 2514 | +            ->method('getUID') | 
                                                        |
| 2515 | +            ->willReturn('subadmin'); | 
                                                        |
| 2516 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2517 | + $this->userSession  | 
                                                        |
| 2518 | + ->expects($this->once())  | 
                                                        |
| 2519 | +            ->method('getUser') | 
                                                        |
| 2520 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2521 | + $this->userManager  | 
                                                        |
| 2522 | + ->expects($this->once())  | 
                                                        |
| 2523 | +            ->method('get') | 
                                                        |
| 2524 | +            ->with('UserToEdit') | 
                                                        |
| 2525 | + ->willReturn($targetUser);  | 
                                                        |
| 2526 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2527 | + ->disableOriginalConstructor()  | 
                                                        |
| 2528 | + ->getMock();  | 
                                                        |
| 2529 | + $subAdminManager  | 
                                                        |
| 2530 | + ->expects($this->once())  | 
                                                        |
| 2531 | +            ->method('isUserAccessible') | 
                                                        |
| 2532 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2533 | + ->willReturn(false);  | 
                                                        |
| 2534 | + $this->groupManager  | 
                                                        |
| 2535 | + ->expects($this->once())  | 
                                                        |
| 2536 | +            ->method('getSubAdmin') | 
                                                        |
| 2537 | + ->willReturn($subAdminManager);  | 
                                                        |
| 2538 | + $targetUser  | 
                                                        |
| 2539 | + ->expects($this->any())  | 
                                                        |
| 2540 | +            ->method('getUID') | 
                                                        |
| 2541 | +            ->willReturn('UID'); | 
                                                        |
| 2542 | +  | 
                                                        |
| 2543 | +        $this->api->editUser('UserToEdit', 'quota', 'value'); | 
                                                        |
| 2544 | + }  | 
                                                        |
| 2545 | +  | 
                                                        |
| 2546 | +  | 
                                                        |
| 2547 | +    public function testDeleteUserNotExistingUser(): void { | 
                                                        |
| 2548 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2549 | + $this->expectExceptionCode(998);  | 
                                                        |
| 2550 | +  | 
                                                        |
| 2551 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2552 | + $loggedInUser  | 
                                                        |
| 2553 | + ->expects($this->any())  | 
                                                        |
| 2554 | +            ->method('getUID') | 
                                                        |
| 2555 | +            ->willReturn('UserToEdit'); | 
                                                        |
| 2556 | + $this->userSession  | 
                                                        |
| 2557 | + ->expects($this->once())  | 
                                                        |
| 2558 | +            ->method('getUser') | 
                                                        |
| 2559 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2560 | + $this->userManager  | 
                                                        |
| 2561 | + ->expects($this->once())  | 
                                                        |
| 2562 | +            ->method('get') | 
                                                        |
| 2563 | +            ->with('UserToDelete') | 
                                                        |
| 2564 | + ->willReturn(null);  | 
                                                        |
| 2565 | +  | 
                                                        |
| 2566 | +        $this->api->deleteUser('UserToDelete'); | 
                                                        |
| 2567 | + }  | 
                                                        |
| 2568 | +  | 
                                                        |
| 2569 | +  | 
                                                        |
| 2570 | +    public function testDeleteUserSelf(): void { | 
                                                        |
| 2571 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2572 | + $this->expectExceptionCode(101);  | 
                                                        |
| 2573 | +  | 
                                                        |
| 2574 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2575 | + $loggedInUser  | 
                                                        |
| 2576 | + ->expects($this->any())  | 
                                                        |
| 2577 | +            ->method('getUID') | 
                                                        |
| 2578 | +            ->willReturn('UID'); | 
                                                        |
| 2579 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2580 | + $targetUser  | 
                                                        |
| 2581 | + ->expects($this->once())  | 
                                                        |
| 2582 | +            ->method('getUID') | 
                                                        |
| 2583 | +            ->willReturn('UID'); | 
                                                        |
| 2584 | + $this->userSession  | 
                                                        |
| 2585 | + ->expects($this->once())  | 
                                                        |
| 2586 | +            ->method('getUser') | 
                                                        |
| 2587 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2588 | + $this->userManager  | 
                                                        |
| 2589 | + ->expects($this->once())  | 
                                                        |
| 2590 | +            ->method('get') | 
                                                        |
| 2591 | +            ->with('UserToDelete') | 
                                                        |
| 2592 | + ->willReturn($targetUser);  | 
                                                        |
| 2593 | +  | 
                                                        |
| 2594 | +        $this->api->deleteUser('UserToDelete'); | 
                                                        |
| 2595 | + }  | 
                                                        |
| 2596 | +  | 
                                                        |
| 2597 | +    public function testDeleteSuccessfulUserAsAdmin(): void { | 
                                                        |
| 2598 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2599 | + $loggedInUser  | 
                                                        |
| 2600 | + ->expects($this->any())  | 
                                                        |
| 2601 | +            ->method('getUID') | 
                                                        |
| 2602 | +            ->willReturn('admin'); | 
                                                        |
| 2603 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2604 | + $targetUser  | 
                                                        |
| 2605 | + ->expects($this->once())  | 
                                                        |
| 2606 | +            ->method('getUID') | 
                                                        |
| 2607 | +            ->willReturn('UID'); | 
                                                        |
| 2608 | + $this->userSession  | 
                                                        |
| 2609 | + ->expects($this->once())  | 
                                                        |
| 2610 | +            ->method('getUser') | 
                                                        |
| 2611 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2612 | + $this->userManager  | 
                                                        |
| 2613 | + ->expects($this->once())  | 
                                                        |
| 2614 | +            ->method('get') | 
                                                        |
| 2615 | +            ->with('UserToDelete') | 
                                                        |
| 2616 | + ->willReturn($targetUser);  | 
                                                        |
| 2617 | + $this->groupManager  | 
                                                        |
| 2618 | + ->expects($this->once())  | 
                                                        |
| 2619 | +            ->method('isAdmin') | 
                                                        |
| 2620 | +            ->with('admin') | 
                                                        |
| 2621 | + ->willReturn(true);  | 
                                                        |
| 2622 | + $targetUser  | 
                                                        |
| 2623 | + ->expects($this->once())  | 
                                                        |
| 2624 | +            ->method('delete') | 
                                                        |
| 2625 | + ->willReturn(true);  | 
                                                        |
| 2626 | +  | 
                                                        |
| 2627 | +        $this->assertEquals([], $this->api->deleteUser('UserToDelete')->getData()); | 
                                                        |
| 2628 | + }  | 
                                                        |
| 2629 | +  | 
                                                        |
| 2630 | +  | 
                                                        |
| 2631 | +    public function testDeleteUnsuccessfulUserAsAdmin(): void { | 
                                                        |
| 2632 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2633 | + $this->expectExceptionCode(101);  | 
                                                        |
| 2634 | +  | 
                                                        |
| 2635 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2636 | + $loggedInUser  | 
                                                        |
| 2637 | + ->expects($this->any())  | 
                                                        |
| 2638 | +            ->method('getUID') | 
                                                        |
| 2639 | +            ->willReturn('admin'); | 
                                                        |
| 2640 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2641 | + $targetUser  | 
                                                        |
| 2642 | + ->expects($this->once())  | 
                                                        |
| 2643 | +            ->method('getUID') | 
                                                        |
| 2644 | +            ->willReturn('UID'); | 
                                                        |
| 2645 | + $this->userSession  | 
                                                        |
| 2646 | + ->expects($this->once())  | 
                                                        |
| 2647 | +            ->method('getUser') | 
                                                        |
| 2648 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2649 | + $this->userManager  | 
                                                        |
| 2650 | + ->expects($this->once())  | 
                                                        |
| 2651 | +            ->method('get') | 
                                                        |
| 2652 | +            ->with('UserToDelete') | 
                                                        |
| 2653 | + ->willReturn($targetUser);  | 
                                                        |
| 2654 | + $this->groupManager  | 
                                                        |
| 2655 | + ->expects($this->once())  | 
                                                        |
| 2656 | +            ->method('isAdmin') | 
                                                        |
| 2657 | +            ->with('admin') | 
                                                        |
| 2658 | + ->willReturn(true);  | 
                                                        |
| 2659 | + $targetUser  | 
                                                        |
| 2660 | + ->expects($this->once())  | 
                                                        |
| 2661 | +            ->method('delete') | 
                                                        |
| 2662 | + ->willReturn(false);  | 
                                                        |
| 2663 | +  | 
                                                        |
| 2664 | +        $this->api->deleteUser('UserToDelete'); | 
                                                        |
| 2665 | + }  | 
                                                        |
| 2666 | +  | 
                                                        |
| 2667 | +    public function testDeleteSuccessfulUserAsSubadmin(): void { | 
                                                        |
| 2668 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2669 | + $loggedInUser  | 
                                                        |
| 2670 | + ->expects($this->any())  | 
                                                        |
| 2671 | +            ->method('getUID') | 
                                                        |
| 2672 | +            ->willReturn('subadmin'); | 
                                                        |
| 2673 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2674 | + $targetUser  | 
                                                        |
| 2675 | + ->expects($this->once())  | 
                                                        |
| 2676 | +            ->method('getUID') | 
                                                        |
| 2677 | +            ->willReturn('UID'); | 
                                                        |
| 2678 | + $this->userSession  | 
                                                        |
| 2679 | + ->expects($this->once())  | 
                                                        |
| 2680 | +            ->method('getUser') | 
                                                        |
| 2681 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2682 | + $this->userManager  | 
                                                        |
| 2683 | + ->expects($this->once())  | 
                                                        |
| 2684 | +            ->method('get') | 
                                                        |
| 2685 | +            ->with('UserToDelete') | 
                                                        |
| 2686 | + ->willReturn($targetUser);  | 
                                                        |
| 2687 | + $this->groupManager  | 
                                                        |
| 2688 | + ->expects($this->once())  | 
                                                        |
| 2689 | +            ->method('isAdmin') | 
                                                        |
| 2690 | +            ->with('subadmin') | 
                                                        |
| 2691 | + ->willReturn(false);  | 
                                                        |
| 2692 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2693 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2694 | + $subAdminManager  | 
                                                        |
| 2695 | + ->expects($this->once())  | 
                                                        |
| 2696 | +            ->method('isUserAccessible') | 
                                                        |
| 2697 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2698 | + ->willReturn(true);  | 
                                                        |
| 2699 | + $this->groupManager  | 
                                                        |
| 2700 | + ->expects($this->once())  | 
                                                        |
| 2701 | +            ->method('getSubAdmin') | 
                                                        |
| 2702 | + ->willReturn($subAdminManager);  | 
                                                        |
| 2703 | + $targetUser  | 
                                                        |
| 2704 | + ->expects($this->once())  | 
                                                        |
| 2705 | +            ->method('delete') | 
                                                        |
| 2706 | + ->willReturn(true);  | 
                                                        |
| 2707 | +  | 
                                                        |
| 2708 | +        $this->assertEquals([], $this->api->deleteUser('UserToDelete')->getData()); | 
                                                        |
| 2709 | + }  | 
                                                        |
| 2710 | +  | 
                                                        |
| 2711 | +  | 
                                                        |
| 2712 | +    public function testDeleteUnsuccessfulUserAsSubadmin(): void { | 
                                                        |
| 2713 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2714 | + $this->expectExceptionCode(101);  | 
                                                        |
| 2715 | +  | 
                                                        |
| 2716 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2717 | + $loggedInUser  | 
                                                        |
| 2718 | + ->expects($this->any())  | 
                                                        |
| 2719 | +            ->method('getUID') | 
                                                        |
| 2720 | +            ->willReturn('subadmin'); | 
                                                        |
| 2721 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2722 | + $targetUser  | 
                                                        |
| 2723 | + ->expects($this->once())  | 
                                                        |
| 2724 | +            ->method('getUID') | 
                                                        |
| 2725 | +            ->willReturn('UID'); | 
                                                        |
| 2726 | + $this->userSession  | 
                                                        |
| 2727 | + ->expects($this->once())  | 
                                                        |
| 2728 | +            ->method('getUser') | 
                                                        |
| 2729 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2730 | + $this->userManager  | 
                                                        |
| 2731 | + ->expects($this->once())  | 
                                                        |
| 2732 | +            ->method('get') | 
                                                        |
| 2733 | +            ->with('UserToDelete') | 
                                                        |
| 2734 | + ->willReturn($targetUser);  | 
                                                        |
| 2735 | + $this->groupManager  | 
                                                        |
| 2736 | + ->expects($this->once())  | 
                                                        |
| 2737 | +            ->method('isAdmin') | 
                                                        |
| 2738 | +            ->with('subadmin') | 
                                                        |
| 2739 | + ->willReturn(false);  | 
                                                        |
| 2740 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2741 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2742 | + $subAdminManager  | 
                                                        |
| 2743 | + ->expects($this->once())  | 
                                                        |
| 2744 | +            ->method('isUserAccessible') | 
                                                        |
| 2745 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2746 | + ->willReturn(true);  | 
                                                        |
| 2747 | + $this->groupManager  | 
                                                        |
| 2748 | + ->expects($this->once())  | 
                                                        |
| 2749 | +            ->method('getSubAdmin') | 
                                                        |
| 2750 | + ->willReturn($subAdminManager);  | 
                                                        |
| 2751 | + $targetUser  | 
                                                        |
| 2752 | + ->expects($this->once())  | 
                                                        |
| 2753 | +            ->method('delete') | 
                                                        |
| 2754 | + ->willReturn(false);  | 
                                                        |
| 2755 | +  | 
                                                        |
| 2756 | +        $this->api->deleteUser('UserToDelete'); | 
                                                        |
| 2757 | + }  | 
                                                        |
| 2758 | +  | 
                                                        |
| 2759 | +  | 
                                                        |
| 2760 | +    public function testDeleteUserAsSubAdminAndUserIsNotAccessible(): void { | 
                                                        |
| 2761 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2762 | + $this->expectExceptionCode(998);  | 
                                                        |
| 2763 | +  | 
                                                        |
| 2764 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2765 | + $loggedInUser  | 
                                                        |
| 2766 | + ->expects($this->any())  | 
                                                        |
| 2767 | +            ->method('getUID') | 
                                                        |
| 2768 | +            ->willReturn('subadmin'); | 
                                                        |
| 2769 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2770 | + $targetUser  | 
                                                        |
| 2771 | + ->expects($this->once())  | 
                                                        |
| 2772 | +            ->method('getUID') | 
                                                        |
| 2773 | +            ->willReturn('UID'); | 
                                                        |
| 2774 | + $this->userSession  | 
                                                        |
| 2775 | + ->expects($this->once())  | 
                                                        |
| 2776 | +            ->method('getUser') | 
                                                        |
| 2777 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2778 | + $this->userManager  | 
                                                        |
| 2779 | + ->expects($this->once())  | 
                                                        |
| 2780 | +            ->method('get') | 
                                                        |
| 2781 | +            ->with('UserToDelete') | 
                                                        |
| 2782 | + ->willReturn($targetUser);  | 
                                                        |
| 2783 | + $this->groupManager  | 
                                                        |
| 2784 | + ->expects($this->once())  | 
                                                        |
| 2785 | +            ->method('isAdmin') | 
                                                        |
| 2786 | +            ->with('subadmin') | 
                                                        |
| 2787 | + ->willReturn(false);  | 
                                                        |
| 2788 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2789 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2790 | + $subAdminManager  | 
                                                        |
| 2791 | + ->expects($this->once())  | 
                                                        |
| 2792 | +            ->method('isUserAccessible') | 
                                                        |
| 2793 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2794 | + ->willReturn(false);  | 
                                                        |
| 2795 | + $this->groupManager  | 
                                                        |
| 2796 | + ->expects($this->once())  | 
                                                        |
| 2797 | +            ->method('getSubAdmin') | 
                                                        |
| 2798 | + ->willReturn($subAdminManager);  | 
                                                        |
| 2799 | +  | 
                                                        |
| 2800 | +        $this->api->deleteUser('UserToDelete'); | 
                                                        |
| 2801 | + }  | 
                                                        |
| 2802 | +  | 
                                                        |
| 2803 | +  | 
                                                        |
| 2804 | +    public function testGetUsersGroupsTargetUserNotExisting(): void { | 
                                                        |
| 2805 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2806 | + $this->expectExceptionCode(998);  | 
                                                        |
| 2807 | +  | 
                                                        |
| 2808 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2809 | + $this->userSession  | 
                                                        |
| 2810 | + ->expects($this->once())  | 
                                                        |
| 2811 | +            ->method('getUser') | 
                                                        |
| 2812 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2813 | +  | 
                                                        |
| 2814 | +        $this->api->getUsersGroups('UserToLookup'); | 
                                                        |
| 2815 | + }  | 
                                                        |
| 2816 | +  | 
                                                        |
| 2817 | +    public function testGetUsersGroupsSelfTargetted(): void { | 
                                                        |
| 2818 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2819 | + $loggedInUser  | 
                                                        |
| 2820 | + ->expects($this->exactly(3))  | 
                                                        |
| 2821 | +            ->method('getUID') | 
                                                        |
| 2822 | +            ->willReturn('UserToLookup'); | 
                                                        |
| 2823 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2824 | + $targetUser  | 
                                                        |
| 2825 | + ->expects($this->once())  | 
                                                        |
| 2826 | +            ->method('getUID') | 
                                                        |
| 2827 | +            ->willReturn('UserToLookup'); | 
                                                        |
| 2828 | + $this->userSession  | 
                                                        |
| 2829 | + ->expects($this->once())  | 
                                                        |
| 2830 | +            ->method('getUser') | 
                                                        |
| 2831 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2832 | + $this->userManager  | 
                                                        |
| 2833 | + ->expects($this->once())  | 
                                                        |
| 2834 | +            ->method('get') | 
                                                        |
| 2835 | +            ->with('UserToLookup') | 
                                                        |
| 2836 | + ->willReturn($targetUser);  | 
                                                        |
| 2837 | + $this->groupManager  | 
                                                        |
| 2838 | + ->expects($this->once())  | 
                                                        |
| 2839 | +            ->method('getUserGroupIds') | 
                                                        |
| 2840 | + ->with($targetUser)  | 
                                                        |
| 2841 | + ->willReturn(['DummyValue']);  | 
                                                        |
| 2842 | +  | 
                                                        |
| 2843 | +        $this->assertEquals(['groups' => ['DummyValue']], $this->api->getUsersGroups('UserToLookup')->getData()); | 
                                                        |
| 2844 | + }  | 
                                                        |
| 2845 | +  | 
                                                        |
| 2846 | +    public function testGetUsersGroupsForAdminUser(): void { | 
                                                        |
| 2847 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2848 | + $loggedInUser  | 
                                                        |
| 2849 | + ->expects($this->exactly(3))  | 
                                                        |
| 2850 | +            ->method('getUID') | 
                                                        |
| 2851 | +            ->willReturn('admin'); | 
                                                        |
| 2852 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2853 | + $targetUser  | 
                                                        |
| 2854 | + ->expects($this->once())  | 
                                                        |
| 2855 | +            ->method('getUID') | 
                                                        |
| 2856 | +            ->willReturn('UserToLookup'); | 
                                                        |
| 2857 | + $this->userSession  | 
                                                        |
| 2858 | + ->expects($this->once())  | 
                                                        |
| 2859 | +            ->method('getUser') | 
                                                        |
| 2860 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2861 | + $this->userManager  | 
                                                        |
| 2862 | + ->expects($this->once())  | 
                                                        |
| 2863 | +            ->method('get') | 
                                                        |
| 2864 | +            ->with('UserToLookup') | 
                                                        |
| 2865 | + ->willReturn($targetUser);  | 
                                                        |
| 2866 | + $this->groupManager  | 
                                                        |
| 2867 | + ->expects($this->once())  | 
                                                        |
| 2868 | +            ->method('getUserGroupIds') | 
                                                        |
| 2869 | + ->with($targetUser)  | 
                                                        |
| 2870 | + ->willReturn(['DummyValue']);  | 
                                                        |
| 2871 | + $this->groupManager  | 
                                                        |
| 2872 | + ->expects($this->once())  | 
                                                        |
| 2873 | +            ->method('isAdmin') | 
                                                        |
| 2874 | +            ->with('admin') | 
                                                        |
| 2875 | + ->willReturn(true);  | 
                                                        |
| 2876 | +  | 
                                                        |
| 2877 | +        $this->assertEquals(['groups' => ['DummyValue']], $this->api->getUsersGroups('UserToLookup')->getData()); | 
                                                        |
| 2878 | + }  | 
                                                        |
| 2879 | +  | 
                                                        |
| 2880 | +    public function testGetUsersGroupsForSubAdminUserAndUserIsAccessible(): void { | 
                                                        |
| 2881 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2882 | + $loggedInUser  | 
                                                        |
| 2883 | + ->expects($this->exactly(3))  | 
                                                        |
| 2884 | +            ->method('getUID') | 
                                                        |
| 2885 | +            ->willReturn('subadmin'); | 
                                                        |
| 2886 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2887 | + $targetUser  | 
                                                        |
| 2888 | + ->expects($this->once())  | 
                                                        |
| 2889 | +            ->method('getUID') | 
                                                        |
| 2890 | +            ->willReturn('UserToLookup'); | 
                                                        |
| 2891 | + $this->userSession  | 
                                                        |
| 2892 | + ->expects($this->once())  | 
                                                        |
| 2893 | +            ->method('getUser') | 
                                                        |
| 2894 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2895 | + $this->userManager  | 
                                                        |
| 2896 | + ->expects($this->once())  | 
                                                        |
| 2897 | +            ->method('get') | 
                                                        |
| 2898 | +            ->with('UserToLookup') | 
                                                        |
| 2899 | + ->willReturn($targetUser);  | 
                                                        |
| 2900 | + $this->groupManager  | 
                                                        |
| 2901 | + ->expects($this->once())  | 
                                                        |
| 2902 | +            ->method('isAdmin') | 
                                                        |
| 2903 | +            ->with('subadmin') | 
                                                        |
| 2904 | + ->willReturn(false);  | 
                                                        |
| 2905 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2906 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2907 | + $subAdminManager  | 
                                                        |
| 2908 | + ->expects($this->once())  | 
                                                        |
| 2909 | +            ->method('isUserAccessible') | 
                                                        |
| 2910 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2911 | + ->willReturn(true);  | 
                                                        |
| 2912 | + $this->groupManager  | 
                                                        |
| 2913 | + ->expects($this->once())  | 
                                                        |
| 2914 | +            ->method('getSubAdmin') | 
                                                        |
| 2915 | + ->willReturn($subAdminManager);  | 
                                                        |
| 2916 | +        $group1 = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 2917 | + $group1  | 
                                                        |
| 2918 | + ->expects($this->any())  | 
                                                        |
| 2919 | +            ->method('getGID') | 
                                                        |
| 2920 | +            ->willReturn('Group1'); | 
                                                        |
| 2921 | +        $group2 = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 2922 | + $group2  | 
                                                        |
| 2923 | + ->expects($this->any())  | 
                                                        |
| 2924 | +            ->method('getGID') | 
                                                        |
| 2925 | +            ->willReturn('Group2'); | 
                                                        |
| 2926 | + $subAdminManager  | 
                                                        |
| 2927 | + ->expects($this->once())  | 
                                                        |
| 2928 | +            ->method('getSubAdminsGroups') | 
                                                        |
| 2929 | + ->with($loggedInUser)  | 
                                                        |
| 2930 | + ->willReturn([$group1, $group2]);  | 
                                                        |
| 2931 | + $this->groupManager  | 
                                                        |
| 2932 | + ->expects($this->any())  | 
                                                        |
| 2933 | +            ->method('getUserGroupIds') | 
                                                        |
| 2934 | + ->with($targetUser)  | 
                                                        |
| 2935 | + ->willReturn(['Group1']);  | 
                                                        |
| 2936 | +  | 
                                                        |
| 2937 | +        $this->assertEquals(['groups' => ['Group1']], $this->api->getUsersGroups('UserToLookup')->getData()); | 
                                                        |
| 2938 | + }  | 
                                                        |
| 2939 | +  | 
                                                        |
| 2940 | +  | 
                                                        |
| 2941 | +    public function testGetUsersGroupsForSubAdminUserAndUserIsInaccessible(): void { | 
                                                        |
| 2942 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2943 | + $this->expectExceptionCode(998);  | 
                                                        |
| 2944 | +  | 
                                                        |
| 2945 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2946 | + $loggedInUser  | 
                                                        |
| 2947 | + ->expects($this->exactly(3))  | 
                                                        |
| 2948 | +            ->method('getUID') | 
                                                        |
| 2949 | +            ->willReturn('subadmin'); | 
                                                        |
| 2950 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2951 | + $targetUser  | 
                                                        |
| 2952 | + ->expects($this->once())  | 
                                                        |
| 2953 | +            ->method('getUID') | 
                                                        |
| 2954 | +            ->willReturn('UserToLookup'); | 
                                                        |
| 2955 | + $this->userSession  | 
                                                        |
| 2956 | + ->expects($this->once())  | 
                                                        |
| 2957 | +            ->method('getUser') | 
                                                        |
| 2958 | + ->willReturn($loggedInUser);  | 
                                                        |
| 2959 | + $this->userManager  | 
                                                        |
| 2960 | + ->expects($this->once())  | 
                                                        |
| 2961 | +            ->method('get') | 
                                                        |
| 2962 | +            ->with('UserToLookup') | 
                                                        |
| 2963 | + ->willReturn($targetUser);  | 
                                                        |
| 2964 | + $this->groupManager  | 
                                                        |
| 2965 | + ->expects($this->once())  | 
                                                        |
| 2966 | +            ->method('isAdmin') | 
                                                        |
| 2967 | +            ->with('subadmin') | 
                                                        |
| 2968 | + ->willReturn(false);  | 
                                                        |
| 2969 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 2970 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 2971 | + $subAdminManager  | 
                                                        |
| 2972 | + ->expects($this->once())  | 
                                                        |
| 2973 | +            ->method('isUserAccessible') | 
                                                        |
| 2974 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 2975 | + ->willReturn(false);  | 
                                                        |
| 2976 | + $this->groupManager  | 
                                                        |
| 2977 | + ->expects($this->once())  | 
                                                        |
| 2978 | +            ->method('getSubAdmin') | 
                                                        |
| 2979 | + ->willReturn($subAdminManager);  | 
                                                        |
| 2980 | + $this->groupManager  | 
                                                        |
| 2981 | + ->expects($this->any())  | 
                                                        |
| 2982 | +            ->method('getUserGroupIds') | 
                                                        |
| 2983 | + ->with($targetUser)  | 
                                                        |
| 2984 | + ->willReturn(['Group1']);  | 
                                                        |
| 2985 | +  | 
                                                        |
| 2986 | +        $this->api->getUsersGroups('UserToLookup'); | 
                                                        |
| 2987 | + }  | 
                                                        |
| 2988 | +  | 
                                                        |
| 2989 | +  | 
                                                        |
| 2990 | +    public function testAddToGroupWithTargetGroupNotExisting(): void { | 
                                                        |
| 2991 | + $this->expectException(OCSException::class);  | 
                                                        |
| 2992 | + $this->expectExceptionCode(102);  | 
                                                        |
| 2993 | +  | 
                                                        |
| 2994 | + $this->groupManager->expects($this->once())  | 
                                                        |
| 2995 | +            ->method('get') | 
                                                        |
| 2996 | +            ->with('GroupToAddTo') | 
                                                        |
| 2997 | + ->willReturn(null);  | 
                                                        |
| 2998 | +  | 
                                                        |
| 2999 | +        $this->api->addToGroup('TargetUser', 'GroupToAddTo'); | 
                                                        |
| 3000 | + }  | 
                                                        |
| 3001 | +  | 
                                                        |
| 3002 | +  | 
                                                        |
| 3003 | +    public function testAddToGroupWithNoGroupSpecified(): void { | 
                                                        |
| 3004 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3005 | + $this->expectExceptionCode(101);  | 
                                                        |
| 3006 | +  | 
                                                        |
| 3007 | +        $this->api->addToGroup('TargetUser'); | 
                                                        |
| 3008 | + }  | 
                                                        |
| 3009 | +  | 
                                                        |
| 3010 | +  | 
                                                        |
| 3011 | +    public function testAddToGroupWithTargetUserNotExisting(): void { | 
                                                        |
| 3012 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3013 | + $this->expectExceptionCode(103);  | 
                                                        |
| 3014 | +  | 
                                                        |
| 3015 | + $targetGroup = $this->createMock(IGroup::class);  | 
                                                        |
| 3016 | + $this->groupManager->expects($this->once())  | 
                                                        |
| 3017 | +            ->method('get') | 
                                                        |
| 3018 | +            ->with('GroupToAddTo') | 
                                                        |
| 3019 | + ->willReturn($targetGroup);  | 
                                                        |
| 3020 | +  | 
                                                        |
| 3021 | +        $this->api->addToGroup('TargetUser', 'GroupToAddTo'); | 
                                                        |
| 3022 | + }  | 
                                                        |
| 3023 | +  | 
                                                        |
| 3024 | +  | 
                                                        |
| 3025 | +    public function testAddToGroupNoSubadmin(): void { | 
                                                        |
| 3026 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3027 | + $this->expectExceptionCode(104);  | 
                                                        |
| 3028 | +  | 
                                                        |
| 3029 | + $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 3030 | + $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 3031 | + $loggedInUser->expects($this->exactly(2))  | 
                                                        |
| 3032 | +            ->method('getUID') | 
                                                        |
| 3033 | +            ->willReturn('subadmin'); | 
                                                        |
| 3034 | +  | 
                                                        |
| 3035 | + $targetGroup = $this->createMock(IGroup::class);  | 
                                                        |
| 3036 | + $targetGroup->expects($this->never())  | 
                                                        |
| 3037 | +            ->method('addUser') | 
                                                        |
| 3038 | + ->with($targetUser);  | 
                                                        |
| 3039 | +  | 
                                                        |
| 3040 | + $this->groupManager->expects($this->once())  | 
                                                        |
| 3041 | +            ->method('get') | 
                                                        |
| 3042 | +            ->with('GroupToAddTo') | 
                                                        |
| 3043 | + ->willReturn($targetGroup);  | 
                                                        |
| 3044 | +  | 
                                                        |
| 3045 | +  | 
                                                        |
| 3046 | + $subAdminManager = $this->createMock(SubAdmin::class);  | 
                                                        |
| 3047 | + $subAdminManager->expects($this->once())  | 
                                                        |
| 3048 | +            ->method('isSubAdminOfGroup') | 
                                                        |
| 3049 | + ->with($loggedInUser, $targetGroup)  | 
                                                        |
| 3050 | + ->willReturn(false);  | 
                                                        |
| 3051 | +  | 
                                                        |
| 3052 | + $this->groupManager->expects($this->once())  | 
                                                        |
| 3053 | +            ->method('getSubAdmin') | 
                                                        |
| 3054 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3055 | + $this->groupManager->expects($this->once())  | 
                                                        |
| 3056 | +            ->method('isAdmin') | 
                                                        |
| 3057 | +            ->with('subadmin') | 
                                                        |
| 3058 | + ->willReturn(false);  | 
                                                        |
| 3059 | +  | 
                                                        |
| 3060 | + $this->userManager->expects($this->once())  | 
                                                        |
| 3061 | +            ->method('get') | 
                                                        |
| 3062 | +            ->with('TargetUser') | 
                                                        |
| 3063 | + ->willReturn($targetUser);  | 
                                                        |
| 3064 | +  | 
                                                        |
| 3065 | + $this->userSession->expects($this->once())  | 
                                                        |
| 3066 | +            ->method('getUser') | 
                                                        |
| 3067 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3068 | +  | 
                                                        |
| 3069 | +        $this->api->addToGroup('TargetUser', 'GroupToAddTo'); | 
                                                        |
| 3070 | + }  | 
                                                        |
| 3071 | +  | 
                                                        |
| 3072 | +    public function testAddToGroupSuccessAsSubadmin(): void { | 
                                                        |
| 3073 | + $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 3074 | + $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 3075 | + $loggedInUser->expects($this->exactly(2))  | 
                                                        |
| 3076 | +            ->method('getUID') | 
                                                        |
| 3077 | +            ->willReturn('subadmin'); | 
                                                        |
| 3078 | +  | 
                                                        |
| 3079 | + $targetGroup = $this->createMock(IGroup::class);  | 
                                                        |
| 3080 | + $targetGroup->expects($this->once())  | 
                                                        |
| 3081 | +            ->method('addUser') | 
                                                        |
| 3082 | + ->with($targetUser);  | 
                                                        |
| 3083 | +  | 
                                                        |
| 3084 | + $this->groupManager->expects($this->once())  | 
                                                        |
| 3085 | +            ->method('get') | 
                                                        |
| 3086 | +            ->with('GroupToAddTo') | 
                                                        |
| 3087 | + ->willReturn($targetGroup);  | 
                                                        |
| 3088 | 3088 | |
| 3089 | -  | 
                                                        |
| 3090 | - $subAdminManager = $this->createMock(SubAdmin::class);  | 
                                                        |
| 3091 | - $subAdminManager->expects($this->once())  | 
                                                        |
| 3092 | -			->method('isSubAdminOfGroup') | 
                                                        |
| 3093 | - ->with($loggedInUser, $targetGroup)  | 
                                                        |
| 3094 | - ->willReturn(true);  | 
                                                        |
| 3095 | -  | 
                                                        |
| 3096 | - $this->groupManager->expects($this->once())  | 
                                                        |
| 3097 | -			->method('getSubAdmin') | 
                                                        |
| 3098 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3099 | - $this->groupManager->expects($this->once())  | 
                                                        |
| 3100 | -			->method('isAdmin') | 
                                                        |
| 3101 | -			->with('subadmin') | 
                                                        |
| 3102 | - ->willReturn(false);  | 
                                                        |
| 3103 | -  | 
                                                        |
| 3104 | - $this->userManager->expects($this->once())  | 
                                                        |
| 3105 | -			->method('get') | 
                                                        |
| 3106 | -			->with('TargetUser') | 
                                                        |
| 3107 | - ->willReturn($targetUser);  | 
                                                        |
| 3108 | -  | 
                                                        |
| 3109 | - $this->userSession->expects($this->once())  | 
                                                        |
| 3110 | -			->method('getUser') | 
                                                        |
| 3111 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3112 | -  | 
                                                        |
| 3113 | -		$this->assertEquals(new DataResponse(), $this->api->addToGroup('TargetUser', 'GroupToAddTo')); | 
                                                        |
| 3114 | - }  | 
                                                        |
| 3115 | -  | 
                                                        |
| 3116 | -	public function testAddToGroupSuccessAsAdmin(): void { | 
                                                        |
| 3117 | - $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 3118 | - $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 3119 | - $loggedInUser->expects($this->exactly(2))  | 
                                                        |
| 3120 | -			->method('getUID') | 
                                                        |
| 3121 | -			->willReturn('admin'); | 
                                                        |
| 3122 | -  | 
                                                        |
| 3123 | - $targetGroup = $this->createMock(IGroup::class);  | 
                                                        |
| 3124 | - $targetGroup->expects($this->once())  | 
                                                        |
| 3125 | -			->method('addUser') | 
                                                        |
| 3126 | - ->with($targetUser);  | 
                                                        |
| 3127 | -  | 
                                                        |
| 3128 | - $this->groupManager->expects($this->once())  | 
                                                        |
| 3129 | -			->method('get') | 
                                                        |
| 3130 | -			->with('GroupToAddTo') | 
                                                        |
| 3131 | - ->willReturn($targetGroup);  | 
                                                        |
| 3132 | -  | 
                                                        |
| 3133 | -  | 
                                                        |
| 3134 | - $subAdminManager = $this->createMock(SubAdmin::class);  | 
                                                        |
| 3135 | - $subAdminManager->expects($this->never())  | 
                                                        |
| 3136 | -			->method('isSubAdminOfGroup'); | 
                                                        |
| 3137 | -  | 
                                                        |
| 3138 | - $this->groupManager->expects($this->once())  | 
                                                        |
| 3139 | -			->method('getSubAdmin') | 
                                                        |
| 3140 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3141 | - $this->groupManager->expects($this->once())  | 
                                                        |
| 3142 | -			->method('isAdmin') | 
                                                        |
| 3143 | -			->with('admin') | 
                                                        |
| 3144 | - ->willReturn(true);  | 
                                                        |
| 3145 | -  | 
                                                        |
| 3146 | - $this->userManager->expects($this->once())  | 
                                                        |
| 3147 | -			->method('get') | 
                                                        |
| 3148 | -			->with('TargetUser') | 
                                                        |
| 3149 | - ->willReturn($targetUser);  | 
                                                        |
| 3150 | -  | 
                                                        |
| 3151 | - $this->userSession->expects($this->once())  | 
                                                        |
| 3152 | -			->method('getUser') | 
                                                        |
| 3153 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3154 | -  | 
                                                        |
| 3155 | -		$this->assertEquals(new DataResponse(), $this->api->addToGroup('TargetUser', 'GroupToAddTo')); | 
                                                        |
| 3156 | - }  | 
                                                        |
| 3157 | -  | 
                                                        |
| 3158 | -  | 
                                                        |
| 3159 | -	public function testRemoveFromGroupWithNoTargetGroup(): void { | 
                                                        |
| 3160 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3161 | - $this->expectExceptionCode(101);  | 
                                                        |
| 3162 | -  | 
                                                        |
| 3163 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3164 | - $this->userSession  | 
                                                        |
| 3165 | - ->expects($this->once())  | 
                                                        |
| 3166 | -			->method('getUser') | 
                                                        |
| 3167 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3168 | -  | 
                                                        |
| 3169 | -		$this->api->removeFromGroup('TargetUser', ''); | 
                                                        |
| 3170 | - }  | 
                                                        |
| 3171 | -  | 
                                                        |
| 3172 | -  | 
                                                        |
| 3173 | -	public function testRemoveFromGroupWithEmptyTargetGroup(): void { | 
                                                        |
| 3174 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3175 | - $this->expectExceptionCode(101);  | 
                                                        |
| 3176 | -  | 
                                                        |
| 3177 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3178 | - $this->userSession  | 
                                                        |
| 3179 | - ->expects($this->once())  | 
                                                        |
| 3180 | -			->method('getUser') | 
                                                        |
| 3181 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3182 | -  | 
                                                        |
| 3183 | -		$this->api->removeFromGroup('TargetUser', ''); | 
                                                        |
| 3184 | - }  | 
                                                        |
| 3185 | -  | 
                                                        |
| 3186 | -  | 
                                                        |
| 3187 | -	public function testRemoveFromGroupWithNotExistingTargetGroup(): void { | 
                                                        |
| 3188 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3189 | - $this->expectExceptionCode(102);  | 
                                                        |
| 3190 | -  | 
                                                        |
| 3191 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3192 | - $this->userSession  | 
                                                        |
| 3193 | - ->expects($this->once())  | 
                                                        |
| 3194 | -			->method('getUser') | 
                                                        |
| 3195 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3196 | - $this->groupManager  | 
                                                        |
| 3197 | - ->expects($this->once())  | 
                                                        |
| 3198 | -			->method('get') | 
                                                        |
| 3199 | -			->with('TargetGroup') | 
                                                        |
| 3200 | - ->willReturn(null);  | 
                                                        |
| 3201 | -  | 
                                                        |
| 3202 | -		$this->api->removeFromGroup('TargetUser', 'TargetGroup'); | 
                                                        |
| 3203 | - }  | 
                                                        |
| 3204 | -  | 
                                                        |
| 3205 | -  | 
                                                        |
| 3206 | -	public function testRemoveFromGroupWithNotExistingTargetUser(): void { | 
                                                        |
| 3207 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3208 | - $this->expectExceptionCode(103);  | 
                                                        |
| 3209 | -  | 
                                                        |
| 3210 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3211 | -		$targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3212 | - $this->userSession  | 
                                                        |
| 3213 | - ->expects($this->once())  | 
                                                        |
| 3214 | -			->method('getUser') | 
                                                        |
| 3215 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3216 | - $this->groupManager  | 
                                                        |
| 3217 | - ->expects($this->once())  | 
                                                        |
| 3218 | -			->method('get') | 
                                                        |
| 3219 | -			->with('TargetGroup') | 
                                                        |
| 3220 | - ->willReturn($targetGroup);  | 
                                                        |
| 3221 | - $this->userManager  | 
                                                        |
| 3222 | - ->expects($this->once())  | 
                                                        |
| 3223 | -			->method('get') | 
                                                        |
| 3224 | -			->with('TargetUser') | 
                                                        |
| 3225 | - ->willReturn(null);  | 
                                                        |
| 3226 | -  | 
                                                        |
| 3227 | -		$this->api->removeFromGroup('TargetUser', 'TargetGroup'); | 
                                                        |
| 3228 | - }  | 
                                                        |
| 3229 | -  | 
                                                        |
| 3230 | -  | 
                                                        |
| 3231 | -	public function testRemoveFromGroupWithoutPermission(): void { | 
                                                        |
| 3232 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3233 | - $this->expectExceptionCode(104);  | 
                                                        |
| 3234 | -  | 
                                                        |
| 3235 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3236 | - $loggedInUser  | 
                                                        |
| 3237 | - ->expects($this->exactly(2))  | 
                                                        |
| 3238 | -			->method('getUID') | 
                                                        |
| 3239 | -			->willReturn('unauthorizedUser'); | 
                                                        |
| 3240 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3241 | -		$targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3242 | - $this->userSession  | 
                                                        |
| 3243 | - ->expects($this->once())  | 
                                                        |
| 3244 | -			->method('getUser') | 
                                                        |
| 3245 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3246 | - $this->groupManager  | 
                                                        |
| 3247 | - ->expects($this->once())  | 
                                                        |
| 3248 | -			->method('get') | 
                                                        |
| 3249 | -			->with('TargetGroup') | 
                                                        |
| 3250 | - ->willReturn($targetGroup);  | 
                                                        |
| 3251 | - $this->userManager  | 
                                                        |
| 3252 | - ->expects($this->once())  | 
                                                        |
| 3253 | -			->method('get') | 
                                                        |
| 3254 | -			->with('TargetUser') | 
                                                        |
| 3255 | - ->willReturn($targetUser);  | 
                                                        |
| 3256 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3257 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3258 | - $this->groupManager  | 
                                                        |
| 3259 | - ->expects($this->once())  | 
                                                        |
| 3260 | -			->method('getSubAdmin') | 
                                                        |
| 3261 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3262 | - $this->groupManager  | 
                                                        |
| 3263 | - ->expects($this->once())  | 
                                                        |
| 3264 | -			->method('isAdmin') | 
                                                        |
| 3265 | -			->with('unauthorizedUser') | 
                                                        |
| 3266 | - ->willReturn(false);  | 
                                                        |
| 3267 | -  | 
                                                        |
| 3268 | -		$this->api->removeFromGroup('TargetUser', 'TargetGroup'); | 
                                                        |
| 3269 | - }  | 
                                                        |
| 3270 | -  | 
                                                        |
| 3271 | -  | 
                                                        |
| 3272 | -	public function testRemoveFromGroupAsAdminFromAdmin(): void { | 
                                                        |
| 3273 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3274 | -		$this->expectExceptionMessage('Cannot remove yourself from the admin group'); | 
                                                        |
| 3275 | - $this->expectExceptionCode(105);  | 
                                                        |
| 3276 | -  | 
                                                        |
| 3277 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3278 | - $loggedInUser  | 
                                                        |
| 3279 | - ->expects($this->any())  | 
                                                        |
| 3280 | -			->method('getUID') | 
                                                        |
| 3281 | -			->willReturn('admin'); | 
                                                        |
| 3282 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3283 | - $targetUser  | 
                                                        |
| 3284 | - ->expects($this->once())  | 
                                                        |
| 3285 | -			->method('getUID') | 
                                                        |
| 3286 | -			->willReturn('admin'); | 
                                                        |
| 3287 | -		$targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3288 | - $targetGroup  | 
                                                        |
| 3289 | - ->expects($this->once())  | 
                                                        |
| 3290 | -			->method('getGID') | 
                                                        |
| 3291 | -			->willReturn('admin'); | 
                                                        |
| 3292 | - $this->userSession  | 
                                                        |
| 3293 | - ->expects($this->once())  | 
                                                        |
| 3294 | -			->method('getUser') | 
                                                        |
| 3295 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3296 | - $this->groupManager  | 
                                                        |
| 3297 | - ->expects($this->once())  | 
                                                        |
| 3298 | -			->method('get') | 
                                                        |
| 3299 | -			->with('admin') | 
                                                        |
| 3300 | - ->willReturn($targetGroup);  | 
                                                        |
| 3301 | - $this->userManager  | 
                                                        |
| 3302 | - ->expects($this->once())  | 
                                                        |
| 3303 | -			->method('get') | 
                                                        |
| 3304 | -			->with('Admin') | 
                                                        |
| 3305 | - ->willReturn($targetUser);  | 
                                                        |
| 3306 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3307 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3308 | - $this->groupManager  | 
                                                        |
| 3309 | - ->expects($this->once())  | 
                                                        |
| 3310 | -			->method('getSubAdmin') | 
                                                        |
| 3311 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3312 | - $this->groupManager  | 
                                                        |
| 3313 | - ->expects($this->any())  | 
                                                        |
| 3314 | -			->method('isAdmin') | 
                                                        |
| 3315 | -			->with('admin') | 
                                                        |
| 3316 | - ->willReturn(true);  | 
                                                        |
| 3317 | -  | 
                                                        |
| 3318 | -		$this->api->removeFromGroup('Admin', 'admin'); | 
                                                        |
| 3319 | - }  | 
                                                        |
| 3320 | -  | 
                                                        |
| 3321 | -  | 
                                                        |
| 3322 | -	public function testRemoveFromGroupAsSubAdminFromSubAdmin(): void { | 
                                                        |
| 3323 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3324 | -		$this->expectExceptionMessage('Cannot remove yourself from this group as you are a sub-admin'); | 
                                                        |
| 3325 | - $this->expectExceptionCode(105);  | 
                                                        |
| 3326 | -  | 
                                                        |
| 3327 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3328 | - $loggedInUser  | 
                                                        |
| 3329 | - ->expects($this->any())  | 
                                                        |
| 3330 | -			->method('getUID') | 
                                                        |
| 3331 | -			->willReturn('subadmin'); | 
                                                        |
| 3332 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3333 | - $targetUser  | 
                                                        |
| 3334 | - ->expects($this->once())  | 
                                                        |
| 3335 | -			->method('getUID') | 
                                                        |
| 3336 | -			->willReturn('subadmin'); | 
                                                        |
| 3337 | -		$targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3338 | - $targetGroup  | 
                                                        |
| 3339 | - ->expects($this->any())  | 
                                                        |
| 3340 | -			->method('getGID') | 
                                                        |
| 3341 | -			->willReturn('subadmin'); | 
                                                        |
| 3342 | - $this->userSession  | 
                                                        |
| 3343 | - ->expects($this->once())  | 
                                                        |
| 3344 | -			->method('getUser') | 
                                                        |
| 3345 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3346 | - $this->groupManager  | 
                                                        |
| 3347 | - ->expects($this->once())  | 
                                                        |
| 3348 | -			->method('get') | 
                                                        |
| 3349 | -			->with('subadmin') | 
                                                        |
| 3350 | - ->willReturn($targetGroup);  | 
                                                        |
| 3351 | - $this->userManager  | 
                                                        |
| 3352 | - ->expects($this->once())  | 
                                                        |
| 3353 | -			->method('get') | 
                                                        |
| 3354 | -			->with('SubAdmin') | 
                                                        |
| 3355 | - ->willReturn($targetUser);  | 
                                                        |
| 3356 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3357 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3358 | - $subAdminManager  | 
                                                        |
| 3359 | - ->expects($this->once())  | 
                                                        |
| 3360 | -			->method('isSubAdminOfGroup') | 
                                                        |
| 3361 | - ->with($loggedInUser, $targetGroup)  | 
                                                        |
| 3362 | - ->willReturn(true);  | 
                                                        |
| 3363 | - $this->groupManager  | 
                                                        |
| 3364 | - ->expects($this->once())  | 
                                                        |
| 3365 | -			->method('getSubAdmin') | 
                                                        |
| 3366 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3367 | - $this->groupManager  | 
                                                        |
| 3368 | - ->expects($this->any())  | 
                                                        |
| 3369 | -			->method('isAdmin') | 
                                                        |
| 3370 | -			->with('subadmin') | 
                                                        |
| 3371 | - ->willReturn(false);  | 
                                                        |
| 3372 | -  | 
                                                        |
| 3373 | -		$this->api->removeFromGroup('SubAdmin', 'subadmin'); | 
                                                        |
| 3374 | - }  | 
                                                        |
| 3375 | -  | 
                                                        |
| 3376 | -  | 
                                                        |
| 3377 | -	public function testRemoveFromGroupAsSubAdminFromLastSubAdminGroup(): void { | 
                                                        |
| 3378 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3379 | -		$this->expectExceptionMessage('Not viable to remove user from the last group you are sub-admin of'); | 
                                                        |
| 3380 | - $this->expectExceptionCode(105);  | 
                                                        |
| 3381 | -  | 
                                                        |
| 3382 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3383 | - $loggedInUser  | 
                                                        |
| 3384 | - ->expects($this->any())  | 
                                                        |
| 3385 | -			->method('getUID') | 
                                                        |
| 3386 | -			->willReturn('subadmin'); | 
                                                        |
| 3387 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3388 | -		$targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3389 | - $targetGroup  | 
                                                        |
| 3390 | - ->expects($this->any())  | 
                                                        |
| 3391 | -			->method('getGID') | 
                                                        |
| 3392 | -			->willReturn('subadmin'); | 
                                                        |
| 3393 | - $this->userSession  | 
                                                        |
| 3394 | - ->expects($this->once())  | 
                                                        |
| 3395 | -			->method('getUser') | 
                                                        |
| 3396 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3397 | - $this->groupManager  | 
                                                        |
| 3398 | - ->expects($this->once())  | 
                                                        |
| 3399 | -			->method('get') | 
                                                        |
| 3400 | -			->with('subadmin') | 
                                                        |
| 3401 | - ->willReturn($targetGroup);  | 
                                                        |
| 3402 | - $this->userManager  | 
                                                        |
| 3403 | - ->expects($this->once())  | 
                                                        |
| 3404 | -			->method('get') | 
                                                        |
| 3405 | -			->with('AnotherUser') | 
                                                        |
| 3406 | - ->willReturn($targetUser);  | 
                                                        |
| 3407 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3408 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3409 | - $subAdminManager  | 
                                                        |
| 3410 | - ->expects($this->once())  | 
                                                        |
| 3411 | -			->method('isSubAdminOfGroup') | 
                                                        |
| 3412 | - ->with($loggedInUser, $targetGroup)  | 
                                                        |
| 3413 | - ->willReturn(true);  | 
                                                        |
| 3414 | - $this->groupManager  | 
                                                        |
| 3415 | - ->expects($this->once())  | 
                                                        |
| 3416 | -			->method('getSubAdmin') | 
                                                        |
| 3417 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3418 | - $subAdminManager  | 
                                                        |
| 3419 | - ->expects($this->once())  | 
                                                        |
| 3420 | -			->method('getSubAdminsGroups') | 
                                                        |
| 3421 | - ->with($loggedInUser)  | 
                                                        |
| 3422 | - ->willReturn([$targetGroup]);  | 
                                                        |
| 3423 | -  | 
                                                        |
| 3424 | - $this->groupManager  | 
                                                        |
| 3425 | - ->expects($this->any())  | 
                                                        |
| 3426 | -			->method('isAdmin') | 
                                                        |
| 3427 | -			->with('subadmin') | 
                                                        |
| 3428 | - ->willReturn(false);  | 
                                                        |
| 3429 | - $this->groupManager  | 
                                                        |
| 3430 | - ->expects($this->once())  | 
                                                        |
| 3431 | -			->method('getUserGroupIds') | 
                                                        |
| 3432 | - ->with($targetUser)  | 
                                                        |
| 3433 | - ->willReturn(['subadmin', 'other group']);  | 
                                                        |
| 3434 | -  | 
                                                        |
| 3435 | -		$this->api->removeFromGroup('AnotherUser', 'subadmin'); | 
                                                        |
| 3436 | - }  | 
                                                        |
| 3437 | -  | 
                                                        |
| 3438 | -	public function testRemoveFromGroupSuccessful(): void { | 
                                                        |
| 3439 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3440 | - $loggedInUser  | 
                                                        |
| 3441 | - ->expects($this->any())  | 
                                                        |
| 3442 | -			->method('getUID') | 
                                                        |
| 3443 | -			->willReturn('admin'); | 
                                                        |
| 3444 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3445 | -		$targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3446 | - $this->userSession  | 
                                                        |
| 3447 | - ->expects($this->once())  | 
                                                        |
| 3448 | -			->method('getUser') | 
                                                        |
| 3449 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3450 | - $this->groupManager  | 
                                                        |
| 3451 | - ->expects($this->once())  | 
                                                        |
| 3452 | -			->method('get') | 
                                                        |
| 3453 | -			->with('admin') | 
                                                        |
| 3454 | - ->willReturn($targetGroup);  | 
                                                        |
| 3455 | - $this->userManager  | 
                                                        |
| 3456 | - ->expects($this->once())  | 
                                                        |
| 3457 | -			->method('get') | 
                                                        |
| 3458 | -			->with('AnotherUser') | 
                                                        |
| 3459 | - ->willReturn($targetUser);  | 
                                                        |
| 3460 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3461 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3462 | - $this->groupManager  | 
                                                        |
| 3463 | - ->expects($this->once())  | 
                                                        |
| 3464 | -			->method('getSubAdmin') | 
                                                        |
| 3465 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3466 | - $this->groupManager  | 
                                                        |
| 3467 | - ->expects($this->any())  | 
                                                        |
| 3468 | -			->method('isAdmin') | 
                                                        |
| 3469 | -			->with('admin') | 
                                                        |
| 3470 | - ->willReturn(true);  | 
                                                        |
| 3471 | - $targetGroup  | 
                                                        |
| 3472 | - ->expects($this->once())  | 
                                                        |
| 3473 | -			->method('removeUser') | 
                                                        |
| 3474 | - ->with($targetUser);  | 
                                                        |
| 3475 | -  | 
                                                        |
| 3476 | -		$this->assertEquals([], $this->api->removeFromGroup('AnotherUser', 'admin')->getData()); | 
                                                        |
| 3477 | - }  | 
                                                        |
| 3478 | -  | 
                                                        |
| 3479 | -  | 
                                                        |
| 3480 | -	public function testAddSubAdminWithNotExistingTargetUser(): void { | 
                                                        |
| 3481 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3482 | -		$this->expectExceptionMessage('User does not exist'); | 
                                                        |
| 3483 | - $this->expectExceptionCode(101);  | 
                                                        |
| 3484 | -  | 
                                                        |
| 3485 | - $this->userManager  | 
                                                        |
| 3486 | - ->expects($this->once())  | 
                                                        |
| 3487 | -			->method('get') | 
                                                        |
| 3488 | -			->with('NotExistingUser') | 
                                                        |
| 3489 | - ->willReturn(null);  | 
                                                        |
| 3490 | -  | 
                                                        |
| 3491 | -		$this->api->addSubAdmin('NotExistingUser', ''); | 
                                                        |
| 3492 | - }  | 
                                                        |
| 3493 | -  | 
                                                        |
| 3494 | -  | 
                                                        |
| 3495 | -	public function testAddSubAdminWithNotExistingTargetGroup(): void { | 
                                                        |
| 3496 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3497 | -		$this->expectExceptionMessage('Group does not exist'); | 
                                                        |
| 3498 | - $this->expectExceptionCode(102);  | 
                                                        |
| 3499 | -  | 
                                                        |
| 3500 | -  | 
                                                        |
| 3501 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3502 | - $this->userManager  | 
                                                        |
| 3503 | - ->expects($this->once())  | 
                                                        |
| 3504 | -			->method('get') | 
                                                        |
| 3505 | -			->with('ExistingUser') | 
                                                        |
| 3506 | - ->willReturn($targetUser);  | 
                                                        |
| 3507 | - $this->groupManager  | 
                                                        |
| 3508 | - ->expects($this->once())  | 
                                                        |
| 3509 | -			->method('get') | 
                                                        |
| 3510 | -			->with('NotExistingGroup') | 
                                                        |
| 3511 | - ->willReturn(null);  | 
                                                        |
| 3512 | -  | 
                                                        |
| 3513 | -		$this->api->addSubAdmin('ExistingUser', 'NotExistingGroup'); | 
                                                        |
| 3514 | - }  | 
                                                        |
| 3515 | -  | 
                                                        |
| 3516 | -  | 
                                                        |
| 3517 | -	public function testAddSubAdminToAdminGroup(): void { | 
                                                        |
| 3518 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3519 | -		$this->expectExceptionMessage('Cannot create sub-admins for admin group'); | 
                                                        |
| 3520 | - $this->expectExceptionCode(103);  | 
                                                        |
| 3521 | -  | 
                                                        |
| 3522 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3523 | -		$targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3524 | - $targetGroup  | 
                                                        |
| 3525 | - ->expects($this->once())  | 
                                                        |
| 3526 | -			->method('getGID') | 
                                                        |
| 3527 | -			->willReturn('admin'); | 
                                                        |
| 3528 | - $this->userManager  | 
                                                        |
| 3529 | - ->expects($this->once())  | 
                                                        |
| 3530 | -			->method('get') | 
                                                        |
| 3531 | -			->with('ExistingUser') | 
                                                        |
| 3532 | - ->willReturn($targetUser);  | 
                                                        |
| 3533 | - $this->groupManager  | 
                                                        |
| 3534 | - ->expects($this->once())  | 
                                                        |
| 3535 | -			->method('get') | 
                                                        |
| 3536 | -			->with('ADmiN') | 
                                                        |
| 3537 | - ->willReturn($targetGroup);  | 
                                                        |
| 3538 | -  | 
                                                        |
| 3539 | -		$this->api->addSubAdmin('ExistingUser', 'ADmiN'); | 
                                                        |
| 3540 | - }  | 
                                                        |
| 3541 | -  | 
                                                        |
| 3542 | -	public function testAddSubAdminTwice(): void { | 
                                                        |
| 3543 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3544 | -		$targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3545 | - $this->userManager  | 
                                                        |
| 3546 | - ->expects($this->once())  | 
                                                        |
| 3547 | -			->method('get') | 
                                                        |
| 3548 | -			->with('ExistingUser') | 
                                                        |
| 3549 | - ->willReturn($targetUser);  | 
                                                        |
| 3550 | - $this->groupManager  | 
                                                        |
| 3551 | - ->expects($this->once())  | 
                                                        |
| 3552 | -			->method('get') | 
                                                        |
| 3553 | -			->with('TargetGroup') | 
                                                        |
| 3554 | - ->willReturn($targetGroup);  | 
                                                        |
| 3555 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3556 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3557 | - $subAdminManager  | 
                                                        |
| 3558 | - ->expects($this->once())  | 
                                                        |
| 3559 | -			->method('isSubAdminOfGroup') | 
                                                        |
| 3560 | - ->with($targetUser, $targetGroup)  | 
                                                        |
| 3561 | - ->willReturn(true);  | 
                                                        |
| 3562 | - $this->groupManager  | 
                                                        |
| 3563 | - ->expects($this->once())  | 
                                                        |
| 3564 | -			->method('getSubAdmin') | 
                                                        |
| 3565 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3566 | -  | 
                                                        |
| 3567 | -		$this->assertEquals([], $this->api->addSubAdmin('ExistingUser', 'TargetGroup')->getData()); | 
                                                        |
| 3568 | - }  | 
                                                        |
| 3569 | -  | 
                                                        |
| 3570 | -	public function testAddSubAdminSuccessful(): void { | 
                                                        |
| 3571 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3572 | -		$targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3573 | - $this->userManager  | 
                                                        |
| 3574 | - ->expects($this->once())  | 
                                                        |
| 3575 | -			->method('get') | 
                                                        |
| 3576 | -			->with('ExistingUser') | 
                                                        |
| 3577 | - ->willReturn($targetUser);  | 
                                                        |
| 3578 | - $this->groupManager  | 
                                                        |
| 3579 | - ->expects($this->once())  | 
                                                        |
| 3580 | -			->method('get') | 
                                                        |
| 3581 | -			->with('TargetGroup') | 
                                                        |
| 3582 | - ->willReturn($targetGroup);  | 
                                                        |
| 3583 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3584 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3585 | - $subAdminManager  | 
                                                        |
| 3586 | - ->expects($this->once())  | 
                                                        |
| 3587 | -			->method('isSubAdminOfGroup') | 
                                                        |
| 3588 | - ->with($targetUser, $targetGroup)  | 
                                                        |
| 3589 | - ->willReturn(false);  | 
                                                        |
| 3590 | - $subAdminManager  | 
                                                        |
| 3591 | - ->expects($this->once())  | 
                                                        |
| 3592 | -			->method('createSubAdmin') | 
                                                        |
| 3593 | - ->with($targetUser, $targetGroup);  | 
                                                        |
| 3594 | - $this->groupManager  | 
                                                        |
| 3595 | - ->expects($this->once())  | 
                                                        |
| 3596 | -			->method('getSubAdmin') | 
                                                        |
| 3597 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3598 | -  | 
                                                        |
| 3599 | -		$this->assertEquals([], $this->api->addSubAdmin('ExistingUser', 'TargetGroup')->getData()); | 
                                                        |
| 3600 | - }  | 
                                                        |
| 3601 | -  | 
                                                        |
| 3602 | -  | 
                                                        |
| 3603 | -	public function testRemoveSubAdminNotExistingTargetUser(): void { | 
                                                        |
| 3604 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3605 | -		$this->expectExceptionMessage('User does not exist'); | 
                                                        |
| 3606 | - $this->expectExceptionCode(101);  | 
                                                        |
| 3607 | -  | 
                                                        |
| 3608 | - $this->userManager  | 
                                                        |
| 3609 | - ->expects($this->once())  | 
                                                        |
| 3610 | -			->method('get') | 
                                                        |
| 3611 | -			->with('NotExistingUser') | 
                                                        |
| 3612 | - ->willReturn(null);  | 
                                                        |
| 3613 | -  | 
                                                        |
| 3614 | -		$this->api->removeSubAdmin('NotExistingUser', 'GroupToDeleteFrom'); | 
                                                        |
| 3615 | - }  | 
                                                        |
| 3616 | -  | 
                                                        |
| 3617 | -  | 
                                                        |
| 3618 | -	public function testRemoveSubAdminNotExistingTargetGroup(): void { | 
                                                        |
| 3619 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3620 | -		$this->expectExceptionMessage('Group does not exist'); | 
                                                        |
| 3621 | - $this->expectExceptionCode(101);  | 
                                                        |
| 3622 | -  | 
                                                        |
| 3623 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3624 | - $this->userManager  | 
                                                        |
| 3625 | - ->expects($this->once())  | 
                                                        |
| 3626 | -			->method('get') | 
                                                        |
| 3627 | -			->with('ExistingUser') | 
                                                        |
| 3628 | - ->willReturn($targetUser);  | 
                                                        |
| 3629 | - $this->groupManager  | 
                                                        |
| 3630 | - ->expects($this->once())  | 
                                                        |
| 3631 | -			->method('get') | 
                                                        |
| 3632 | -			->with('GroupToDeleteFrom') | 
                                                        |
| 3633 | - ->willReturn(null);  | 
                                                        |
| 3634 | -  | 
                                                        |
| 3635 | -		$this->api->removeSubAdmin('ExistingUser', 'GroupToDeleteFrom'); | 
                                                        |
| 3636 | - }  | 
                                                        |
| 3637 | -  | 
                                                        |
| 3638 | -  | 
                                                        |
| 3639 | -  | 
                                                        |
| 3640 | -	public function testRemoveSubAdminFromNotASubadmin(): void { | 
                                                        |
| 3641 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3642 | -		$this->expectExceptionMessage('User is not a sub-admin of this group'); | 
                                                        |
| 3643 | - $this->expectExceptionCode(102);  | 
                                                        |
| 3644 | -  | 
                                                        |
| 3645 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3646 | -		$targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3647 | - $this->userManager  | 
                                                        |
| 3648 | - ->expects($this->once())  | 
                                                        |
| 3649 | -			->method('get') | 
                                                        |
| 3650 | -			->with('ExistingUser') | 
                                                        |
| 3651 | - ->willReturn($targetUser);  | 
                                                        |
| 3652 | - $this->groupManager  | 
                                                        |
| 3653 | - ->expects($this->once())  | 
                                                        |
| 3654 | -			->method('get') | 
                                                        |
| 3655 | -			->with('GroupToDeleteFrom') | 
                                                        |
| 3656 | - ->willReturn($targetGroup);  | 
                                                        |
| 3657 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3658 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3659 | - $subAdminManager  | 
                                                        |
| 3660 | - ->expects($this->once())  | 
                                                        |
| 3661 | -			->method('isSubAdminOfGroup') | 
                                                        |
| 3662 | - ->with($targetUser, $targetGroup)  | 
                                                        |
| 3663 | - ->willReturn(false);  | 
                                                        |
| 3664 | - $this->groupManager  | 
                                                        |
| 3665 | - ->expects($this->once())  | 
                                                        |
| 3666 | -			->method('getSubAdmin') | 
                                                        |
| 3667 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3668 | -  | 
                                                        |
| 3669 | -		$this->api->removeSubAdmin('ExistingUser', 'GroupToDeleteFrom'); | 
                                                        |
| 3670 | - }  | 
                                                        |
| 3671 | -  | 
                                                        |
| 3672 | -	public function testRemoveSubAdminSuccessful(): void { | 
                                                        |
| 3673 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3674 | -		$targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3675 | - $this->userManager  | 
                                                        |
| 3676 | - ->expects($this->once())  | 
                                                        |
| 3677 | -			->method('get') | 
                                                        |
| 3678 | -			->with('ExistingUser') | 
                                                        |
| 3679 | - ->willReturn($targetUser);  | 
                                                        |
| 3680 | - $this->groupManager  | 
                                                        |
| 3681 | - ->expects($this->once())  | 
                                                        |
| 3682 | -			->method('get') | 
                                                        |
| 3683 | -			->with('GroupToDeleteFrom') | 
                                                        |
| 3684 | - ->willReturn($targetGroup);  | 
                                                        |
| 3685 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3686 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3687 | - $subAdminManager  | 
                                                        |
| 3688 | - ->expects($this->once())  | 
                                                        |
| 3689 | -			->method('isSubAdminOfGroup') | 
                                                        |
| 3690 | - ->with($targetUser, $targetGroup)  | 
                                                        |
| 3691 | - ->willReturn(true);  | 
                                                        |
| 3692 | - $subAdminManager  | 
                                                        |
| 3693 | - ->expects($this->once())  | 
                                                        |
| 3694 | -			->method('deleteSubAdmin') | 
                                                        |
| 3695 | - ->with($targetUser, $targetGroup);  | 
                                                        |
| 3696 | - $this->groupManager  | 
                                                        |
| 3697 | - ->expects($this->once())  | 
                                                        |
| 3698 | -			->method('getSubAdmin') | 
                                                        |
| 3699 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3700 | -  | 
                                                        |
| 3701 | -		$this->assertEquals([], $this->api->removeSubAdmin('ExistingUser', 'GroupToDeleteFrom')->getData()); | 
                                                        |
| 3702 | - }  | 
                                                        |
| 3703 | -  | 
                                                        |
| 3704 | -  | 
                                                        |
| 3705 | -	public function testGetUserSubAdminGroupsNotExistingTargetUser(): void { | 
                                                        |
| 3706 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3707 | -		$this->expectExceptionMessage('User does not exist'); | 
                                                        |
| 3708 | - $this->expectExceptionCode(404);  | 
                                                        |
| 3709 | -  | 
                                                        |
| 3710 | - $this->userManager  | 
                                                        |
| 3711 | - ->expects($this->once())  | 
                                                        |
| 3712 | -			->method('get') | 
                                                        |
| 3713 | -			->with('RequestedUser') | 
                                                        |
| 3714 | - ->willReturn(null);  | 
                                                        |
| 3715 | -  | 
                                                        |
| 3716 | -		$this->api->getUserSubAdminGroups('RequestedUser'); | 
                                                        |
| 3717 | - }  | 
                                                        |
| 3718 | -  | 
                                                        |
| 3719 | -	public function testGetUserSubAdminGroupsWithGroups(): void { | 
                                                        |
| 3720 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3721 | -		$targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3722 | - $targetGroup  | 
                                                        |
| 3723 | - ->expects($this->once())  | 
                                                        |
| 3724 | -			->method('getGID') | 
                                                        |
| 3725 | -			->willReturn('TargetGroup'); | 
                                                        |
| 3726 | - $this->userManager  | 
                                                        |
| 3727 | - ->expects($this->once())  | 
                                                        |
| 3728 | -			->method('get') | 
                                                        |
| 3729 | -			->with('RequestedUser') | 
                                                        |
| 3730 | - ->willReturn($targetUser);  | 
                                                        |
| 3731 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3732 | - ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3733 | - $subAdminManager  | 
                                                        |
| 3734 | - ->expects($this->once())  | 
                                                        |
| 3735 | -			->method('getSubAdminsGroups') | 
                                                        |
| 3736 | - ->with($targetUser)  | 
                                                        |
| 3737 | - ->willReturn([$targetGroup]);  | 
                                                        |
| 3738 | - $this->groupManager  | 
                                                        |
| 3739 | - ->expects($this->once())  | 
                                                        |
| 3740 | -			->method('getSubAdmin') | 
                                                        |
| 3741 | - ->willReturn($subAdminManager);  | 
                                                        |
| 3742 | -  | 
                                                        |
| 3743 | -		$this->assertEquals(['TargetGroup'], $this->api->getUserSubAdminGroups('RequestedUser')->getData()); | 
                                                        |
| 3744 | - }  | 
                                                        |
| 3745 | -  | 
                                                        |
| 3746 | -	public function testEnableUser(): void { | 
                                                        |
| 3747 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3748 | - $targetUser->expects($this->once())  | 
                                                        |
| 3749 | -			->method('setEnabled') | 
                                                        |
| 3750 | - ->with(true);  | 
                                                        |
| 3751 | - $this->userManager  | 
                                                        |
| 3752 | - ->expects($this->once())  | 
                                                        |
| 3753 | -			->method('get') | 
                                                        |
| 3754 | -			->with('RequestedUser') | 
                                                        |
| 3755 | - ->willReturn($targetUser);  | 
                                                        |
| 3756 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3757 | - $loggedInUser  | 
                                                        |
| 3758 | - ->expects($this->exactly(3))  | 
                                                        |
| 3759 | -			->method('getUID') | 
                                                        |
| 3760 | -			->willReturn('admin'); | 
                                                        |
| 3761 | - $this->userSession  | 
                                                        |
| 3762 | - ->expects($this->once())  | 
                                                        |
| 3763 | -			->method('getUser') | 
                                                        |
| 3764 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3765 | - $this->groupManager  | 
                                                        |
| 3766 | - ->expects($this->once())  | 
                                                        |
| 3767 | -			->method('isAdmin') | 
                                                        |
| 3768 | - ->willReturn(true);  | 
                                                        |
| 3769 | -  | 
                                                        |
| 3770 | -		$this->assertEquals([], $this->api->enableUser('RequestedUser')->getData()); | 
                                                        |
| 3771 | - }  | 
                                                        |
| 3772 | -  | 
                                                        |
| 3773 | -	public function testDisableUser(): void { | 
                                                        |
| 3774 | - $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3775 | - $targetUser->expects($this->once())  | 
                                                        |
| 3776 | -			->method('setEnabled') | 
                                                        |
| 3777 | - ->with(false);  | 
                                                        |
| 3778 | - $this->userManager  | 
                                                        |
| 3779 | - ->expects($this->once())  | 
                                                        |
| 3780 | -			->method('get') | 
                                                        |
| 3781 | -			->with('RequestedUser') | 
                                                        |
| 3782 | - ->willReturn($targetUser);  | 
                                                        |
| 3783 | - $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3784 | - $loggedInUser  | 
                                                        |
| 3785 | - ->expects($this->exactly(3))  | 
                                                        |
| 3786 | -			->method('getUID') | 
                                                        |
| 3787 | -			->willReturn('admin'); | 
                                                        |
| 3788 | - $this->userSession  | 
                                                        |
| 3789 | - ->expects($this->once())  | 
                                                        |
| 3790 | -			->method('getUser') | 
                                                        |
| 3791 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3792 | - $this->groupManager  | 
                                                        |
| 3793 | - ->expects($this->once())  | 
                                                        |
| 3794 | -			->method('isAdmin') | 
                                                        |
| 3795 | - ->willReturn(true);  | 
                                                        |
| 3796 | -  | 
                                                        |
| 3797 | -		$this->assertEquals([], $this->api->disableUser('RequestedUser')->getData()); | 
                                                        |
| 3798 | - }  | 
                                                        |
| 3799 | -  | 
                                                        |
| 3800 | -	public function testGetCurrentUserLoggedIn(): void { | 
                                                        |
| 3801 | - $user = $this->createMock(IUser::class);  | 
                                                        |
| 3802 | -		$user->expects($this->once())->method('getUID')->willReturn('UID'); | 
                                                        |
| 3803 | -  | 
                                                        |
| 3804 | -		$this->userSession->expects($this->once())->method('getUser') | 
                                                        |
| 3805 | - ->willReturn($user);  | 
                                                        |
| 3806 | -  | 
                                                        |
| 3807 | - /** @var UsersController | MockObject $api */  | 
                                                        |
| 3808 | - $api = $this->getMockBuilder(UsersController::class)  | 
                                                        |
| 3809 | - ->setConstructorArgs([  | 
                                                        |
| 3810 | - 'provisioning_api',  | 
                                                        |
| 3811 | - $this->request,  | 
                                                        |
| 3812 | - $this->userManager,  | 
                                                        |
| 3813 | - $this->config,  | 
                                                        |
| 3814 | - $this->groupManager,  | 
                                                        |
| 3815 | - $this->userSession,  | 
                                                        |
| 3816 | - $this->accountManager,  | 
                                                        |
| 3817 | - $this->subAdminManager,  | 
                                                        |
| 3818 | - $this->l10nFactory,  | 
                                                        |
| 3819 | - $this->rootFolder,  | 
                                                        |
| 3820 | - $this->urlGenerator,  | 
                                                        |
| 3821 | - $this->logger,  | 
                                                        |
| 3822 | - $this->newUserMailHelper,  | 
                                                        |
| 3823 | - $this->secureRandom,  | 
                                                        |
| 3824 | - $this->remoteWipe,  | 
                                                        |
| 3825 | - $this->knownUserService,  | 
                                                        |
| 3826 | - $this->eventDispatcher,  | 
                                                        |
| 3827 | - $this->phoneNumberUtil,  | 
                                                        |
| 3828 | - ])  | 
                                                        |
| 3829 | - ->onlyMethods(['getUserData'])  | 
                                                        |
| 3830 | - ->getMock();  | 
                                                        |
| 3831 | -  | 
                                                        |
| 3832 | -		$api->expects($this->once())->method('getUserData')->with('UID', true) | 
                                                        |
| 3833 | - ->willReturn(  | 
                                                        |
| 3834 | - [  | 
                                                        |
| 3835 | - 'id' => 'UID',  | 
                                                        |
| 3836 | - 'enabled' => 'true',  | 
                                                        |
| 3837 | - 'quota' => ['DummyValue'],  | 
                                                        |
| 3838 | - 'email' => '[email protected]',  | 
                                                        |
| 3839 | - 'displayname' => 'Demo User',  | 
                                                        |
| 3840 | - 'display-name' => 'Demo User',  | 
                                                        |
| 3841 | - 'phone' => 'phone',  | 
                                                        |
| 3842 | - 'address' => 'address',  | 
                                                        |
| 3843 | - 'website' => 'website',  | 
                                                        |
| 3844 | - 'twitter' => 'twitter',  | 
                                                        |
| 3845 | - 'fediverse' => 'fediverse',  | 
                                                        |
| 3846 | - 'organisation' => 'organisation',  | 
                                                        |
| 3847 | - 'role' => 'role',  | 
                                                        |
| 3848 | - 'headline' => 'headline',  | 
                                                        |
| 3849 | - 'biography' => 'biography',  | 
                                                        |
| 3850 | - 'profile_enabled' => '1',  | 
                                                        |
| 3851 | - 'pronouns' => 'they/them',  | 
                                                        |
| 3852 | - ]  | 
                                                        |
| 3853 | - );  | 
                                                        |
| 3854 | -  | 
                                                        |
| 3855 | - $expected = [  | 
                                                        |
| 3856 | - 'id' => 'UID',  | 
                                                        |
| 3857 | - 'enabled' => 'true',  | 
                                                        |
| 3858 | - 'quota' => ['DummyValue'],  | 
                                                        |
| 3859 | - 'email' => '[email protected]',  | 
                                                        |
| 3860 | - 'displayname' => 'Demo User',  | 
                                                        |
| 3861 | - 'display-name' => 'Demo User',  | 
                                                        |
| 3862 | - 'phone' => 'phone',  | 
                                                        |
| 3863 | - 'address' => 'address',  | 
                                                        |
| 3864 | - 'website' => 'website',  | 
                                                        |
| 3865 | - 'twitter' => 'twitter',  | 
                                                        |
| 3866 | - 'fediverse' => 'fediverse',  | 
                                                        |
| 3867 | - 'organisation' => 'organisation',  | 
                                                        |
| 3868 | - 'role' => 'role',  | 
                                                        |
| 3869 | - 'headline' => 'headline',  | 
                                                        |
| 3870 | - 'biography' => 'biography',  | 
                                                        |
| 3871 | - 'profile_enabled' => '1',  | 
                                                        |
| 3872 | - 'pronouns' => 'they/them',  | 
                                                        |
| 3873 | - ];  | 
                                                        |
| 3874 | -  | 
                                                        |
| 3875 | - $this->assertSame($expected, $api->getCurrentUser()->getData());  | 
                                                        |
| 3876 | - }  | 
                                                        |
| 3877 | -  | 
                                                        |
| 3878 | -  | 
                                                        |
| 3879 | -	public function testGetCurrentUserNotLoggedIn(): void { | 
                                                        |
| 3880 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3881 | -  | 
                                                        |
| 3882 | -  | 
                                                        |
| 3883 | -		$this->userSession->expects($this->once())->method('getUser') | 
                                                        |
| 3884 | - ->willReturn(null);  | 
                                                        |
| 3885 | -  | 
                                                        |
| 3886 | - $this->api->getCurrentUser();  | 
                                                        |
| 3887 | - }  | 
                                                        |
| 3888 | -  | 
                                                        |
| 3889 | -	public function testGetUser(): void { | 
                                                        |
| 3890 | - $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 3891 | - $loggedInUser  | 
                                                        |
| 3892 | -			->method('getUID') | 
                                                        |
| 3893 | -			->willReturn('currentuser'); | 
                                                        |
| 3894 | - $this->userSession  | 
                                                        |
| 3895 | -			->method('getUser') | 
                                                        |
| 3896 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3897 | -  | 
                                                        |
| 3898 | - /** @var UsersController | MockObject $api */  | 
                                                        |
| 3899 | - $api = $this->getMockBuilder(UsersController::class)  | 
                                                        |
| 3900 | - ->setConstructorArgs([  | 
                                                        |
| 3901 | - 'provisioning_api',  | 
                                                        |
| 3902 | - $this->request,  | 
                                                        |
| 3903 | - $this->userManager,  | 
                                                        |
| 3904 | - $this->config,  | 
                                                        |
| 3905 | - $this->groupManager,  | 
                                                        |
| 3906 | - $this->userSession,  | 
                                                        |
| 3907 | - $this->accountManager,  | 
                                                        |
| 3908 | - $this->subAdminManager,  | 
                                                        |
| 3909 | - $this->l10nFactory,  | 
                                                        |
| 3910 | - $this->rootFolder,  | 
                                                        |
| 3911 | - $this->urlGenerator,  | 
                                                        |
| 3912 | - $this->logger,  | 
                                                        |
| 3913 | - $this->newUserMailHelper,  | 
                                                        |
| 3914 | - $this->secureRandom,  | 
                                                        |
| 3915 | - $this->remoteWipe,  | 
                                                        |
| 3916 | - $this->knownUserService,  | 
                                                        |
| 3917 | - $this->eventDispatcher,  | 
                                                        |
| 3918 | - $this->phoneNumberUtil,  | 
                                                        |
| 3919 | - ])  | 
                                                        |
| 3920 | - ->onlyMethods(['getUserData'])  | 
                                                        |
| 3921 | - ->getMock();  | 
                                                        |
| 3922 | -  | 
                                                        |
| 3923 | - $expected = [  | 
                                                        |
| 3924 | - 'id' => 'UID',  | 
                                                        |
| 3925 | - 'enabled' => 'true',  | 
                                                        |
| 3926 | - 'quota' => ['DummyValue'],  | 
                                                        |
| 3927 | - 'email' => '[email protected]',  | 
                                                        |
| 3928 | - 'phone' => 'phone',  | 
                                                        |
| 3929 | - 'address' => 'address',  | 
                                                        |
| 3930 | - 'website' => 'website',  | 
                                                        |
| 3931 | - 'twitter' => 'twitter',  | 
                                                        |
| 3932 | - 'fediverse' => 'fediverse',  | 
                                                        |
| 3933 | - 'displayname' => 'Demo User',  | 
                                                        |
| 3934 | - 'display-name' => 'Demo User',  | 
                                                        |
| 3935 | - 'organisation' => 'organisation',  | 
                                                        |
| 3936 | - 'role' => 'role',  | 
                                                        |
| 3937 | - 'headline' => 'headline',  | 
                                                        |
| 3938 | - 'biography' => 'biography',  | 
                                                        |
| 3939 | - 'profile_enabled' => '1',  | 
                                                        |
| 3940 | - 'pronouns' => 'they/them',  | 
                                                        |
| 3941 | - ];  | 
                                                        |
| 3942 | -  | 
                                                        |
| 3943 | - $api->expects($this->exactly(2))  | 
                                                        |
| 3944 | -			->method('getUserData') | 
                                                        |
| 3945 | - ->withConsecutive(  | 
                                                        |
| 3946 | - ['uid', false],  | 
                                                        |
| 3947 | - ['currentuser', true],  | 
                                                        |
| 3948 | - )  | 
                                                        |
| 3949 | - ->willReturn($expected);  | 
                                                        |
| 3950 | -  | 
                                                        |
| 3951 | -		$this->assertSame($expected, $api->getUser('uid')->getData()); | 
                                                        |
| 3952 | -  | 
                                                        |
| 3953 | -		$this->assertSame($expected, $api->getUser('currentuser')->getData()); | 
                                                        |
| 3954 | - }  | 
                                                        |
| 3955 | -  | 
                                                        |
| 3956 | -  | 
                                                        |
| 3957 | -	public function testResendWelcomeMessageWithNotExistingTargetUser(): void { | 
                                                        |
| 3958 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3959 | - $this->expectExceptionCode(998);  | 
                                                        |
| 3960 | -  | 
                                                        |
| 3961 | - $this->userManager  | 
                                                        |
| 3962 | - ->expects($this->once())  | 
                                                        |
| 3963 | -			->method('get') | 
                                                        |
| 3964 | -			->with('NotExistingUser') | 
                                                        |
| 3965 | - ->willReturn(null);  | 
                                                        |
| 3966 | -  | 
                                                        |
| 3967 | -		$this->api->resendWelcomeMessage('NotExistingUser'); | 
                                                        |
| 3968 | - }  | 
                                                        |
| 3969 | -  | 
                                                        |
| 3970 | -  | 
                                                        |
| 3971 | -	public function testResendWelcomeMessageAsSubAdminAndUserIsNotAccessible(): void { | 
                                                        |
| 3972 | - $this->expectException(OCSException::class);  | 
                                                        |
| 3973 | - $this->expectExceptionCode(998);  | 
                                                        |
| 3974 | -  | 
                                                        |
| 3975 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 3976 | - ->disableOriginalConstructor()  | 
                                                        |
| 3977 | - ->getMock();  | 
                                                        |
| 3978 | - $loggedInUser  | 
                                                        |
| 3979 | - ->expects($this->exactly(2))  | 
                                                        |
| 3980 | -			->method('getUID') | 
                                                        |
| 3981 | -			->willReturn('subadmin'); | 
                                                        |
| 3982 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 3983 | - ->disableOriginalConstructor()  | 
                                                        |
| 3984 | - ->getMock();  | 
                                                        |
| 3985 | - $this->userSession  | 
                                                        |
| 3986 | - ->expects($this->once())  | 
                                                        |
| 3987 | -			->method('getUser') | 
                                                        |
| 3988 | - ->willReturn($loggedInUser);  | 
                                                        |
| 3989 | - $this->userManager  | 
                                                        |
| 3990 | - ->expects($this->once())  | 
                                                        |
| 3991 | -			->method('get') | 
                                                        |
| 3992 | -			->with('UserToGet') | 
                                                        |
| 3993 | - ->willReturn($targetUser);  | 
                                                        |
| 3994 | - $this->groupManager  | 
                                                        |
| 3995 | - ->expects($this->once())  | 
                                                        |
| 3996 | -			->method('isAdmin') | 
                                                        |
| 3997 | -			->with('subadmin') | 
                                                        |
| 3998 | - ->willReturn(false);  | 
                                                        |
| 3999 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 4000 | - ->disableOriginalConstructor()  | 
                                                        |
| 4001 | - ->getMock();  | 
                                                        |
| 4002 | - $subAdminManager  | 
                                                        |
| 4003 | - ->expects($this->once())  | 
                                                        |
| 4004 | -			->method('isUserAccessible') | 
                                                        |
| 4005 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 4006 | - ->willReturn(false);  | 
                                                        |
| 4007 | - $this->groupManager  | 
                                                        |
| 4008 | - ->expects($this->once())  | 
                                                        |
| 4009 | -			->method('getSubAdmin') | 
                                                        |
| 4010 | - ->willReturn($subAdminManager);  | 
                                                        |
| 4011 | -  | 
                                                        |
| 4012 | -		$this->api->resendWelcomeMessage('UserToGet'); | 
                                                        |
| 4013 | - }  | 
                                                        |
| 4014 | -  | 
                                                        |
| 4015 | -  | 
                                                        |
| 4016 | -	public function testResendWelcomeMessageNoEmail(): void { | 
                                                        |
| 4017 | - $this->expectException(OCSException::class);  | 
                                                        |
| 4018 | -		$this->expectExceptionMessage('Email address not available'); | 
                                                        |
| 4019 | - $this->expectExceptionCode(101);  | 
                                                        |
| 4020 | -  | 
                                                        |
| 4021 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4022 | - ->disableOriginalConstructor()  | 
                                                        |
| 4023 | - ->getMock();  | 
                                                        |
| 4024 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4025 | - ->disableOriginalConstructor()  | 
                                                        |
| 4026 | - ->getMock();  | 
                                                        |
| 4027 | - $this->userSession  | 
                                                        |
| 4028 | - ->expects($this->once())  | 
                                                        |
| 4029 | -			->method('getUser') | 
                                                        |
| 4030 | - ->willReturn($loggedInUser);  | 
                                                        |
| 4031 | - $this->userManager  | 
                                                        |
| 4032 | - ->expects($this->once())  | 
                                                        |
| 4033 | -			->method('get') | 
                                                        |
| 4034 | -			->with('UserToGet') | 
                                                        |
| 4035 | - ->willReturn($targetUser);  | 
                                                        |
| 4036 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 4037 | - ->disableOriginalConstructor()  | 
                                                        |
| 4038 | - ->getMock();  | 
                                                        |
| 4039 | - $subAdminManager  | 
                                                        |
| 4040 | - ->expects($this->once())  | 
                                                        |
| 4041 | -			->method('isUserAccessible') | 
                                                        |
| 4042 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 4043 | - ->willReturn(true);  | 
                                                        |
| 4044 | - $this->groupManager  | 
                                                        |
| 4045 | - ->expects($this->once())  | 
                                                        |
| 4046 | -			->method('getSubAdmin') | 
                                                        |
| 4047 | - ->willReturn($subAdminManager);  | 
                                                        |
| 4048 | - $loggedInUser  | 
                                                        |
| 4049 | - ->expects($this->exactly(2))  | 
                                                        |
| 4050 | -			->method('getUID') | 
                                                        |
| 4051 | -			->willReturn('logged-user-id'); | 
                                                        |
| 4052 | - $targetUser  | 
                                                        |
| 4053 | - ->expects($this->once())  | 
                                                        |
| 4054 | -			->method('getEmailAddress') | 
                                                        |
| 4055 | -			->willReturn(''); | 
                                                        |
| 4056 | -  | 
                                                        |
| 4057 | -		$this->api->resendWelcomeMessage('UserToGet'); | 
                                                        |
| 4058 | - }  | 
                                                        |
| 4059 | -  | 
                                                        |
| 4060 | -  | 
                                                        |
| 4061 | -	public function testResendWelcomeMessageNullEmail(): void { | 
                                                        |
| 4062 | - $this->expectException(OCSException::class);  | 
                                                        |
| 4063 | -		$this->expectExceptionMessage('Email address not available'); | 
                                                        |
| 4064 | - $this->expectExceptionCode(101);  | 
                                                        |
| 4065 | -  | 
                                                        |
| 4066 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4067 | - ->disableOriginalConstructor()  | 
                                                        |
| 4068 | - ->getMock();  | 
                                                        |
| 4069 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4070 | - ->disableOriginalConstructor()  | 
                                                        |
| 4071 | - ->getMock();  | 
                                                        |
| 4072 | - $this->userSession  | 
                                                        |
| 4073 | - ->expects($this->once())  | 
                                                        |
| 4074 | -			->method('getUser') | 
                                                        |
| 4075 | - ->willReturn($loggedInUser);  | 
                                                        |
| 4076 | - $this->userManager  | 
                                                        |
| 4077 | - ->expects($this->once())  | 
                                                        |
| 4078 | -			->method('get') | 
                                                        |
| 4079 | -			->with('UserToGet') | 
                                                        |
| 4080 | - ->willReturn($targetUser);  | 
                                                        |
| 4081 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 4082 | - ->disableOriginalConstructor()  | 
                                                        |
| 4083 | - ->getMock();  | 
                                                        |
| 4084 | - $subAdminManager  | 
                                                        |
| 4085 | - ->expects($this->once())  | 
                                                        |
| 4086 | -			->method('isUserAccessible') | 
                                                        |
| 4087 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 4088 | - ->willReturn(true);  | 
                                                        |
| 4089 | - $this->groupManager  | 
                                                        |
| 4090 | - ->expects($this->once())  | 
                                                        |
| 4091 | -			->method('getSubAdmin') | 
                                                        |
| 4092 | - ->willReturn($subAdminManager);  | 
                                                        |
| 4093 | - $loggedInUser  | 
                                                        |
| 4094 | - ->expects($this->exactly(2))  | 
                                                        |
| 4095 | -			->method('getUID') | 
                                                        |
| 4096 | -			->willReturn('logged-user-id'); | 
                                                        |
| 4097 | - $targetUser  | 
                                                        |
| 4098 | - ->expects($this->once())  | 
                                                        |
| 4099 | -			->method('getEmailAddress') | 
                                                        |
| 4100 | - ->willReturn(null);  | 
                                                        |
| 4101 | -  | 
                                                        |
| 4102 | -		$this->api->resendWelcomeMessage('UserToGet'); | 
                                                        |
| 4103 | - }  | 
                                                        |
| 4104 | -  | 
                                                        |
| 4105 | -	public function testResendWelcomeMessageSuccess(): void { | 
                                                        |
| 4106 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4107 | - ->disableOriginalConstructor()  | 
                                                        |
| 4108 | - ->getMock();  | 
                                                        |
| 4109 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4110 | - ->disableOriginalConstructor()  | 
                                                        |
| 4111 | - ->getMock();  | 
                                                        |
| 4112 | - $loggedInUser  | 
                                                        |
| 4113 | -			->method('getUID') | 
                                                        |
| 4114 | -			->willReturn('logged-user-id'); | 
                                                        |
| 4115 | - $targetUser  | 
                                                        |
| 4116 | -			->method('getUID') | 
                                                        |
| 4117 | -			->willReturn('user-id'); | 
                                                        |
| 4118 | - $this->userSession  | 
                                                        |
| 4119 | - ->expects($this->once())  | 
                                                        |
| 4120 | -			->method('getUser') | 
                                                        |
| 4121 | - ->willReturn($loggedInUser);  | 
                                                        |
| 4122 | - $this->userManager  | 
                                                        |
| 4123 | - ->expects($this->once())  | 
                                                        |
| 4124 | -			->method('get') | 
                                                        |
| 4125 | -			->with('UserToGet') | 
                                                        |
| 4126 | - ->willReturn($targetUser);  | 
                                                        |
| 4127 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 4128 | - ->disableOriginalConstructor()  | 
                                                        |
| 4129 | - ->getMock();  | 
                                                        |
| 4130 | - $subAdminManager  | 
                                                        |
| 4131 | - ->expects($this->once())  | 
                                                        |
| 4132 | -			->method('isUserAccessible') | 
                                                        |
| 4133 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 4134 | - ->willReturn(true);  | 
                                                        |
| 4135 | - $this->groupManager  | 
                                                        |
| 4136 | - ->expects($this->once())  | 
                                                        |
| 4137 | -			->method('getSubAdmin') | 
                                                        |
| 4138 | - ->willReturn($subAdminManager);  | 
                                                        |
| 4139 | - $targetUser  | 
                                                        |
| 4140 | - ->expects($this->once())  | 
                                                        |
| 4141 | -			->method('getEmailAddress') | 
                                                        |
| 4142 | -			->willReturn('[email protected]'); | 
                                                        |
| 4143 | - $emailTemplate = $this->createMock(IEMailTemplate::class);  | 
                                                        |
| 4144 | - $this->newUserMailHelper  | 
                                                        |
| 4145 | - ->expects($this->once())  | 
                                                        |
| 4146 | -			->method('generateTemplate') | 
                                                        |
| 4147 | - ->willReturn($emailTemplate);  | 
                                                        |
| 4148 | - $this->newUserMailHelper  | 
                                                        |
| 4149 | - ->expects($this->once())  | 
                                                        |
| 4150 | -			->method('sendMail') | 
                                                        |
| 4151 | - ->with($targetUser, $emailTemplate);  | 
                                                        |
| 4152 | -  | 
                                                        |
| 4153 | -		$this->api->resendWelcomeMessage('UserToGet'); | 
                                                        |
| 4154 | - }  | 
                                                        |
| 4155 | -  | 
                                                        |
| 4156 | -	public function testResendWelcomeMessageSuccessWithFallbackLanguage(): void { | 
                                                        |
| 4157 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4158 | - ->disableOriginalConstructor()  | 
                                                        |
| 4159 | - ->getMock();  | 
                                                        |
| 4160 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4161 | - ->disableOriginalConstructor()  | 
                                                        |
| 4162 | - ->getMock();  | 
                                                        |
| 4163 | - $loggedInUser  | 
                                                        |
| 4164 | -			->method('getUID') | 
                                                        |
| 4165 | -			->willReturn('logged-user-id'); | 
                                                        |
| 4166 | - $targetUser  | 
                                                        |
| 4167 | -			->method('getUID') | 
                                                        |
| 4168 | -			->willReturn('user-id'); | 
                                                        |
| 4169 | - $this->userSession  | 
                                                        |
| 4170 | - ->expects($this->once())  | 
                                                        |
| 4171 | -			->method('getUser') | 
                                                        |
| 4172 | - ->willReturn($loggedInUser);  | 
                                                        |
| 4173 | - $this->userManager  | 
                                                        |
| 4174 | - ->expects($this->once())  | 
                                                        |
| 4175 | -			->method('get') | 
                                                        |
| 4176 | -			->with('UserToGet') | 
                                                        |
| 4177 | - ->willReturn($targetUser);  | 
                                                        |
| 4178 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 4179 | - ->disableOriginalConstructor()  | 
                                                        |
| 4180 | - ->getMock();  | 
                                                        |
| 4181 | - $subAdminManager  | 
                                                        |
| 4182 | - ->expects($this->once())  | 
                                                        |
| 4183 | -			->method('isUserAccessible') | 
                                                        |
| 4184 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 4185 | - ->willReturn(true);  | 
                                                        |
| 4186 | - $this->groupManager  | 
                                                        |
| 4187 | - ->expects($this->once())  | 
                                                        |
| 4188 | -			->method('getSubAdmin') | 
                                                        |
| 4189 | - ->willReturn($subAdminManager);  | 
                                                        |
| 4190 | - $targetUser  | 
                                                        |
| 4191 | - ->expects($this->once())  | 
                                                        |
| 4192 | -			->method('getEmailAddress') | 
                                                        |
| 4193 | -			->willReturn('[email protected]'); | 
                                                        |
| 4194 | - $emailTemplate = $this->createMock(IEMailTemplate::class);  | 
                                                        |
| 4195 | - $this->newUserMailHelper  | 
                                                        |
| 4196 | - ->expects($this->once())  | 
                                                        |
| 4197 | -			->method('generateTemplate') | 
                                                        |
| 4198 | - ->willReturn($emailTemplate);  | 
                                                        |
| 4199 | - $this->newUserMailHelper  | 
                                                        |
| 4200 | - ->expects($this->once())  | 
                                                        |
| 4201 | -			->method('sendMail') | 
                                                        |
| 4202 | - ->with($targetUser, $emailTemplate);  | 
                                                        |
| 4203 | -  | 
                                                        |
| 4204 | -		$this->api->resendWelcomeMessage('UserToGet'); | 
                                                        |
| 4205 | - }  | 
                                                        |
| 4206 | -  | 
                                                        |
| 4207 | -  | 
                                                        |
| 4208 | -	public function testResendWelcomeMessageFailed(): void { | 
                                                        |
| 4209 | - $this->expectException(OCSException::class);  | 
                                                        |
| 4210 | -		$this->expectExceptionMessage('Sending email failed'); | 
                                                        |
| 4211 | - $this->expectExceptionCode(102);  | 
                                                        |
| 4212 | -  | 
                                                        |
| 4213 | - $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4214 | - ->disableOriginalConstructor()  | 
                                                        |
| 4215 | - ->getMock();  | 
                                                        |
| 4216 | - $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4217 | - ->disableOriginalConstructor()  | 
                                                        |
| 4218 | - ->getMock();  | 
                                                        |
| 4219 | - $loggedInUser  | 
                                                        |
| 4220 | - ->expects($this->exactly(2))  | 
                                                        |
| 4221 | -			->method('getUID') | 
                                                        |
| 4222 | -			->willReturn('logged-user-id'); | 
                                                        |
| 4223 | - $targetUser  | 
                                                        |
| 4224 | -			->method('getUID') | 
                                                        |
| 4225 | -			->willReturn('user-id'); | 
                                                        |
| 4226 | - $this->userSession  | 
                                                        |
| 4227 | - ->expects($this->once())  | 
                                                        |
| 4228 | -			->method('getUser') | 
                                                        |
| 4229 | - ->willReturn($loggedInUser);  | 
                                                        |
| 4230 | - $this->userManager  | 
                                                        |
| 4231 | - ->expects($this->once())  | 
                                                        |
| 4232 | -			->method('get') | 
                                                        |
| 4233 | -			->with('UserToGet') | 
                                                        |
| 4234 | - ->willReturn($targetUser);  | 
                                                        |
| 4235 | -		$subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 4236 | - ->disableOriginalConstructor()  | 
                                                        |
| 4237 | - ->getMock();  | 
                                                        |
| 4238 | - $subAdminManager  | 
                                                        |
| 4239 | - ->expects($this->once())  | 
                                                        |
| 4240 | -			->method('isUserAccessible') | 
                                                        |
| 4241 | - ->with($loggedInUser, $targetUser)  | 
                                                        |
| 4242 | - ->willReturn(true);  | 
                                                        |
| 4243 | - $this->groupManager  | 
                                                        |
| 4244 | - ->expects($this->once())  | 
                                                        |
| 4245 | -			->method('getSubAdmin') | 
                                                        |
| 4246 | - ->willReturn($subAdminManager);  | 
                                                        |
| 4247 | - $targetUser  | 
                                                        |
| 4248 | - ->expects($this->once())  | 
                                                        |
| 4249 | -			->method('getEmailAddress') | 
                                                        |
| 4250 | -			->willReturn('[email protected]'); | 
                                                        |
| 4251 | - $emailTemplate = $this->createMock(IEMailTemplate::class);  | 
                                                        |
| 4252 | - $this->newUserMailHelper  | 
                                                        |
| 4253 | - ->expects($this->once())  | 
                                                        |
| 4254 | -			->method('generateTemplate') | 
                                                        |
| 4255 | - ->willReturn($emailTemplate);  | 
                                                        |
| 4256 | - $this->newUserMailHelper  | 
                                                        |
| 4257 | - ->expects($this->once())  | 
                                                        |
| 4258 | -			->method('sendMail') | 
                                                        |
| 4259 | - ->with($targetUser, $emailTemplate)  | 
                                                        |
| 4260 | - ->willThrowException(new \Exception());  | 
                                                        |
| 4261 | -  | 
                                                        |
| 4262 | -		$this->api->resendWelcomeMessage('UserToGet'); | 
                                                        |
| 4263 | - }  | 
                                                        |
| 4264 | -  | 
                                                        |
| 4265 | -  | 
                                                        |
| 4266 | -	public function dataGetEditableFields() { | 
                                                        |
| 4267 | - return [  | 
                                                        |
| 4268 | - [false, true, ISetDisplayNameBackend::class, [  | 
                                                        |
| 4269 | - IAccountManager::PROPERTY_EMAIL,  | 
                                                        |
| 4270 | - IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4271 | - IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4272 | - IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4273 | - IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4274 | - IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4275 | - IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4276 | - IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4277 | - IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4278 | - IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4279 | - IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4280 | - IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4281 | - IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4282 | - ]],  | 
                                                        |
| 4283 | - [true, false, ISetDisplayNameBackend::class, [  | 
                                                        |
| 4284 | - IAccountManager::PROPERTY_DISPLAYNAME,  | 
                                                        |
| 4285 | - IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4286 | - IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4287 | - IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4288 | - IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4289 | - IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4290 | - IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4291 | - IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4292 | - IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4293 | - IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4294 | - IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4295 | - IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4296 | - IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4297 | - ]],  | 
                                                        |
| 4298 | - [true, true, ISetDisplayNameBackend::class, [  | 
                                                        |
| 4299 | - IAccountManager::PROPERTY_DISPLAYNAME,  | 
                                                        |
| 4300 | - IAccountManager::PROPERTY_EMAIL,  | 
                                                        |
| 4301 | - IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4302 | - IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4303 | - IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4304 | - IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4305 | - IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4306 | - IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4307 | - IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4308 | - IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4309 | - IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4310 | - IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4311 | - IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4312 | - IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4313 | - ]],  | 
                                                        |
| 4314 | - [false, false, ISetDisplayNameBackend::class, [  | 
                                                        |
| 4315 | - IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4316 | - IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4317 | - IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4318 | - IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4319 | - IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4320 | - IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4321 | - IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4322 | - IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4323 | - IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4324 | - IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4325 | - IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4326 | - IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4327 | - ]],  | 
                                                        |
| 4328 | - [false, true, UserInterface::class, [  | 
                                                        |
| 4329 | - IAccountManager::PROPERTY_EMAIL,  | 
                                                        |
| 4330 | - IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4331 | - IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4332 | - IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4333 | - IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4334 | - IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4335 | - IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4336 | - IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4337 | - IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4338 | - IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4339 | - IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4340 | - IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4341 | - IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4342 | - ]],  | 
                                                        |
| 4343 | - [true, false, UserInterface::class, [  | 
                                                        |
| 4344 | - IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4345 | - IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4346 | - IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4347 | - IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4348 | - IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4349 | - IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4350 | - IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4351 | - IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4352 | - IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4353 | - IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4354 | - IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4355 | - IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4356 | - ]],  | 
                                                        |
| 4357 | - [true, true, UserInterface::class, [  | 
                                                        |
| 4358 | - IAccountManager::PROPERTY_EMAIL,  | 
                                                        |
| 4359 | - IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4360 | - IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4361 | - IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4362 | - IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4363 | - IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4364 | - IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4365 | - IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4366 | - IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4367 | - IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4368 | - IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4369 | - IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4370 | - IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4371 | - ]],  | 
                                                        |
| 4372 | - [false, false, UserInterface::class, [  | 
                                                        |
| 4373 | - IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4374 | - IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4375 | - IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4376 | - IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4377 | - IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4378 | - IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4379 | - IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4380 | - IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4381 | - IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4382 | - IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4383 | - IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4384 | - IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4385 | - ]],  | 
                                                        |
| 4386 | - ];  | 
                                                        |
| 4387 | - }  | 
                                                        |
| 4388 | -  | 
                                                        |
| 4389 | - /**  | 
                                                        |
| 4390 | - * @dataProvider dataGetEditableFields  | 
                                                        |
| 4391 | - *  | 
                                                        |
| 4392 | - * @param bool $allowedToChangeDisplayName  | 
                                                        |
| 4393 | - * @param string $userBackend  | 
                                                        |
| 4394 | - * @param array $expected  | 
                                                        |
| 4395 | - */  | 
                                                        |
| 4396 | -	public function testGetEditableFields(bool $allowedToChangeDisplayName, bool $allowedToChangeEmail, string $userBackend, array $expected): void { | 
                                                        |
| 4397 | -		$this->config->method('getSystemValue')->willReturnCallback(fn (string $key, mixed $default) => match ($key) { | 
                                                        |
| 4398 | - 'allow_user_to_change_display_name' => $allowedToChangeDisplayName,  | 
                                                        |
| 4399 | - 'allow_user_to_change_email' => $allowedToChangeEmail,  | 
                                                        |
| 4400 | -			default => throw new RuntimeException('Unexpected system config key: ' . $key), | 
                                                        |
| 4401 | - });  | 
                                                        |
| 4402 | -  | 
                                                        |
| 4403 | - $user = $this->createMock(IUser::class);  | 
                                                        |
| 4404 | -		$this->userSession->method('getUser') | 
                                                        |
| 4405 | - ->willReturn($user);  | 
                                                        |
| 4406 | -  | 
                                                        |
| 4407 | - $backend = $this->createMock($userBackend);  | 
                                                        |
| 4408 | -  | 
                                                        |
| 4409 | -		$user->method('getUID') | 
                                                        |
| 4410 | -			->willReturn('userId'); | 
                                                        |
| 4411 | -		$user->method('getBackend') | 
                                                        |
| 4412 | - ->willReturn($backend);  | 
                                                        |
| 4413 | -  | 
                                                        |
| 4414 | - $expectedResp = new DataResponse($expected);  | 
                                                        |
| 4415 | -		$this->assertEquals($expectedResp, $this->api->getEditableFields('userId')); | 
                                                        |
| 4416 | - }  | 
                                                        |
| 4417 | -  | 
                                                        |
| 4418 | -	private function mockAccount($targetUser, $accountProperties) { | 
                                                        |
| 4419 | - $mockedProperties = [];  | 
                                                        |
| 4420 | -  | 
                                                        |
| 4421 | -		foreach ($accountProperties as $propertyName => $data) { | 
                                                        |
| 4422 | - $mockedProperty = $this->createMock(IAccountProperty::class);  | 
                                                        |
| 4423 | -			$mockedProperty->method('getValue')->willReturn($data['value'] ?? ''); | 
                                                        |
| 4424 | -			$mockedProperty->method('getScope')->willReturn($data['scope'] ?? ''); | 
                                                        |
| 4425 | - $mockedProperties[] = [$propertyName, $mockedProperty];  | 
                                                        |
| 4426 | - }  | 
                                                        |
| 4427 | -  | 
                                                        |
| 4428 | - $account = $this->createMock(IAccount::class);  | 
                                                        |
| 4429 | -		$account->method('getProperty') | 
                                                        |
| 4430 | - ->will($this->returnValueMap($mockedProperties));  | 
                                                        |
| 4431 | -  | 
                                                        |
| 4432 | -		$this->accountManager->expects($this->any())->method('getAccount') | 
                                                        |
| 4433 | - ->with($targetUser)  | 
                                                        |
| 4434 | - ->willReturn($account);  | 
                                                        |
| 4435 | - }  | 
                                                        |
| 3089 | +  | 
                                                        |
| 3090 | + $subAdminManager = $this->createMock(SubAdmin::class);  | 
                                                        |
| 3091 | + $subAdminManager->expects($this->once())  | 
                                                        |
| 3092 | +            ->method('isSubAdminOfGroup') | 
                                                        |
| 3093 | + ->with($loggedInUser, $targetGroup)  | 
                                                        |
| 3094 | + ->willReturn(true);  | 
                                                        |
| 3095 | +  | 
                                                        |
| 3096 | + $this->groupManager->expects($this->once())  | 
                                                        |
| 3097 | +            ->method('getSubAdmin') | 
                                                        |
| 3098 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3099 | + $this->groupManager->expects($this->once())  | 
                                                        |
| 3100 | +            ->method('isAdmin') | 
                                                        |
| 3101 | +            ->with('subadmin') | 
                                                        |
| 3102 | + ->willReturn(false);  | 
                                                        |
| 3103 | +  | 
                                                        |
| 3104 | + $this->userManager->expects($this->once())  | 
                                                        |
| 3105 | +            ->method('get') | 
                                                        |
| 3106 | +            ->with('TargetUser') | 
                                                        |
| 3107 | + ->willReturn($targetUser);  | 
                                                        |
| 3108 | +  | 
                                                        |
| 3109 | + $this->userSession->expects($this->once())  | 
                                                        |
| 3110 | +            ->method('getUser') | 
                                                        |
| 3111 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3112 | +  | 
                                                        |
| 3113 | +        $this->assertEquals(new DataResponse(), $this->api->addToGroup('TargetUser', 'GroupToAddTo')); | 
                                                        |
| 3114 | + }  | 
                                                        |
| 3115 | +  | 
                                                        |
| 3116 | +    public function testAddToGroupSuccessAsAdmin(): void { | 
                                                        |
| 3117 | + $targetUser = $this->createMock(IUser::class);  | 
                                                        |
| 3118 | + $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 3119 | + $loggedInUser->expects($this->exactly(2))  | 
                                                        |
| 3120 | +            ->method('getUID') | 
                                                        |
| 3121 | +            ->willReturn('admin'); | 
                                                        |
| 3122 | +  | 
                                                        |
| 3123 | + $targetGroup = $this->createMock(IGroup::class);  | 
                                                        |
| 3124 | + $targetGroup->expects($this->once())  | 
                                                        |
| 3125 | +            ->method('addUser') | 
                                                        |
| 3126 | + ->with($targetUser);  | 
                                                        |
| 3127 | +  | 
                                                        |
| 3128 | + $this->groupManager->expects($this->once())  | 
                                                        |
| 3129 | +            ->method('get') | 
                                                        |
| 3130 | +            ->with('GroupToAddTo') | 
                                                        |
| 3131 | + ->willReturn($targetGroup);  | 
                                                        |
| 3132 | +  | 
                                                        |
| 3133 | +  | 
                                                        |
| 3134 | + $subAdminManager = $this->createMock(SubAdmin::class);  | 
                                                        |
| 3135 | + $subAdminManager->expects($this->never())  | 
                                                        |
| 3136 | +            ->method('isSubAdminOfGroup'); | 
                                                        |
| 3137 | +  | 
                                                        |
| 3138 | + $this->groupManager->expects($this->once())  | 
                                                        |
| 3139 | +            ->method('getSubAdmin') | 
                                                        |
| 3140 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3141 | + $this->groupManager->expects($this->once())  | 
                                                        |
| 3142 | +            ->method('isAdmin') | 
                                                        |
| 3143 | +            ->with('admin') | 
                                                        |
| 3144 | + ->willReturn(true);  | 
                                                        |
| 3145 | +  | 
                                                        |
| 3146 | + $this->userManager->expects($this->once())  | 
                                                        |
| 3147 | +            ->method('get') | 
                                                        |
| 3148 | +            ->with('TargetUser') | 
                                                        |
| 3149 | + ->willReturn($targetUser);  | 
                                                        |
| 3150 | +  | 
                                                        |
| 3151 | + $this->userSession->expects($this->once())  | 
                                                        |
| 3152 | +            ->method('getUser') | 
                                                        |
| 3153 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3154 | +  | 
                                                        |
| 3155 | +        $this->assertEquals(new DataResponse(), $this->api->addToGroup('TargetUser', 'GroupToAddTo')); | 
                                                        |
| 3156 | + }  | 
                                                        |
| 3157 | +  | 
                                                        |
| 3158 | +  | 
                                                        |
| 3159 | +    public function testRemoveFromGroupWithNoTargetGroup(): void { | 
                                                        |
| 3160 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3161 | + $this->expectExceptionCode(101);  | 
                                                        |
| 3162 | +  | 
                                                        |
| 3163 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3164 | + $this->userSession  | 
                                                        |
| 3165 | + ->expects($this->once())  | 
                                                        |
| 3166 | +            ->method('getUser') | 
                                                        |
| 3167 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3168 | +  | 
                                                        |
| 3169 | +        $this->api->removeFromGroup('TargetUser', ''); | 
                                                        |
| 3170 | + }  | 
                                                        |
| 3171 | +  | 
                                                        |
| 3172 | +  | 
                                                        |
| 3173 | +    public function testRemoveFromGroupWithEmptyTargetGroup(): void { | 
                                                        |
| 3174 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3175 | + $this->expectExceptionCode(101);  | 
                                                        |
| 3176 | +  | 
                                                        |
| 3177 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3178 | + $this->userSession  | 
                                                        |
| 3179 | + ->expects($this->once())  | 
                                                        |
| 3180 | +            ->method('getUser') | 
                                                        |
| 3181 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3182 | +  | 
                                                        |
| 3183 | +        $this->api->removeFromGroup('TargetUser', ''); | 
                                                        |
| 3184 | + }  | 
                                                        |
| 3185 | +  | 
                                                        |
| 3186 | +  | 
                                                        |
| 3187 | +    public function testRemoveFromGroupWithNotExistingTargetGroup(): void { | 
                                                        |
| 3188 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3189 | + $this->expectExceptionCode(102);  | 
                                                        |
| 3190 | +  | 
                                                        |
| 3191 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3192 | + $this->userSession  | 
                                                        |
| 3193 | + ->expects($this->once())  | 
                                                        |
| 3194 | +            ->method('getUser') | 
                                                        |
| 3195 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3196 | + $this->groupManager  | 
                                                        |
| 3197 | + ->expects($this->once())  | 
                                                        |
| 3198 | +            ->method('get') | 
                                                        |
| 3199 | +            ->with('TargetGroup') | 
                                                        |
| 3200 | + ->willReturn(null);  | 
                                                        |
| 3201 | +  | 
                                                        |
| 3202 | +        $this->api->removeFromGroup('TargetUser', 'TargetGroup'); | 
                                                        |
| 3203 | + }  | 
                                                        |
| 3204 | +  | 
                                                        |
| 3205 | +  | 
                                                        |
| 3206 | +    public function testRemoveFromGroupWithNotExistingTargetUser(): void { | 
                                                        |
| 3207 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3208 | + $this->expectExceptionCode(103);  | 
                                                        |
| 3209 | +  | 
                                                        |
| 3210 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3211 | +        $targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3212 | + $this->userSession  | 
                                                        |
| 3213 | + ->expects($this->once())  | 
                                                        |
| 3214 | +            ->method('getUser') | 
                                                        |
| 3215 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3216 | + $this->groupManager  | 
                                                        |
| 3217 | + ->expects($this->once())  | 
                                                        |
| 3218 | +            ->method('get') | 
                                                        |
| 3219 | +            ->with('TargetGroup') | 
                                                        |
| 3220 | + ->willReturn($targetGroup);  | 
                                                        |
| 3221 | + $this->userManager  | 
                                                        |
| 3222 | + ->expects($this->once())  | 
                                                        |
| 3223 | +            ->method('get') | 
                                                        |
| 3224 | +            ->with('TargetUser') | 
                                                        |
| 3225 | + ->willReturn(null);  | 
                                                        |
| 3226 | +  | 
                                                        |
| 3227 | +        $this->api->removeFromGroup('TargetUser', 'TargetGroup'); | 
                                                        |
| 3228 | + }  | 
                                                        |
| 3229 | +  | 
                                                        |
| 3230 | +  | 
                                                        |
| 3231 | +    public function testRemoveFromGroupWithoutPermission(): void { | 
                                                        |
| 3232 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3233 | + $this->expectExceptionCode(104);  | 
                                                        |
| 3234 | +  | 
                                                        |
| 3235 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3236 | + $loggedInUser  | 
                                                        |
| 3237 | + ->expects($this->exactly(2))  | 
                                                        |
| 3238 | +            ->method('getUID') | 
                                                        |
| 3239 | +            ->willReturn('unauthorizedUser'); | 
                                                        |
| 3240 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3241 | +        $targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3242 | + $this->userSession  | 
                                                        |
| 3243 | + ->expects($this->once())  | 
                                                        |
| 3244 | +            ->method('getUser') | 
                                                        |
| 3245 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3246 | + $this->groupManager  | 
                                                        |
| 3247 | + ->expects($this->once())  | 
                                                        |
| 3248 | +            ->method('get') | 
                                                        |
| 3249 | +            ->with('TargetGroup') | 
                                                        |
| 3250 | + ->willReturn($targetGroup);  | 
                                                        |
| 3251 | + $this->userManager  | 
                                                        |
| 3252 | + ->expects($this->once())  | 
                                                        |
| 3253 | +            ->method('get') | 
                                                        |
| 3254 | +            ->with('TargetUser') | 
                                                        |
| 3255 | + ->willReturn($targetUser);  | 
                                                        |
| 3256 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3257 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3258 | + $this->groupManager  | 
                                                        |
| 3259 | + ->expects($this->once())  | 
                                                        |
| 3260 | +            ->method('getSubAdmin') | 
                                                        |
| 3261 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3262 | + $this->groupManager  | 
                                                        |
| 3263 | + ->expects($this->once())  | 
                                                        |
| 3264 | +            ->method('isAdmin') | 
                                                        |
| 3265 | +            ->with('unauthorizedUser') | 
                                                        |
| 3266 | + ->willReturn(false);  | 
                                                        |
| 3267 | +  | 
                                                        |
| 3268 | +        $this->api->removeFromGroup('TargetUser', 'TargetGroup'); | 
                                                        |
| 3269 | + }  | 
                                                        |
| 3270 | +  | 
                                                        |
| 3271 | +  | 
                                                        |
| 3272 | +    public function testRemoveFromGroupAsAdminFromAdmin(): void { | 
                                                        |
| 3273 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3274 | +        $this->expectExceptionMessage('Cannot remove yourself from the admin group'); | 
                                                        |
| 3275 | + $this->expectExceptionCode(105);  | 
                                                        |
| 3276 | +  | 
                                                        |
| 3277 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3278 | + $loggedInUser  | 
                                                        |
| 3279 | + ->expects($this->any())  | 
                                                        |
| 3280 | +            ->method('getUID') | 
                                                        |
| 3281 | +            ->willReturn('admin'); | 
                                                        |
| 3282 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3283 | + $targetUser  | 
                                                        |
| 3284 | + ->expects($this->once())  | 
                                                        |
| 3285 | +            ->method('getUID') | 
                                                        |
| 3286 | +            ->willReturn('admin'); | 
                                                        |
| 3287 | +        $targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3288 | + $targetGroup  | 
                                                        |
| 3289 | + ->expects($this->once())  | 
                                                        |
| 3290 | +            ->method('getGID') | 
                                                        |
| 3291 | +            ->willReturn('admin'); | 
                                                        |
| 3292 | + $this->userSession  | 
                                                        |
| 3293 | + ->expects($this->once())  | 
                                                        |
| 3294 | +            ->method('getUser') | 
                                                        |
| 3295 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3296 | + $this->groupManager  | 
                                                        |
| 3297 | + ->expects($this->once())  | 
                                                        |
| 3298 | +            ->method('get') | 
                                                        |
| 3299 | +            ->with('admin') | 
                                                        |
| 3300 | + ->willReturn($targetGroup);  | 
                                                        |
| 3301 | + $this->userManager  | 
                                                        |
| 3302 | + ->expects($this->once())  | 
                                                        |
| 3303 | +            ->method('get') | 
                                                        |
| 3304 | +            ->with('Admin') | 
                                                        |
| 3305 | + ->willReturn($targetUser);  | 
                                                        |
| 3306 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3307 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3308 | + $this->groupManager  | 
                                                        |
| 3309 | + ->expects($this->once())  | 
                                                        |
| 3310 | +            ->method('getSubAdmin') | 
                                                        |
| 3311 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3312 | + $this->groupManager  | 
                                                        |
| 3313 | + ->expects($this->any())  | 
                                                        |
| 3314 | +            ->method('isAdmin') | 
                                                        |
| 3315 | +            ->with('admin') | 
                                                        |
| 3316 | + ->willReturn(true);  | 
                                                        |
| 3317 | +  | 
                                                        |
| 3318 | +        $this->api->removeFromGroup('Admin', 'admin'); | 
                                                        |
| 3319 | + }  | 
                                                        |
| 3320 | +  | 
                                                        |
| 3321 | +  | 
                                                        |
| 3322 | +    public function testRemoveFromGroupAsSubAdminFromSubAdmin(): void { | 
                                                        |
| 3323 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3324 | +        $this->expectExceptionMessage('Cannot remove yourself from this group as you are a sub-admin'); | 
                                                        |
| 3325 | + $this->expectExceptionCode(105);  | 
                                                        |
| 3326 | +  | 
                                                        |
| 3327 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3328 | + $loggedInUser  | 
                                                        |
| 3329 | + ->expects($this->any())  | 
                                                        |
| 3330 | +            ->method('getUID') | 
                                                        |
| 3331 | +            ->willReturn('subadmin'); | 
                                                        |
| 3332 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3333 | + $targetUser  | 
                                                        |
| 3334 | + ->expects($this->once())  | 
                                                        |
| 3335 | +            ->method('getUID') | 
                                                        |
| 3336 | +            ->willReturn('subadmin'); | 
                                                        |
| 3337 | +        $targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3338 | + $targetGroup  | 
                                                        |
| 3339 | + ->expects($this->any())  | 
                                                        |
| 3340 | +            ->method('getGID') | 
                                                        |
| 3341 | +            ->willReturn('subadmin'); | 
                                                        |
| 3342 | + $this->userSession  | 
                                                        |
| 3343 | + ->expects($this->once())  | 
                                                        |
| 3344 | +            ->method('getUser') | 
                                                        |
| 3345 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3346 | + $this->groupManager  | 
                                                        |
| 3347 | + ->expects($this->once())  | 
                                                        |
| 3348 | +            ->method('get') | 
                                                        |
| 3349 | +            ->with('subadmin') | 
                                                        |
| 3350 | + ->willReturn($targetGroup);  | 
                                                        |
| 3351 | + $this->userManager  | 
                                                        |
| 3352 | + ->expects($this->once())  | 
                                                        |
| 3353 | +            ->method('get') | 
                                                        |
| 3354 | +            ->with('SubAdmin') | 
                                                        |
| 3355 | + ->willReturn($targetUser);  | 
                                                        |
| 3356 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3357 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3358 | + $subAdminManager  | 
                                                        |
| 3359 | + ->expects($this->once())  | 
                                                        |
| 3360 | +            ->method('isSubAdminOfGroup') | 
                                                        |
| 3361 | + ->with($loggedInUser, $targetGroup)  | 
                                                        |
| 3362 | + ->willReturn(true);  | 
                                                        |
| 3363 | + $this->groupManager  | 
                                                        |
| 3364 | + ->expects($this->once())  | 
                                                        |
| 3365 | +            ->method('getSubAdmin') | 
                                                        |
| 3366 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3367 | + $this->groupManager  | 
                                                        |
| 3368 | + ->expects($this->any())  | 
                                                        |
| 3369 | +            ->method('isAdmin') | 
                                                        |
| 3370 | +            ->with('subadmin') | 
                                                        |
| 3371 | + ->willReturn(false);  | 
                                                        |
| 3372 | +  | 
                                                        |
| 3373 | +        $this->api->removeFromGroup('SubAdmin', 'subadmin'); | 
                                                        |
| 3374 | + }  | 
                                                        |
| 3375 | +  | 
                                                        |
| 3376 | +  | 
                                                        |
| 3377 | +    public function testRemoveFromGroupAsSubAdminFromLastSubAdminGroup(): void { | 
                                                        |
| 3378 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3379 | +        $this->expectExceptionMessage('Not viable to remove user from the last group you are sub-admin of'); | 
                                                        |
| 3380 | + $this->expectExceptionCode(105);  | 
                                                        |
| 3381 | +  | 
                                                        |
| 3382 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3383 | + $loggedInUser  | 
                                                        |
| 3384 | + ->expects($this->any())  | 
                                                        |
| 3385 | +            ->method('getUID') | 
                                                        |
| 3386 | +            ->willReturn('subadmin'); | 
                                                        |
| 3387 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3388 | +        $targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3389 | + $targetGroup  | 
                                                        |
| 3390 | + ->expects($this->any())  | 
                                                        |
| 3391 | +            ->method('getGID') | 
                                                        |
| 3392 | +            ->willReturn('subadmin'); | 
                                                        |
| 3393 | + $this->userSession  | 
                                                        |
| 3394 | + ->expects($this->once())  | 
                                                        |
| 3395 | +            ->method('getUser') | 
                                                        |
| 3396 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3397 | + $this->groupManager  | 
                                                        |
| 3398 | + ->expects($this->once())  | 
                                                        |
| 3399 | +            ->method('get') | 
                                                        |
| 3400 | +            ->with('subadmin') | 
                                                        |
| 3401 | + ->willReturn($targetGroup);  | 
                                                        |
| 3402 | + $this->userManager  | 
                                                        |
| 3403 | + ->expects($this->once())  | 
                                                        |
| 3404 | +            ->method('get') | 
                                                        |
| 3405 | +            ->with('AnotherUser') | 
                                                        |
| 3406 | + ->willReturn($targetUser);  | 
                                                        |
| 3407 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3408 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3409 | + $subAdminManager  | 
                                                        |
| 3410 | + ->expects($this->once())  | 
                                                        |
| 3411 | +            ->method('isSubAdminOfGroup') | 
                                                        |
| 3412 | + ->with($loggedInUser, $targetGroup)  | 
                                                        |
| 3413 | + ->willReturn(true);  | 
                                                        |
| 3414 | + $this->groupManager  | 
                                                        |
| 3415 | + ->expects($this->once())  | 
                                                        |
| 3416 | +            ->method('getSubAdmin') | 
                                                        |
| 3417 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3418 | + $subAdminManager  | 
                                                        |
| 3419 | + ->expects($this->once())  | 
                                                        |
| 3420 | +            ->method('getSubAdminsGroups') | 
                                                        |
| 3421 | + ->with($loggedInUser)  | 
                                                        |
| 3422 | + ->willReturn([$targetGroup]);  | 
                                                        |
| 3423 | +  | 
                                                        |
| 3424 | + $this->groupManager  | 
                                                        |
| 3425 | + ->expects($this->any())  | 
                                                        |
| 3426 | +            ->method('isAdmin') | 
                                                        |
| 3427 | +            ->with('subadmin') | 
                                                        |
| 3428 | + ->willReturn(false);  | 
                                                        |
| 3429 | + $this->groupManager  | 
                                                        |
| 3430 | + ->expects($this->once())  | 
                                                        |
| 3431 | +            ->method('getUserGroupIds') | 
                                                        |
| 3432 | + ->with($targetUser)  | 
                                                        |
| 3433 | + ->willReturn(['subadmin', 'other group']);  | 
                                                        |
| 3434 | +  | 
                                                        |
| 3435 | +        $this->api->removeFromGroup('AnotherUser', 'subadmin'); | 
                                                        |
| 3436 | + }  | 
                                                        |
| 3437 | +  | 
                                                        |
| 3438 | +    public function testRemoveFromGroupSuccessful(): void { | 
                                                        |
| 3439 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3440 | + $loggedInUser  | 
                                                        |
| 3441 | + ->expects($this->any())  | 
                                                        |
| 3442 | +            ->method('getUID') | 
                                                        |
| 3443 | +            ->willReturn('admin'); | 
                                                        |
| 3444 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3445 | +        $targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3446 | + $this->userSession  | 
                                                        |
| 3447 | + ->expects($this->once())  | 
                                                        |
| 3448 | +            ->method('getUser') | 
                                                        |
| 3449 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3450 | + $this->groupManager  | 
                                                        |
| 3451 | + ->expects($this->once())  | 
                                                        |
| 3452 | +            ->method('get') | 
                                                        |
| 3453 | +            ->with('admin') | 
                                                        |
| 3454 | + ->willReturn($targetGroup);  | 
                                                        |
| 3455 | + $this->userManager  | 
                                                        |
| 3456 | + ->expects($this->once())  | 
                                                        |
| 3457 | +            ->method('get') | 
                                                        |
| 3458 | +            ->with('AnotherUser') | 
                                                        |
| 3459 | + ->willReturn($targetUser);  | 
                                                        |
| 3460 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3461 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3462 | + $this->groupManager  | 
                                                        |
| 3463 | + ->expects($this->once())  | 
                                                        |
| 3464 | +            ->method('getSubAdmin') | 
                                                        |
| 3465 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3466 | + $this->groupManager  | 
                                                        |
| 3467 | + ->expects($this->any())  | 
                                                        |
| 3468 | +            ->method('isAdmin') | 
                                                        |
| 3469 | +            ->with('admin') | 
                                                        |
| 3470 | + ->willReturn(true);  | 
                                                        |
| 3471 | + $targetGroup  | 
                                                        |
| 3472 | + ->expects($this->once())  | 
                                                        |
| 3473 | +            ->method('removeUser') | 
                                                        |
| 3474 | + ->with($targetUser);  | 
                                                        |
| 3475 | +  | 
                                                        |
| 3476 | +        $this->assertEquals([], $this->api->removeFromGroup('AnotherUser', 'admin')->getData()); | 
                                                        |
| 3477 | + }  | 
                                                        |
| 3478 | +  | 
                                                        |
| 3479 | +  | 
                                                        |
| 3480 | +    public function testAddSubAdminWithNotExistingTargetUser(): void { | 
                                                        |
| 3481 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3482 | +        $this->expectExceptionMessage('User does not exist'); | 
                                                        |
| 3483 | + $this->expectExceptionCode(101);  | 
                                                        |
| 3484 | +  | 
                                                        |
| 3485 | + $this->userManager  | 
                                                        |
| 3486 | + ->expects($this->once())  | 
                                                        |
| 3487 | +            ->method('get') | 
                                                        |
| 3488 | +            ->with('NotExistingUser') | 
                                                        |
| 3489 | + ->willReturn(null);  | 
                                                        |
| 3490 | +  | 
                                                        |
| 3491 | +        $this->api->addSubAdmin('NotExistingUser', ''); | 
                                                        |
| 3492 | + }  | 
                                                        |
| 3493 | +  | 
                                                        |
| 3494 | +  | 
                                                        |
| 3495 | +    public function testAddSubAdminWithNotExistingTargetGroup(): void { | 
                                                        |
| 3496 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3497 | +        $this->expectExceptionMessage('Group does not exist'); | 
                                                        |
| 3498 | + $this->expectExceptionCode(102);  | 
                                                        |
| 3499 | +  | 
                                                        |
| 3500 | +  | 
                                                        |
| 3501 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3502 | + $this->userManager  | 
                                                        |
| 3503 | + ->expects($this->once())  | 
                                                        |
| 3504 | +            ->method('get') | 
                                                        |
| 3505 | +            ->with('ExistingUser') | 
                                                        |
| 3506 | + ->willReturn($targetUser);  | 
                                                        |
| 3507 | + $this->groupManager  | 
                                                        |
| 3508 | + ->expects($this->once())  | 
                                                        |
| 3509 | +            ->method('get') | 
                                                        |
| 3510 | +            ->with('NotExistingGroup') | 
                                                        |
| 3511 | + ->willReturn(null);  | 
                                                        |
| 3512 | +  | 
                                                        |
| 3513 | +        $this->api->addSubAdmin('ExistingUser', 'NotExistingGroup'); | 
                                                        |
| 3514 | + }  | 
                                                        |
| 3515 | +  | 
                                                        |
| 3516 | +  | 
                                                        |
| 3517 | +    public function testAddSubAdminToAdminGroup(): void { | 
                                                        |
| 3518 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3519 | +        $this->expectExceptionMessage('Cannot create sub-admins for admin group'); | 
                                                        |
| 3520 | + $this->expectExceptionCode(103);  | 
                                                        |
| 3521 | +  | 
                                                        |
| 3522 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3523 | +        $targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3524 | + $targetGroup  | 
                                                        |
| 3525 | + ->expects($this->once())  | 
                                                        |
| 3526 | +            ->method('getGID') | 
                                                        |
| 3527 | +            ->willReturn('admin'); | 
                                                        |
| 3528 | + $this->userManager  | 
                                                        |
| 3529 | + ->expects($this->once())  | 
                                                        |
| 3530 | +            ->method('get') | 
                                                        |
| 3531 | +            ->with('ExistingUser') | 
                                                        |
| 3532 | + ->willReturn($targetUser);  | 
                                                        |
| 3533 | + $this->groupManager  | 
                                                        |
| 3534 | + ->expects($this->once())  | 
                                                        |
| 3535 | +            ->method('get') | 
                                                        |
| 3536 | +            ->with('ADmiN') | 
                                                        |
| 3537 | + ->willReturn($targetGroup);  | 
                                                        |
| 3538 | +  | 
                                                        |
| 3539 | +        $this->api->addSubAdmin('ExistingUser', 'ADmiN'); | 
                                                        |
| 3540 | + }  | 
                                                        |
| 3541 | +  | 
                                                        |
| 3542 | +    public function testAddSubAdminTwice(): void { | 
                                                        |
| 3543 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3544 | +        $targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3545 | + $this->userManager  | 
                                                        |
| 3546 | + ->expects($this->once())  | 
                                                        |
| 3547 | +            ->method('get') | 
                                                        |
| 3548 | +            ->with('ExistingUser') | 
                                                        |
| 3549 | + ->willReturn($targetUser);  | 
                                                        |
| 3550 | + $this->groupManager  | 
                                                        |
| 3551 | + ->expects($this->once())  | 
                                                        |
| 3552 | +            ->method('get') | 
                                                        |
| 3553 | +            ->with('TargetGroup') | 
                                                        |
| 3554 | + ->willReturn($targetGroup);  | 
                                                        |
| 3555 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3556 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3557 | + $subAdminManager  | 
                                                        |
| 3558 | + ->expects($this->once())  | 
                                                        |
| 3559 | +            ->method('isSubAdminOfGroup') | 
                                                        |
| 3560 | + ->with($targetUser, $targetGroup)  | 
                                                        |
| 3561 | + ->willReturn(true);  | 
                                                        |
| 3562 | + $this->groupManager  | 
                                                        |
| 3563 | + ->expects($this->once())  | 
                                                        |
| 3564 | +            ->method('getSubAdmin') | 
                                                        |
| 3565 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3566 | +  | 
                                                        |
| 3567 | +        $this->assertEquals([], $this->api->addSubAdmin('ExistingUser', 'TargetGroup')->getData()); | 
                                                        |
| 3568 | + }  | 
                                                        |
| 3569 | +  | 
                                                        |
| 3570 | +    public function testAddSubAdminSuccessful(): void { | 
                                                        |
| 3571 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3572 | +        $targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3573 | + $this->userManager  | 
                                                        |
| 3574 | + ->expects($this->once())  | 
                                                        |
| 3575 | +            ->method('get') | 
                                                        |
| 3576 | +            ->with('ExistingUser') | 
                                                        |
| 3577 | + ->willReturn($targetUser);  | 
                                                        |
| 3578 | + $this->groupManager  | 
                                                        |
| 3579 | + ->expects($this->once())  | 
                                                        |
| 3580 | +            ->method('get') | 
                                                        |
| 3581 | +            ->with('TargetGroup') | 
                                                        |
| 3582 | + ->willReturn($targetGroup);  | 
                                                        |
| 3583 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3584 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3585 | + $subAdminManager  | 
                                                        |
| 3586 | + ->expects($this->once())  | 
                                                        |
| 3587 | +            ->method('isSubAdminOfGroup') | 
                                                        |
| 3588 | + ->with($targetUser, $targetGroup)  | 
                                                        |
| 3589 | + ->willReturn(false);  | 
                                                        |
| 3590 | + $subAdminManager  | 
                                                        |
| 3591 | + ->expects($this->once())  | 
                                                        |
| 3592 | +            ->method('createSubAdmin') | 
                                                        |
| 3593 | + ->with($targetUser, $targetGroup);  | 
                                                        |
| 3594 | + $this->groupManager  | 
                                                        |
| 3595 | + ->expects($this->once())  | 
                                                        |
| 3596 | +            ->method('getSubAdmin') | 
                                                        |
| 3597 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3598 | +  | 
                                                        |
| 3599 | +        $this->assertEquals([], $this->api->addSubAdmin('ExistingUser', 'TargetGroup')->getData()); | 
                                                        |
| 3600 | + }  | 
                                                        |
| 3601 | +  | 
                                                        |
| 3602 | +  | 
                                                        |
| 3603 | +    public function testRemoveSubAdminNotExistingTargetUser(): void { | 
                                                        |
| 3604 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3605 | +        $this->expectExceptionMessage('User does not exist'); | 
                                                        |
| 3606 | + $this->expectExceptionCode(101);  | 
                                                        |
| 3607 | +  | 
                                                        |
| 3608 | + $this->userManager  | 
                                                        |
| 3609 | + ->expects($this->once())  | 
                                                        |
| 3610 | +            ->method('get') | 
                                                        |
| 3611 | +            ->with('NotExistingUser') | 
                                                        |
| 3612 | + ->willReturn(null);  | 
                                                        |
| 3613 | +  | 
                                                        |
| 3614 | +        $this->api->removeSubAdmin('NotExistingUser', 'GroupToDeleteFrom'); | 
                                                        |
| 3615 | + }  | 
                                                        |
| 3616 | +  | 
                                                        |
| 3617 | +  | 
                                                        |
| 3618 | +    public function testRemoveSubAdminNotExistingTargetGroup(): void { | 
                                                        |
| 3619 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3620 | +        $this->expectExceptionMessage('Group does not exist'); | 
                                                        |
| 3621 | + $this->expectExceptionCode(101);  | 
                                                        |
| 3622 | +  | 
                                                        |
| 3623 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3624 | + $this->userManager  | 
                                                        |
| 3625 | + ->expects($this->once())  | 
                                                        |
| 3626 | +            ->method('get') | 
                                                        |
| 3627 | +            ->with('ExistingUser') | 
                                                        |
| 3628 | + ->willReturn($targetUser);  | 
                                                        |
| 3629 | + $this->groupManager  | 
                                                        |
| 3630 | + ->expects($this->once())  | 
                                                        |
| 3631 | +            ->method('get') | 
                                                        |
| 3632 | +            ->with('GroupToDeleteFrom') | 
                                                        |
| 3633 | + ->willReturn(null);  | 
                                                        |
| 3634 | +  | 
                                                        |
| 3635 | +        $this->api->removeSubAdmin('ExistingUser', 'GroupToDeleteFrom'); | 
                                                        |
| 3636 | + }  | 
                                                        |
| 3637 | +  | 
                                                        |
| 3638 | +  | 
                                                        |
| 3639 | +  | 
                                                        |
| 3640 | +    public function testRemoveSubAdminFromNotASubadmin(): void { | 
                                                        |
| 3641 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3642 | +        $this->expectExceptionMessage('User is not a sub-admin of this group'); | 
                                                        |
| 3643 | + $this->expectExceptionCode(102);  | 
                                                        |
| 3644 | +  | 
                                                        |
| 3645 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3646 | +        $targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3647 | + $this->userManager  | 
                                                        |
| 3648 | + ->expects($this->once())  | 
                                                        |
| 3649 | +            ->method('get') | 
                                                        |
| 3650 | +            ->with('ExistingUser') | 
                                                        |
| 3651 | + ->willReturn($targetUser);  | 
                                                        |
| 3652 | + $this->groupManager  | 
                                                        |
| 3653 | + ->expects($this->once())  | 
                                                        |
| 3654 | +            ->method('get') | 
                                                        |
| 3655 | +            ->with('GroupToDeleteFrom') | 
                                                        |
| 3656 | + ->willReturn($targetGroup);  | 
                                                        |
| 3657 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3658 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3659 | + $subAdminManager  | 
                                                        |
| 3660 | + ->expects($this->once())  | 
                                                        |
| 3661 | +            ->method('isSubAdminOfGroup') | 
                                                        |
| 3662 | + ->with($targetUser, $targetGroup)  | 
                                                        |
| 3663 | + ->willReturn(false);  | 
                                                        |
| 3664 | + $this->groupManager  | 
                                                        |
| 3665 | + ->expects($this->once())  | 
                                                        |
| 3666 | +            ->method('getSubAdmin') | 
                                                        |
| 3667 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3668 | +  | 
                                                        |
| 3669 | +        $this->api->removeSubAdmin('ExistingUser', 'GroupToDeleteFrom'); | 
                                                        |
| 3670 | + }  | 
                                                        |
| 3671 | +  | 
                                                        |
| 3672 | +    public function testRemoveSubAdminSuccessful(): void { | 
                                                        |
| 3673 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3674 | +        $targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3675 | + $this->userManager  | 
                                                        |
| 3676 | + ->expects($this->once())  | 
                                                        |
| 3677 | +            ->method('get') | 
                                                        |
| 3678 | +            ->with('ExistingUser') | 
                                                        |
| 3679 | + ->willReturn($targetUser);  | 
                                                        |
| 3680 | + $this->groupManager  | 
                                                        |
| 3681 | + ->expects($this->once())  | 
                                                        |
| 3682 | +            ->method('get') | 
                                                        |
| 3683 | +            ->with('GroupToDeleteFrom') | 
                                                        |
| 3684 | + ->willReturn($targetGroup);  | 
                                                        |
| 3685 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3686 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3687 | + $subAdminManager  | 
                                                        |
| 3688 | + ->expects($this->once())  | 
                                                        |
| 3689 | +            ->method('isSubAdminOfGroup') | 
                                                        |
| 3690 | + ->with($targetUser, $targetGroup)  | 
                                                        |
| 3691 | + ->willReturn(true);  | 
                                                        |
| 3692 | + $subAdminManager  | 
                                                        |
| 3693 | + ->expects($this->once())  | 
                                                        |
| 3694 | +            ->method('deleteSubAdmin') | 
                                                        |
| 3695 | + ->with($targetUser, $targetGroup);  | 
                                                        |
| 3696 | + $this->groupManager  | 
                                                        |
| 3697 | + ->expects($this->once())  | 
                                                        |
| 3698 | +            ->method('getSubAdmin') | 
                                                        |
| 3699 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3700 | +  | 
                                                        |
| 3701 | +        $this->assertEquals([], $this->api->removeSubAdmin('ExistingUser', 'GroupToDeleteFrom')->getData()); | 
                                                        |
| 3702 | + }  | 
                                                        |
| 3703 | +  | 
                                                        |
| 3704 | +  | 
                                                        |
| 3705 | +    public function testGetUserSubAdminGroupsNotExistingTargetUser(): void { | 
                                                        |
| 3706 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3707 | +        $this->expectExceptionMessage('User does not exist'); | 
                                                        |
| 3708 | + $this->expectExceptionCode(404);  | 
                                                        |
| 3709 | +  | 
                                                        |
| 3710 | + $this->userManager  | 
                                                        |
| 3711 | + ->expects($this->once())  | 
                                                        |
| 3712 | +            ->method('get') | 
                                                        |
| 3713 | +            ->with('RequestedUser') | 
                                                        |
| 3714 | + ->willReturn(null);  | 
                                                        |
| 3715 | +  | 
                                                        |
| 3716 | +        $this->api->getUserSubAdminGroups('RequestedUser'); | 
                                                        |
| 3717 | + }  | 
                                                        |
| 3718 | +  | 
                                                        |
| 3719 | +    public function testGetUserSubAdminGroupsWithGroups(): void { | 
                                                        |
| 3720 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3721 | +        $targetGroup = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock(); | 
                                                        |
| 3722 | + $targetGroup  | 
                                                        |
| 3723 | + ->expects($this->once())  | 
                                                        |
| 3724 | +            ->method('getGID') | 
                                                        |
| 3725 | +            ->willReturn('TargetGroup'); | 
                                                        |
| 3726 | + $this->userManager  | 
                                                        |
| 3727 | + ->expects($this->once())  | 
                                                        |
| 3728 | +            ->method('get') | 
                                                        |
| 3729 | +            ->with('RequestedUser') | 
                                                        |
| 3730 | + ->willReturn($targetUser);  | 
                                                        |
| 3731 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 3732 | + ->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3733 | + $subAdminManager  | 
                                                        |
| 3734 | + ->expects($this->once())  | 
                                                        |
| 3735 | +            ->method('getSubAdminsGroups') | 
                                                        |
| 3736 | + ->with($targetUser)  | 
                                                        |
| 3737 | + ->willReturn([$targetGroup]);  | 
                                                        |
| 3738 | + $this->groupManager  | 
                                                        |
| 3739 | + ->expects($this->once())  | 
                                                        |
| 3740 | +            ->method('getSubAdmin') | 
                                                        |
| 3741 | + ->willReturn($subAdminManager);  | 
                                                        |
| 3742 | +  | 
                                                        |
| 3743 | +        $this->assertEquals(['TargetGroup'], $this->api->getUserSubAdminGroups('RequestedUser')->getData()); | 
                                                        |
| 3744 | + }  | 
                                                        |
| 3745 | +  | 
                                                        |
| 3746 | +    public function testEnableUser(): void { | 
                                                        |
| 3747 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3748 | + $targetUser->expects($this->once())  | 
                                                        |
| 3749 | +            ->method('setEnabled') | 
                                                        |
| 3750 | + ->with(true);  | 
                                                        |
| 3751 | + $this->userManager  | 
                                                        |
| 3752 | + ->expects($this->once())  | 
                                                        |
| 3753 | +            ->method('get') | 
                                                        |
| 3754 | +            ->with('RequestedUser') | 
                                                        |
| 3755 | + ->willReturn($targetUser);  | 
                                                        |
| 3756 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3757 | + $loggedInUser  | 
                                                        |
| 3758 | + ->expects($this->exactly(3))  | 
                                                        |
| 3759 | +            ->method('getUID') | 
                                                        |
| 3760 | +            ->willReturn('admin'); | 
                                                        |
| 3761 | + $this->userSession  | 
                                                        |
| 3762 | + ->expects($this->once())  | 
                                                        |
| 3763 | +            ->method('getUser') | 
                                                        |
| 3764 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3765 | + $this->groupManager  | 
                                                        |
| 3766 | + ->expects($this->once())  | 
                                                        |
| 3767 | +            ->method('isAdmin') | 
                                                        |
| 3768 | + ->willReturn(true);  | 
                                                        |
| 3769 | +  | 
                                                        |
| 3770 | +        $this->assertEquals([], $this->api->enableUser('RequestedUser')->getData()); | 
                                                        |
| 3771 | + }  | 
                                                        |
| 3772 | +  | 
                                                        |
| 3773 | +    public function testDisableUser(): void { | 
                                                        |
| 3774 | + $targetUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3775 | + $targetUser->expects($this->once())  | 
                                                        |
| 3776 | +            ->method('setEnabled') | 
                                                        |
| 3777 | + ->with(false);  | 
                                                        |
| 3778 | + $this->userManager  | 
                                                        |
| 3779 | + ->expects($this->once())  | 
                                                        |
| 3780 | +            ->method('get') | 
                                                        |
| 3781 | +            ->with('RequestedUser') | 
                                                        |
| 3782 | + ->willReturn($targetUser);  | 
                                                        |
| 3783 | + $loggedInUser = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();  | 
                                                        |
| 3784 | + $loggedInUser  | 
                                                        |
| 3785 | + ->expects($this->exactly(3))  | 
                                                        |
| 3786 | +            ->method('getUID') | 
                                                        |
| 3787 | +            ->willReturn('admin'); | 
                                                        |
| 3788 | + $this->userSession  | 
                                                        |
| 3789 | + ->expects($this->once())  | 
                                                        |
| 3790 | +            ->method('getUser') | 
                                                        |
| 3791 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3792 | + $this->groupManager  | 
                                                        |
| 3793 | + ->expects($this->once())  | 
                                                        |
| 3794 | +            ->method('isAdmin') | 
                                                        |
| 3795 | + ->willReturn(true);  | 
                                                        |
| 3796 | +  | 
                                                        |
| 3797 | +        $this->assertEquals([], $this->api->disableUser('RequestedUser')->getData()); | 
                                                        |
| 3798 | + }  | 
                                                        |
| 3799 | +  | 
                                                        |
| 3800 | +    public function testGetCurrentUserLoggedIn(): void { | 
                                                        |
| 3801 | + $user = $this->createMock(IUser::class);  | 
                                                        |
| 3802 | +        $user->expects($this->once())->method('getUID')->willReturn('UID'); | 
                                                        |
| 3803 | +  | 
                                                        |
| 3804 | +        $this->userSession->expects($this->once())->method('getUser') | 
                                                        |
| 3805 | + ->willReturn($user);  | 
                                                        |
| 3806 | +  | 
                                                        |
| 3807 | + /** @var UsersController | MockObject $api */  | 
                                                        |
| 3808 | + $api = $this->getMockBuilder(UsersController::class)  | 
                                                        |
| 3809 | + ->setConstructorArgs([  | 
                                                        |
| 3810 | + 'provisioning_api',  | 
                                                        |
| 3811 | + $this->request,  | 
                                                        |
| 3812 | + $this->userManager,  | 
                                                        |
| 3813 | + $this->config,  | 
                                                        |
| 3814 | + $this->groupManager,  | 
                                                        |
| 3815 | + $this->userSession,  | 
                                                        |
| 3816 | + $this->accountManager,  | 
                                                        |
| 3817 | + $this->subAdminManager,  | 
                                                        |
| 3818 | + $this->l10nFactory,  | 
                                                        |
| 3819 | + $this->rootFolder,  | 
                                                        |
| 3820 | + $this->urlGenerator,  | 
                                                        |
| 3821 | + $this->logger,  | 
                                                        |
| 3822 | + $this->newUserMailHelper,  | 
                                                        |
| 3823 | + $this->secureRandom,  | 
                                                        |
| 3824 | + $this->remoteWipe,  | 
                                                        |
| 3825 | + $this->knownUserService,  | 
                                                        |
| 3826 | + $this->eventDispatcher,  | 
                                                        |
| 3827 | + $this->phoneNumberUtil,  | 
                                                        |
| 3828 | + ])  | 
                                                        |
| 3829 | + ->onlyMethods(['getUserData'])  | 
                                                        |
| 3830 | + ->getMock();  | 
                                                        |
| 3831 | +  | 
                                                        |
| 3832 | +        $api->expects($this->once())->method('getUserData')->with('UID', true) | 
                                                        |
| 3833 | + ->willReturn(  | 
                                                        |
| 3834 | + [  | 
                                                        |
| 3835 | + 'id' => 'UID',  | 
                                                        |
| 3836 | + 'enabled' => 'true',  | 
                                                        |
| 3837 | + 'quota' => ['DummyValue'],  | 
                                                        |
| 3838 | + 'email' => '[email protected]',  | 
                                                        |
| 3839 | + 'displayname' => 'Demo User',  | 
                                                        |
| 3840 | + 'display-name' => 'Demo User',  | 
                                                        |
| 3841 | + 'phone' => 'phone',  | 
                                                        |
| 3842 | + 'address' => 'address',  | 
                                                        |
| 3843 | + 'website' => 'website',  | 
                                                        |
| 3844 | + 'twitter' => 'twitter',  | 
                                                        |
| 3845 | + 'fediverse' => 'fediverse',  | 
                                                        |
| 3846 | + 'organisation' => 'organisation',  | 
                                                        |
| 3847 | + 'role' => 'role',  | 
                                                        |
| 3848 | + 'headline' => 'headline',  | 
                                                        |
| 3849 | + 'biography' => 'biography',  | 
                                                        |
| 3850 | + 'profile_enabled' => '1',  | 
                                                        |
| 3851 | + 'pronouns' => 'they/them',  | 
                                                        |
| 3852 | + ]  | 
                                                        |
| 3853 | + );  | 
                                                        |
| 3854 | +  | 
                                                        |
| 3855 | + $expected = [  | 
                                                        |
| 3856 | + 'id' => 'UID',  | 
                                                        |
| 3857 | + 'enabled' => 'true',  | 
                                                        |
| 3858 | + 'quota' => ['DummyValue'],  | 
                                                        |
| 3859 | + 'email' => '[email protected]',  | 
                                                        |
| 3860 | + 'displayname' => 'Demo User',  | 
                                                        |
| 3861 | + 'display-name' => 'Demo User',  | 
                                                        |
| 3862 | + 'phone' => 'phone',  | 
                                                        |
| 3863 | + 'address' => 'address',  | 
                                                        |
| 3864 | + 'website' => 'website',  | 
                                                        |
| 3865 | + 'twitter' => 'twitter',  | 
                                                        |
| 3866 | + 'fediverse' => 'fediverse',  | 
                                                        |
| 3867 | + 'organisation' => 'organisation',  | 
                                                        |
| 3868 | + 'role' => 'role',  | 
                                                        |
| 3869 | + 'headline' => 'headline',  | 
                                                        |
| 3870 | + 'biography' => 'biography',  | 
                                                        |
| 3871 | + 'profile_enabled' => '1',  | 
                                                        |
| 3872 | + 'pronouns' => 'they/them',  | 
                                                        |
| 3873 | + ];  | 
                                                        |
| 3874 | +  | 
                                                        |
| 3875 | + $this->assertSame($expected, $api->getCurrentUser()->getData());  | 
                                                        |
| 3876 | + }  | 
                                                        |
| 3877 | +  | 
                                                        |
| 3878 | +  | 
                                                        |
| 3879 | +    public function testGetCurrentUserNotLoggedIn(): void { | 
                                                        |
| 3880 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3881 | +  | 
                                                        |
| 3882 | +  | 
                                                        |
| 3883 | +        $this->userSession->expects($this->once())->method('getUser') | 
                                                        |
| 3884 | + ->willReturn(null);  | 
                                                        |
| 3885 | +  | 
                                                        |
| 3886 | + $this->api->getCurrentUser();  | 
                                                        |
| 3887 | + }  | 
                                                        |
| 3888 | +  | 
                                                        |
| 3889 | +    public function testGetUser(): void { | 
                                                        |
| 3890 | + $loggedInUser = $this->createMock(IUser::class);  | 
                                                        |
| 3891 | + $loggedInUser  | 
                                                        |
| 3892 | +            ->method('getUID') | 
                                                        |
| 3893 | +            ->willReturn('currentuser'); | 
                                                        |
| 3894 | + $this->userSession  | 
                                                        |
| 3895 | +            ->method('getUser') | 
                                                        |
| 3896 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3897 | +  | 
                                                        |
| 3898 | + /** @var UsersController | MockObject $api */  | 
                                                        |
| 3899 | + $api = $this->getMockBuilder(UsersController::class)  | 
                                                        |
| 3900 | + ->setConstructorArgs([  | 
                                                        |
| 3901 | + 'provisioning_api',  | 
                                                        |
| 3902 | + $this->request,  | 
                                                        |
| 3903 | + $this->userManager,  | 
                                                        |
| 3904 | + $this->config,  | 
                                                        |
| 3905 | + $this->groupManager,  | 
                                                        |
| 3906 | + $this->userSession,  | 
                                                        |
| 3907 | + $this->accountManager,  | 
                                                        |
| 3908 | + $this->subAdminManager,  | 
                                                        |
| 3909 | + $this->l10nFactory,  | 
                                                        |
| 3910 | + $this->rootFolder,  | 
                                                        |
| 3911 | + $this->urlGenerator,  | 
                                                        |
| 3912 | + $this->logger,  | 
                                                        |
| 3913 | + $this->newUserMailHelper,  | 
                                                        |
| 3914 | + $this->secureRandom,  | 
                                                        |
| 3915 | + $this->remoteWipe,  | 
                                                        |
| 3916 | + $this->knownUserService,  | 
                                                        |
| 3917 | + $this->eventDispatcher,  | 
                                                        |
| 3918 | + $this->phoneNumberUtil,  | 
                                                        |
| 3919 | + ])  | 
                                                        |
| 3920 | + ->onlyMethods(['getUserData'])  | 
                                                        |
| 3921 | + ->getMock();  | 
                                                        |
| 3922 | +  | 
                                                        |
| 3923 | + $expected = [  | 
                                                        |
| 3924 | + 'id' => 'UID',  | 
                                                        |
| 3925 | + 'enabled' => 'true',  | 
                                                        |
| 3926 | + 'quota' => ['DummyValue'],  | 
                                                        |
| 3927 | + 'email' => '[email protected]',  | 
                                                        |
| 3928 | + 'phone' => 'phone',  | 
                                                        |
| 3929 | + 'address' => 'address',  | 
                                                        |
| 3930 | + 'website' => 'website',  | 
                                                        |
| 3931 | + 'twitter' => 'twitter',  | 
                                                        |
| 3932 | + 'fediverse' => 'fediverse',  | 
                                                        |
| 3933 | + 'displayname' => 'Demo User',  | 
                                                        |
| 3934 | + 'display-name' => 'Demo User',  | 
                                                        |
| 3935 | + 'organisation' => 'organisation',  | 
                                                        |
| 3936 | + 'role' => 'role',  | 
                                                        |
| 3937 | + 'headline' => 'headline',  | 
                                                        |
| 3938 | + 'biography' => 'biography',  | 
                                                        |
| 3939 | + 'profile_enabled' => '1',  | 
                                                        |
| 3940 | + 'pronouns' => 'they/them',  | 
                                                        |
| 3941 | + ];  | 
                                                        |
| 3942 | +  | 
                                                        |
| 3943 | + $api->expects($this->exactly(2))  | 
                                                        |
| 3944 | +            ->method('getUserData') | 
                                                        |
| 3945 | + ->withConsecutive(  | 
                                                        |
| 3946 | + ['uid', false],  | 
                                                        |
| 3947 | + ['currentuser', true],  | 
                                                        |
| 3948 | + )  | 
                                                        |
| 3949 | + ->willReturn($expected);  | 
                                                        |
| 3950 | +  | 
                                                        |
| 3951 | +        $this->assertSame($expected, $api->getUser('uid')->getData()); | 
                                                        |
| 3952 | +  | 
                                                        |
| 3953 | +        $this->assertSame($expected, $api->getUser('currentuser')->getData()); | 
                                                        |
| 3954 | + }  | 
                                                        |
| 3955 | +  | 
                                                        |
| 3956 | +  | 
                                                        |
| 3957 | +    public function testResendWelcomeMessageWithNotExistingTargetUser(): void { | 
                                                        |
| 3958 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3959 | + $this->expectExceptionCode(998);  | 
                                                        |
| 3960 | +  | 
                                                        |
| 3961 | + $this->userManager  | 
                                                        |
| 3962 | + ->expects($this->once())  | 
                                                        |
| 3963 | +            ->method('get') | 
                                                        |
| 3964 | +            ->with('NotExistingUser') | 
                                                        |
| 3965 | + ->willReturn(null);  | 
                                                        |
| 3966 | +  | 
                                                        |
| 3967 | +        $this->api->resendWelcomeMessage('NotExistingUser'); | 
                                                        |
| 3968 | + }  | 
                                                        |
| 3969 | +  | 
                                                        |
| 3970 | +  | 
                                                        |
| 3971 | +    public function testResendWelcomeMessageAsSubAdminAndUserIsNotAccessible(): void { | 
                                                        |
| 3972 | + $this->expectException(OCSException::class);  | 
                                                        |
| 3973 | + $this->expectExceptionCode(998);  | 
                                                        |
| 3974 | +  | 
                                                        |
| 3975 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 3976 | + ->disableOriginalConstructor()  | 
                                                        |
| 3977 | + ->getMock();  | 
                                                        |
| 3978 | + $loggedInUser  | 
                                                        |
| 3979 | + ->expects($this->exactly(2))  | 
                                                        |
| 3980 | +            ->method('getUID') | 
                                                        |
| 3981 | +            ->willReturn('subadmin'); | 
                                                        |
| 3982 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 3983 | + ->disableOriginalConstructor()  | 
                                                        |
| 3984 | + ->getMock();  | 
                                                        |
| 3985 | + $this->userSession  | 
                                                        |
| 3986 | + ->expects($this->once())  | 
                                                        |
| 3987 | +            ->method('getUser') | 
                                                        |
| 3988 | + ->willReturn($loggedInUser);  | 
                                                        |
| 3989 | + $this->userManager  | 
                                                        |
| 3990 | + ->expects($this->once())  | 
                                                        |
| 3991 | +            ->method('get') | 
                                                        |
| 3992 | +            ->with('UserToGet') | 
                                                        |
| 3993 | + ->willReturn($targetUser);  | 
                                                        |
| 3994 | + $this->groupManager  | 
                                                        |
| 3995 | + ->expects($this->once())  | 
                                                        |
| 3996 | +            ->method('isAdmin') | 
                                                        |
| 3997 | +            ->with('subadmin') | 
                                                        |
| 3998 | + ->willReturn(false);  | 
                                                        |
| 3999 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 4000 | + ->disableOriginalConstructor()  | 
                                                        |
| 4001 | + ->getMock();  | 
                                                        |
| 4002 | + $subAdminManager  | 
                                                        |
| 4003 | + ->expects($this->once())  | 
                                                        |
| 4004 | +            ->method('isUserAccessible') | 
                                                        |
| 4005 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 4006 | + ->willReturn(false);  | 
                                                        |
| 4007 | + $this->groupManager  | 
                                                        |
| 4008 | + ->expects($this->once())  | 
                                                        |
| 4009 | +            ->method('getSubAdmin') | 
                                                        |
| 4010 | + ->willReturn($subAdminManager);  | 
                                                        |
| 4011 | +  | 
                                                        |
| 4012 | +        $this->api->resendWelcomeMessage('UserToGet'); | 
                                                        |
| 4013 | + }  | 
                                                        |
| 4014 | +  | 
                                                        |
| 4015 | +  | 
                                                        |
| 4016 | +    public function testResendWelcomeMessageNoEmail(): void { | 
                                                        |
| 4017 | + $this->expectException(OCSException::class);  | 
                                                        |
| 4018 | +        $this->expectExceptionMessage('Email address not available'); | 
                                                        |
| 4019 | + $this->expectExceptionCode(101);  | 
                                                        |
| 4020 | +  | 
                                                        |
| 4021 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4022 | + ->disableOriginalConstructor()  | 
                                                        |
| 4023 | + ->getMock();  | 
                                                        |
| 4024 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4025 | + ->disableOriginalConstructor()  | 
                                                        |
| 4026 | + ->getMock();  | 
                                                        |
| 4027 | + $this->userSession  | 
                                                        |
| 4028 | + ->expects($this->once())  | 
                                                        |
| 4029 | +            ->method('getUser') | 
                                                        |
| 4030 | + ->willReturn($loggedInUser);  | 
                                                        |
| 4031 | + $this->userManager  | 
                                                        |
| 4032 | + ->expects($this->once())  | 
                                                        |
| 4033 | +            ->method('get') | 
                                                        |
| 4034 | +            ->with('UserToGet') | 
                                                        |
| 4035 | + ->willReturn($targetUser);  | 
                                                        |
| 4036 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 4037 | + ->disableOriginalConstructor()  | 
                                                        |
| 4038 | + ->getMock();  | 
                                                        |
| 4039 | + $subAdminManager  | 
                                                        |
| 4040 | + ->expects($this->once())  | 
                                                        |
| 4041 | +            ->method('isUserAccessible') | 
                                                        |
| 4042 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 4043 | + ->willReturn(true);  | 
                                                        |
| 4044 | + $this->groupManager  | 
                                                        |
| 4045 | + ->expects($this->once())  | 
                                                        |
| 4046 | +            ->method('getSubAdmin') | 
                                                        |
| 4047 | + ->willReturn($subAdminManager);  | 
                                                        |
| 4048 | + $loggedInUser  | 
                                                        |
| 4049 | + ->expects($this->exactly(2))  | 
                                                        |
| 4050 | +            ->method('getUID') | 
                                                        |
| 4051 | +            ->willReturn('logged-user-id'); | 
                                                        |
| 4052 | + $targetUser  | 
                                                        |
| 4053 | + ->expects($this->once())  | 
                                                        |
| 4054 | +            ->method('getEmailAddress') | 
                                                        |
| 4055 | +            ->willReturn(''); | 
                                                        |
| 4056 | +  | 
                                                        |
| 4057 | +        $this->api->resendWelcomeMessage('UserToGet'); | 
                                                        |
| 4058 | + }  | 
                                                        |
| 4059 | +  | 
                                                        |
| 4060 | +  | 
                                                        |
| 4061 | +    public function testResendWelcomeMessageNullEmail(): void { | 
                                                        |
| 4062 | + $this->expectException(OCSException::class);  | 
                                                        |
| 4063 | +        $this->expectExceptionMessage('Email address not available'); | 
                                                        |
| 4064 | + $this->expectExceptionCode(101);  | 
                                                        |
| 4065 | +  | 
                                                        |
| 4066 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4067 | + ->disableOriginalConstructor()  | 
                                                        |
| 4068 | + ->getMock();  | 
                                                        |
| 4069 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4070 | + ->disableOriginalConstructor()  | 
                                                        |
| 4071 | + ->getMock();  | 
                                                        |
| 4072 | + $this->userSession  | 
                                                        |
| 4073 | + ->expects($this->once())  | 
                                                        |
| 4074 | +            ->method('getUser') | 
                                                        |
| 4075 | + ->willReturn($loggedInUser);  | 
                                                        |
| 4076 | + $this->userManager  | 
                                                        |
| 4077 | + ->expects($this->once())  | 
                                                        |
| 4078 | +            ->method('get') | 
                                                        |
| 4079 | +            ->with('UserToGet') | 
                                                        |
| 4080 | + ->willReturn($targetUser);  | 
                                                        |
| 4081 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 4082 | + ->disableOriginalConstructor()  | 
                                                        |
| 4083 | + ->getMock();  | 
                                                        |
| 4084 | + $subAdminManager  | 
                                                        |
| 4085 | + ->expects($this->once())  | 
                                                        |
| 4086 | +            ->method('isUserAccessible') | 
                                                        |
| 4087 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 4088 | + ->willReturn(true);  | 
                                                        |
| 4089 | + $this->groupManager  | 
                                                        |
| 4090 | + ->expects($this->once())  | 
                                                        |
| 4091 | +            ->method('getSubAdmin') | 
                                                        |
| 4092 | + ->willReturn($subAdminManager);  | 
                                                        |
| 4093 | + $loggedInUser  | 
                                                        |
| 4094 | + ->expects($this->exactly(2))  | 
                                                        |
| 4095 | +            ->method('getUID') | 
                                                        |
| 4096 | +            ->willReturn('logged-user-id'); | 
                                                        |
| 4097 | + $targetUser  | 
                                                        |
| 4098 | + ->expects($this->once())  | 
                                                        |
| 4099 | +            ->method('getEmailAddress') | 
                                                        |
| 4100 | + ->willReturn(null);  | 
                                                        |
| 4101 | +  | 
                                                        |
| 4102 | +        $this->api->resendWelcomeMessage('UserToGet'); | 
                                                        |
| 4103 | + }  | 
                                                        |
| 4104 | +  | 
                                                        |
| 4105 | +    public function testResendWelcomeMessageSuccess(): void { | 
                                                        |
| 4106 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4107 | + ->disableOriginalConstructor()  | 
                                                        |
| 4108 | + ->getMock();  | 
                                                        |
| 4109 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4110 | + ->disableOriginalConstructor()  | 
                                                        |
| 4111 | + ->getMock();  | 
                                                        |
| 4112 | + $loggedInUser  | 
                                                        |
| 4113 | +            ->method('getUID') | 
                                                        |
| 4114 | +            ->willReturn('logged-user-id'); | 
                                                        |
| 4115 | + $targetUser  | 
                                                        |
| 4116 | +            ->method('getUID') | 
                                                        |
| 4117 | +            ->willReturn('user-id'); | 
                                                        |
| 4118 | + $this->userSession  | 
                                                        |
| 4119 | + ->expects($this->once())  | 
                                                        |
| 4120 | +            ->method('getUser') | 
                                                        |
| 4121 | + ->willReturn($loggedInUser);  | 
                                                        |
| 4122 | + $this->userManager  | 
                                                        |
| 4123 | + ->expects($this->once())  | 
                                                        |
| 4124 | +            ->method('get') | 
                                                        |
| 4125 | +            ->with('UserToGet') | 
                                                        |
| 4126 | + ->willReturn($targetUser);  | 
                                                        |
| 4127 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 4128 | + ->disableOriginalConstructor()  | 
                                                        |
| 4129 | + ->getMock();  | 
                                                        |
| 4130 | + $subAdminManager  | 
                                                        |
| 4131 | + ->expects($this->once())  | 
                                                        |
| 4132 | +            ->method('isUserAccessible') | 
                                                        |
| 4133 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 4134 | + ->willReturn(true);  | 
                                                        |
| 4135 | + $this->groupManager  | 
                                                        |
| 4136 | + ->expects($this->once())  | 
                                                        |
| 4137 | +            ->method('getSubAdmin') | 
                                                        |
| 4138 | + ->willReturn($subAdminManager);  | 
                                                        |
| 4139 | + $targetUser  | 
                                                        |
| 4140 | + ->expects($this->once())  | 
                                                        |
| 4141 | +            ->method('getEmailAddress') | 
                                                        |
| 4142 | +            ->willReturn('[email protected]'); | 
                                                        |
| 4143 | + $emailTemplate = $this->createMock(IEMailTemplate::class);  | 
                                                        |
| 4144 | + $this->newUserMailHelper  | 
                                                        |
| 4145 | + ->expects($this->once())  | 
                                                        |
| 4146 | +            ->method('generateTemplate') | 
                                                        |
| 4147 | + ->willReturn($emailTemplate);  | 
                                                        |
| 4148 | + $this->newUserMailHelper  | 
                                                        |
| 4149 | + ->expects($this->once())  | 
                                                        |
| 4150 | +            ->method('sendMail') | 
                                                        |
| 4151 | + ->with($targetUser, $emailTemplate);  | 
                                                        |
| 4152 | +  | 
                                                        |
| 4153 | +        $this->api->resendWelcomeMessage('UserToGet'); | 
                                                        |
| 4154 | + }  | 
                                                        |
| 4155 | +  | 
                                                        |
| 4156 | +    public function testResendWelcomeMessageSuccessWithFallbackLanguage(): void { | 
                                                        |
| 4157 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4158 | + ->disableOriginalConstructor()  | 
                                                        |
| 4159 | + ->getMock();  | 
                                                        |
| 4160 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4161 | + ->disableOriginalConstructor()  | 
                                                        |
| 4162 | + ->getMock();  | 
                                                        |
| 4163 | + $loggedInUser  | 
                                                        |
| 4164 | +            ->method('getUID') | 
                                                        |
| 4165 | +            ->willReturn('logged-user-id'); | 
                                                        |
| 4166 | + $targetUser  | 
                                                        |
| 4167 | +            ->method('getUID') | 
                                                        |
| 4168 | +            ->willReturn('user-id'); | 
                                                        |
| 4169 | + $this->userSession  | 
                                                        |
| 4170 | + ->expects($this->once())  | 
                                                        |
| 4171 | +            ->method('getUser') | 
                                                        |
| 4172 | + ->willReturn($loggedInUser);  | 
                                                        |
| 4173 | + $this->userManager  | 
                                                        |
| 4174 | + ->expects($this->once())  | 
                                                        |
| 4175 | +            ->method('get') | 
                                                        |
| 4176 | +            ->with('UserToGet') | 
                                                        |
| 4177 | + ->willReturn($targetUser);  | 
                                                        |
| 4178 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 4179 | + ->disableOriginalConstructor()  | 
                                                        |
| 4180 | + ->getMock();  | 
                                                        |
| 4181 | + $subAdminManager  | 
                                                        |
| 4182 | + ->expects($this->once())  | 
                                                        |
| 4183 | +            ->method('isUserAccessible') | 
                                                        |
| 4184 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 4185 | + ->willReturn(true);  | 
                                                        |
| 4186 | + $this->groupManager  | 
                                                        |
| 4187 | + ->expects($this->once())  | 
                                                        |
| 4188 | +            ->method('getSubAdmin') | 
                                                        |
| 4189 | + ->willReturn($subAdminManager);  | 
                                                        |
| 4190 | + $targetUser  | 
                                                        |
| 4191 | + ->expects($this->once())  | 
                                                        |
| 4192 | +            ->method('getEmailAddress') | 
                                                        |
| 4193 | +            ->willReturn('[email protected]'); | 
                                                        |
| 4194 | + $emailTemplate = $this->createMock(IEMailTemplate::class);  | 
                                                        |
| 4195 | + $this->newUserMailHelper  | 
                                                        |
| 4196 | + ->expects($this->once())  | 
                                                        |
| 4197 | +            ->method('generateTemplate') | 
                                                        |
| 4198 | + ->willReturn($emailTemplate);  | 
                                                        |
| 4199 | + $this->newUserMailHelper  | 
                                                        |
| 4200 | + ->expects($this->once())  | 
                                                        |
| 4201 | +            ->method('sendMail') | 
                                                        |
| 4202 | + ->with($targetUser, $emailTemplate);  | 
                                                        |
| 4203 | +  | 
                                                        |
| 4204 | +        $this->api->resendWelcomeMessage('UserToGet'); | 
                                                        |
| 4205 | + }  | 
                                                        |
| 4206 | +  | 
                                                        |
| 4207 | +  | 
                                                        |
| 4208 | +    public function testResendWelcomeMessageFailed(): void { | 
                                                        |
| 4209 | + $this->expectException(OCSException::class);  | 
                                                        |
| 4210 | +        $this->expectExceptionMessage('Sending email failed'); | 
                                                        |
| 4211 | + $this->expectExceptionCode(102);  | 
                                                        |
| 4212 | +  | 
                                                        |
| 4213 | + $loggedInUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4214 | + ->disableOriginalConstructor()  | 
                                                        |
| 4215 | + ->getMock();  | 
                                                        |
| 4216 | + $targetUser = $this->getMockBuilder(IUser::class)  | 
                                                        |
| 4217 | + ->disableOriginalConstructor()  | 
                                                        |
| 4218 | + ->getMock();  | 
                                                        |
| 4219 | + $loggedInUser  | 
                                                        |
| 4220 | + ->expects($this->exactly(2))  | 
                                                        |
| 4221 | +            ->method('getUID') | 
                                                        |
| 4222 | +            ->willReturn('logged-user-id'); | 
                                                        |
| 4223 | + $targetUser  | 
                                                        |
| 4224 | +            ->method('getUID') | 
                                                        |
| 4225 | +            ->willReturn('user-id'); | 
                                                        |
| 4226 | + $this->userSession  | 
                                                        |
| 4227 | + ->expects($this->once())  | 
                                                        |
| 4228 | +            ->method('getUser') | 
                                                        |
| 4229 | + ->willReturn($loggedInUser);  | 
                                                        |
| 4230 | + $this->userManager  | 
                                                        |
| 4231 | + ->expects($this->once())  | 
                                                        |
| 4232 | +            ->method('get') | 
                                                        |
| 4233 | +            ->with('UserToGet') | 
                                                        |
| 4234 | + ->willReturn($targetUser);  | 
                                                        |
| 4235 | +        $subAdminManager = $this->getMockBuilder('OC\SubAdmin') | 
                                                        |
| 4236 | + ->disableOriginalConstructor()  | 
                                                        |
| 4237 | + ->getMock();  | 
                                                        |
| 4238 | + $subAdminManager  | 
                                                        |
| 4239 | + ->expects($this->once())  | 
                                                        |
| 4240 | +            ->method('isUserAccessible') | 
                                                        |
| 4241 | + ->with($loggedInUser, $targetUser)  | 
                                                        |
| 4242 | + ->willReturn(true);  | 
                                                        |
| 4243 | + $this->groupManager  | 
                                                        |
| 4244 | + ->expects($this->once())  | 
                                                        |
| 4245 | +            ->method('getSubAdmin') | 
                                                        |
| 4246 | + ->willReturn($subAdminManager);  | 
                                                        |
| 4247 | + $targetUser  | 
                                                        |
| 4248 | + ->expects($this->once())  | 
                                                        |
| 4249 | +            ->method('getEmailAddress') | 
                                                        |
| 4250 | +            ->willReturn('[email protected]'); | 
                                                        |
| 4251 | + $emailTemplate = $this->createMock(IEMailTemplate::class);  | 
                                                        |
| 4252 | + $this->newUserMailHelper  | 
                                                        |
| 4253 | + ->expects($this->once())  | 
                                                        |
| 4254 | +            ->method('generateTemplate') | 
                                                        |
| 4255 | + ->willReturn($emailTemplate);  | 
                                                        |
| 4256 | + $this->newUserMailHelper  | 
                                                        |
| 4257 | + ->expects($this->once())  | 
                                                        |
| 4258 | +            ->method('sendMail') | 
                                                        |
| 4259 | + ->with($targetUser, $emailTemplate)  | 
                                                        |
| 4260 | + ->willThrowException(new \Exception());  | 
                                                        |
| 4261 | +  | 
                                                        |
| 4262 | +        $this->api->resendWelcomeMessage('UserToGet'); | 
                                                        |
| 4263 | + }  | 
                                                        |
| 4264 | +  | 
                                                        |
| 4265 | +  | 
                                                        |
| 4266 | +    public function dataGetEditableFields() { | 
                                                        |
| 4267 | + return [  | 
                                                        |
| 4268 | + [false, true, ISetDisplayNameBackend::class, [  | 
                                                        |
| 4269 | + IAccountManager::PROPERTY_EMAIL,  | 
                                                        |
| 4270 | + IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4271 | + IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4272 | + IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4273 | + IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4274 | + IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4275 | + IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4276 | + IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4277 | + IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4278 | + IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4279 | + IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4280 | + IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4281 | + IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4282 | + ]],  | 
                                                        |
| 4283 | + [true, false, ISetDisplayNameBackend::class, [  | 
                                                        |
| 4284 | + IAccountManager::PROPERTY_DISPLAYNAME,  | 
                                                        |
| 4285 | + IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4286 | + IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4287 | + IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4288 | + IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4289 | + IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4290 | + IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4291 | + IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4292 | + IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4293 | + IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4294 | + IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4295 | + IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4296 | + IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4297 | + ]],  | 
                                                        |
| 4298 | + [true, true, ISetDisplayNameBackend::class, [  | 
                                                        |
| 4299 | + IAccountManager::PROPERTY_DISPLAYNAME,  | 
                                                        |
| 4300 | + IAccountManager::PROPERTY_EMAIL,  | 
                                                        |
| 4301 | + IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4302 | + IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4303 | + IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4304 | + IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4305 | + IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4306 | + IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4307 | + IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4308 | + IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4309 | + IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4310 | + IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4311 | + IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4312 | + IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4313 | + ]],  | 
                                                        |
| 4314 | + [false, false, ISetDisplayNameBackend::class, [  | 
                                                        |
| 4315 | + IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4316 | + IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4317 | + IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4318 | + IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4319 | + IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4320 | + IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4321 | + IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4322 | + IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4323 | + IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4324 | + IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4325 | + IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4326 | + IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4327 | + ]],  | 
                                                        |
| 4328 | + [false, true, UserInterface::class, [  | 
                                                        |
| 4329 | + IAccountManager::PROPERTY_EMAIL,  | 
                                                        |
| 4330 | + IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4331 | + IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4332 | + IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4333 | + IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4334 | + IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4335 | + IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4336 | + IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4337 | + IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4338 | + IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4339 | + IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4340 | + IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4341 | + IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4342 | + ]],  | 
                                                        |
| 4343 | + [true, false, UserInterface::class, [  | 
                                                        |
| 4344 | + IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4345 | + IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4346 | + IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4347 | + IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4348 | + IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4349 | + IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4350 | + IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4351 | + IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4352 | + IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4353 | + IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4354 | + IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4355 | + IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4356 | + ]],  | 
                                                        |
| 4357 | + [true, true, UserInterface::class, [  | 
                                                        |
| 4358 | + IAccountManager::PROPERTY_EMAIL,  | 
                                                        |
| 4359 | + IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4360 | + IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4361 | + IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4362 | + IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4363 | + IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4364 | + IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4365 | + IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4366 | + IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4367 | + IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4368 | + IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4369 | + IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4370 | + IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4371 | + ]],  | 
                                                        |
| 4372 | + [false, false, UserInterface::class, [  | 
                                                        |
| 4373 | + IAccountManager::COLLECTION_EMAIL,  | 
                                                        |
| 4374 | + IAccountManager::PROPERTY_PHONE,  | 
                                                        |
| 4375 | + IAccountManager::PROPERTY_ADDRESS,  | 
                                                        |
| 4376 | + IAccountManager::PROPERTY_WEBSITE,  | 
                                                        |
| 4377 | + IAccountManager::PROPERTY_TWITTER,  | 
                                                        |
| 4378 | + IAccountManager::PROPERTY_FEDIVERSE,  | 
                                                        |
| 4379 | + IAccountManager::PROPERTY_ORGANISATION,  | 
                                                        |
| 4380 | + IAccountManager::PROPERTY_ROLE,  | 
                                                        |
| 4381 | + IAccountManager::PROPERTY_HEADLINE,  | 
                                                        |
| 4382 | + IAccountManager::PROPERTY_BIOGRAPHY,  | 
                                                        |
| 4383 | + IAccountManager::PROPERTY_PROFILE_ENABLED,  | 
                                                        |
| 4384 | + IAccountManager::PROPERTY_PRONOUNS,  | 
                                                        |
| 4385 | + ]],  | 
                                                        |
| 4386 | + ];  | 
                                                        |
| 4387 | + }  | 
                                                        |
| 4388 | +  | 
                                                        |
| 4389 | + /**  | 
                                                        |
| 4390 | + * @dataProvider dataGetEditableFields  | 
                                                        |
| 4391 | + *  | 
                                                        |
| 4392 | + * @param bool $allowedToChangeDisplayName  | 
                                                        |
| 4393 | + * @param string $userBackend  | 
                                                        |
| 4394 | + * @param array $expected  | 
                                                        |
| 4395 | + */  | 
                                                        |
| 4396 | +    public function testGetEditableFields(bool $allowedToChangeDisplayName, bool $allowedToChangeEmail, string $userBackend, array $expected): void { | 
                                                        |
| 4397 | +        $this->config->method('getSystemValue')->willReturnCallback(fn (string $key, mixed $default) => match ($key) { | 
                                                        |
| 4398 | + 'allow_user_to_change_display_name' => $allowedToChangeDisplayName,  | 
                                                        |
| 4399 | + 'allow_user_to_change_email' => $allowedToChangeEmail,  | 
                                                        |
| 4400 | +            default => throw new RuntimeException('Unexpected system config key: ' . $key), | 
                                                        |
| 4401 | + });  | 
                                                        |
| 4402 | +  | 
                                                        |
| 4403 | + $user = $this->createMock(IUser::class);  | 
                                                        |
| 4404 | +        $this->userSession->method('getUser') | 
                                                        |
| 4405 | + ->willReturn($user);  | 
                                                        |
| 4406 | +  | 
                                                        |
| 4407 | + $backend = $this->createMock($userBackend);  | 
                                                        |
| 4408 | +  | 
                                                        |
| 4409 | +        $user->method('getUID') | 
                                                        |
| 4410 | +            ->willReturn('userId'); | 
                                                        |
| 4411 | +        $user->method('getBackend') | 
                                                        |
| 4412 | + ->willReturn($backend);  | 
                                                        |
| 4413 | +  | 
                                                        |
| 4414 | + $expectedResp = new DataResponse($expected);  | 
                                                        |
| 4415 | +        $this->assertEquals($expectedResp, $this->api->getEditableFields('userId')); | 
                                                        |
| 4416 | + }  | 
                                                        |
| 4417 | +  | 
                                                        |
| 4418 | +    private function mockAccount($targetUser, $accountProperties) { | 
                                                        |
| 4419 | + $mockedProperties = [];  | 
                                                        |
| 4420 | +  | 
                                                        |
| 4421 | +        foreach ($accountProperties as $propertyName => $data) { | 
                                                        |
| 4422 | + $mockedProperty = $this->createMock(IAccountProperty::class);  | 
                                                        |
| 4423 | +            $mockedProperty->method('getValue')->willReturn($data['value'] ?? ''); | 
                                                        |
| 4424 | +            $mockedProperty->method('getScope')->willReturn($data['scope'] ?? ''); | 
                                                        |
| 4425 | + $mockedProperties[] = [$propertyName, $mockedProperty];  | 
                                                        |
| 4426 | + }  | 
                                                        |
| 4427 | +  | 
                                                        |
| 4428 | + $account = $this->createMock(IAccount::class);  | 
                                                        |
| 4429 | +        $account->method('getProperty') | 
                                                        |
| 4430 | + ->will($this->returnValueMap($mockedProperties));  | 
                                                        |
| 4431 | +  | 
                                                        |
| 4432 | +        $this->accountManager->expects($this->any())->method('getAccount') | 
                                                        |
| 4433 | + ->with($targetUser)  | 
                                                        |
| 4434 | + ->willReturn($account);  | 
                                                        |
| 4435 | + }  | 
                                                        |
| 4436 | 4436 | }  | 
                                                        
@@ -570,7 +570,7 @@ discard block  | 
                                                    ||
| 570 | 570 | $this->config  | 
                                                        
| 571 | 571 | ->expects($this->any())  | 
                                                        
| 572 | 572 |  			->method('getAppValue') | 
                                                        
| 573 | -			->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 573 | +			->willReturnCallback(function($appid, $key, $default) { | 
                                                        |
| 574 | 574 |  				if ($key === 'newUser.generateUserID') { | 
                                                        
| 575 | 575 | return 'yes';  | 
                                                        
| 576 | 576 | }  | 
                                                        
@@ -608,8 +608,8 @@ discard block  | 
                                                    ||
| 608 | 608 | $this->secureRandom->expects($this->any())  | 
                                                        
| 609 | 609 |  			->method('generate') | 
                                                        
| 610 | 610 | ->with(10)  | 
                                                        
| 611 | -			->willReturnCallback(function () { | 
                                                        |
| 612 | - return (string)rand(100000000, 999999999);  | 
                                                        |
| 611 | +			->willReturnCallback(function() { | 
                                                        |
| 612 | + return (string) rand(100000000, 999999999);  | 
                                                        |
| 613 | 613 | });  | 
                                                        
| 614 | 614 | |
| 615 | 615 | $this->assertTrue(key_exists(  | 
                                                        
@@ -671,7 +671,7 @@ discard block  | 
                                                    ||
| 671 | 671 | $this->config  | 
                                                        
| 672 | 672 | ->expects($this->any())  | 
                                                        
| 673 | 673 |  			->method('getAppValue') | 
                                                        
| 674 | -			->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 674 | +			->willReturnCallback(function($appid, $key, $default) { | 
                                                        |
| 675 | 675 |  				if ($key === 'newUser.generateUserID') { | 
                                                        
| 676 | 676 | return 'yes';  | 
                                                        
| 677 | 677 | }  | 
                                                        
@@ -714,7 +714,7 @@ discard block  | 
                                                    ||
| 714 | 714 | $this->config  | 
                                                        
| 715 | 715 | ->expects($this->any())  | 
                                                        
| 716 | 716 |  			->method('getAppValue') | 
                                                        
| 717 | -			->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 717 | +			->willReturnCallback(function($appid, $key, $default) { | 
                                                        |
| 718 | 718 |  				if ($key === 'newUser.requireEmail') { | 
                                                        
| 719 | 719 | return 'yes';  | 
                                                        
| 720 | 720 | }  | 
                                                        
@@ -2020,7 +2020,7 @@ discard block  | 
                                                    ||
| 2020 | 2020 |  			->method('updateAccount') | 
                                                        
| 2021 | 2021 | ->with($accountMock);  | 
                                                        
| 2022 | 2022 | |
| 2023 | -		$this->assertEquals([], $this->api->editUser('UserToEdit', $propertyName . 'Scope', $newScope)->getData()); | 
                                                        |
| 2023 | +		$this->assertEquals([], $this->api->editUser('UserToEdit', $propertyName.'Scope', $newScope)->getData()); | 
                                                        |
| 2024 | 2024 | }  | 
                                                        
| 2025 | 2025 | |
| 2026 | 2026 |  	public function testEditUserRegularUserSelfEditChangePassword(): void { | 
                                                        
@@ -2108,7 +2108,7 @@ discard block  | 
                                                    ||
| 2108 | 2108 | $this->config  | 
                                                        
| 2109 | 2109 | ->expects($this->once())  | 
                                                        
| 2110 | 2110 |  			->method('getAppValue') | 
                                                        
| 2111 | -			->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 2111 | +			->willReturnCallback(function($appid, $key, $default) { | 
                                                        |
| 2112 | 2112 |  				if ($key === 'max_quota') { | 
                                                        
| 2113 | 2113 | return '-1';  | 
                                                        
| 2114 | 2114 | }  | 
                                                        
@@ -2196,7 +2196,7 @@ discard block  | 
                                                    ||
| 2196 | 2196 | $this->config  | 
                                                        
| 2197 | 2197 | ->expects($this->once())  | 
                                                        
| 2198 | 2198 |  			->method('getAppValue') | 
                                                        
| 2199 | -			->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 2199 | +			->willReturnCallback(function($appid, $key, $default) { | 
                                                        |
| 2200 | 2200 |  				if ($key === 'max_quota') { | 
                                                        
| 2201 | 2201 | return '-1';  | 
                                                        
| 2202 | 2202 | }  | 
                                                        
@@ -2453,7 +2453,7 @@ discard block  | 
                                                    ||
| 2453 | 2453 | $this->config  | 
                                                        
| 2454 | 2454 | ->expects($this->once())  | 
                                                        
| 2455 | 2455 |  			->method('getAppValue') | 
                                                        
| 2456 | -			->willReturnCallback(function ($appid, $key, $default) { | 
                                                        |
| 2456 | +			->willReturnCallback(function($appid, $key, $default) { | 
                                                        |
| 2457 | 2457 |  				if ($key === 'max_quota') { | 
                                                        
| 2458 | 2458 | return '-1';  | 
                                                        
| 2459 | 2459 | }  | 
                                                        
@@ -4397,7 +4397,7 @@ discard block  | 
                                                    ||
| 4397 | 4397 |  		$this->config->method('getSystemValue')->willReturnCallback(fn (string $key, mixed $default) => match ($key) { | 
                                                        
| 4398 | 4398 | 'allow_user_to_change_display_name' => $allowedToChangeDisplayName,  | 
                                                        
| 4399 | 4399 | 'allow_user_to_change_email' => $allowedToChangeEmail,  | 
                                                        
| 4400 | -			default => throw new RuntimeException('Unexpected system config key: ' . $key), | 
                                                        |
| 4400 | +			default => throw new RuntimeException('Unexpected system config key: '.$key), | 
                                                        |
| 4401 | 4401 | });  | 
                                                        
| 4402 | 4402 | |
| 4403 | 4403 | $user = $this->createMock(IUser::class);  | 
                                                        
@@ -58,1728 +58,1728 @@  | 
                                                    ||
| 58 | 58 | */  | 
                                                        
| 59 | 59 |  class UsersController extends AUserDataOCSController { | 
                                                        
| 60 | 60 | |
| 61 | - private IL10N $l10n;  | 
                                                        |
| 62 | -  | 
                                                        |
| 63 | - public function __construct(  | 
                                                        |
| 64 | - string $appName,  | 
                                                        |
| 65 | - IRequest $request,  | 
                                                        |
| 66 | - IUserManager $userManager,  | 
                                                        |
| 67 | - IConfig $config,  | 
                                                        |
| 68 | - IGroupManager $groupManager,  | 
                                                        |
| 69 | - IUserSession $userSession,  | 
                                                        |
| 70 | - IAccountManager $accountManager,  | 
                                                        |
| 71 | - ISubAdmin $subAdminManager,  | 
                                                        |
| 72 | - IFactory $l10nFactory,  | 
                                                        |
| 73 | - IRootFolder $rootFolder,  | 
                                                        |
| 74 | - private IURLGenerator $urlGenerator,  | 
                                                        |
| 75 | - private LoggerInterface $logger,  | 
                                                        |
| 76 | - private NewUserMailHelper $newUserMailHelper,  | 
                                                        |
| 77 | - private ISecureRandom $secureRandom,  | 
                                                        |
| 78 | - private RemoteWipe $remoteWipe,  | 
                                                        |
| 79 | - private KnownUserService $knownUserService,  | 
                                                        |
| 80 | - private IEventDispatcher $eventDispatcher,  | 
                                                        |
| 81 | - private IPhoneNumberUtil $phoneNumberUtil,  | 
                                                        |
| 82 | -	) { | 
                                                        |
| 83 | - parent::__construct(  | 
                                                        |
| 84 | - $appName,  | 
                                                        |
| 85 | - $request,  | 
                                                        |
| 86 | - $userManager,  | 
                                                        |
| 87 | - $config,  | 
                                                        |
| 88 | - $groupManager,  | 
                                                        |
| 89 | - $userSession,  | 
                                                        |
| 90 | - $accountManager,  | 
                                                        |
| 91 | - $subAdminManager,  | 
                                                        |
| 92 | - $l10nFactory,  | 
                                                        |
| 93 | - $rootFolder,  | 
                                                        |
| 94 | - );  | 
                                                        |
| 95 | -  | 
                                                        |
| 96 | - $this->l10n = $l10nFactory->get($appName);  | 
                                                        |
| 97 | - }  | 
                                                        |
| 98 | -  | 
                                                        |
| 99 | - /**  | 
                                                        |
| 100 | - * Get a list of users  | 
                                                        |
| 101 | - *  | 
                                                        |
| 102 | - * @param string $search Text to search for  | 
                                                        |
| 103 | - * @param int|null $limit Limit the amount of groups returned  | 
                                                        |
| 104 | - * @param int $offset Offset for searching for groups  | 
                                                        |
| 105 | -	 * @return DataResponse<Http::STATUS_OK, array{users: list<string>}, array{}> | 
                                                        |
| 106 | - *  | 
                                                        |
| 107 | - * 200: Users returned  | 
                                                        |
| 108 | - */  | 
                                                        |
| 109 | - #[NoAdminRequired]  | 
                                                        |
| 110 | -	public function getUsers(string $search = '', ?int $limit = null, int $offset = 0): DataResponse { | 
                                                        |
| 111 | - $user = $this->userSession->getUser();  | 
                                                        |
| 112 | - $users = [];  | 
                                                        |
| 113 | -  | 
                                                        |
| 114 | - // Admin? Or SubAdmin?  | 
                                                        |
| 115 | - $uid = $user->getUID();  | 
                                                        |
| 116 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 117 | - $isAdmin = $this->groupManager->isAdmin($uid);  | 
                                                        |
| 118 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($uid);  | 
                                                        |
| 119 | -		if ($isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 120 | - $users = $this->userManager->search($search, $limit, $offset);  | 
                                                        |
| 121 | -		} elseif ($subAdminManager->isSubAdmin($user)) { | 
                                                        |
| 122 | - $subAdminOfGroups = $subAdminManager->getSubAdminsGroups($user);  | 
                                                        |
| 123 | -			foreach ($subAdminOfGroups as $key => $group) { | 
                                                        |
| 124 | - $subAdminOfGroups[$key] = $group->getGID();  | 
                                                        |
| 125 | - }  | 
                                                        |
| 126 | -  | 
                                                        |
| 127 | - $users = [];  | 
                                                        |
| 128 | -			foreach ($subAdminOfGroups as $group) { | 
                                                        |
| 129 | - $users = array_merge($users, $this->groupManager->displayNamesInGroup($group, $search, $limit, $offset));  | 
                                                        |
| 130 | - }  | 
                                                        |
| 131 | - }  | 
                                                        |
| 132 | -  | 
                                                        |
| 133 | - /** @var list<string> $users */  | 
                                                        |
| 134 | - $users = array_keys($users);  | 
                                                        |
| 135 | -  | 
                                                        |
| 136 | - return new DataResponse([  | 
                                                        |
| 137 | - 'users' => $users  | 
                                                        |
| 138 | - ]);  | 
                                                        |
| 139 | - }  | 
                                                        |
| 140 | -  | 
                                                        |
| 141 | - /**  | 
                                                        |
| 142 | - * Get a list of users and their details  | 
                                                        |
| 143 | - *  | 
                                                        |
| 144 | - * @param string $search Text to search for  | 
                                                        |
| 145 | - * @param int|null $limit Limit the amount of groups returned  | 
                                                        |
| 146 | - * @param int $offset Offset for searching for groups  | 
                                                        |
| 147 | -	 * @return DataResponse<Http::STATUS_OK, array{users: array<string, Provisioning_APIUserDetails|array{id: string}>}, array{}> | 
                                                        |
| 148 | - *  | 
                                                        |
| 149 | - * 200: Users details returned  | 
                                                        |
| 150 | - */  | 
                                                        |
| 151 | - #[NoAdminRequired]  | 
                                                        |
| 152 | -	public function getUsersDetails(string $search = '', ?int $limit = null, int $offset = 0): DataResponse { | 
                                                        |
| 153 | - $currentUser = $this->userSession->getUser();  | 
                                                        |
| 154 | - $users = [];  | 
                                                        |
| 155 | -  | 
                                                        |
| 156 | - // Admin? Or SubAdmin?  | 
                                                        |
| 157 | - $uid = $currentUser->getUID();  | 
                                                        |
| 158 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 159 | - $isAdmin = $this->groupManager->isAdmin($uid);  | 
                                                        |
| 160 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($uid);  | 
                                                        |
| 161 | -		if ($isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 162 | - $users = $this->userManager->search($search, $limit, $offset);  | 
                                                        |
| 163 | - $users = array_keys($users);  | 
                                                        |
| 164 | -		} elseif ($subAdminManager->isSubAdmin($currentUser)) { | 
                                                        |
| 165 | - $subAdminOfGroups = $subAdminManager->getSubAdminsGroups($currentUser);  | 
                                                        |
| 166 | -			foreach ($subAdminOfGroups as $key => $group) { | 
                                                        |
| 167 | - $subAdminOfGroups[$key] = $group->getGID();  | 
                                                        |
| 168 | - }  | 
                                                        |
| 169 | -  | 
                                                        |
| 170 | - $users = [];  | 
                                                        |
| 171 | -			foreach ($subAdminOfGroups as $group) { | 
                                                        |
| 172 | - $users[] = array_keys($this->groupManager->displayNamesInGroup($group, $search, $limit, $offset));  | 
                                                        |
| 173 | - }  | 
                                                        |
| 174 | - $users = array_merge(...$users);  | 
                                                        |
| 175 | - }  | 
                                                        |
| 176 | -  | 
                                                        |
| 177 | - $usersDetails = [];  | 
                                                        |
| 178 | -		foreach ($users as $userId) { | 
                                                        |
| 179 | - $userId = (string)$userId;  | 
                                                        |
| 180 | -			try { | 
                                                        |
| 181 | - $userData = $this->getUserData($userId);  | 
                                                        |
| 182 | -			} catch (OCSNotFoundException $e) { | 
                                                        |
| 183 | - // We still want to return all other accounts, but this one was removed from the backends  | 
                                                        |
| 184 | - // yet they are still in our database. Might be a LDAP remnant.  | 
                                                        |
| 185 | - $userData = null;  | 
                                                        |
| 186 | -				$this->logger->warning('Found one enabled account that is removed from its backend, but still exists in Nextcloud database', ['accountId' => $userId]); | 
                                                        |
| 187 | - }  | 
                                                        |
| 188 | - // Do not insert empty entry  | 
                                                        |
| 189 | -			if ($userData !== null) { | 
                                                        |
| 190 | - $usersDetails[$userId] = $userData;  | 
                                                        |
| 191 | -			} else { | 
                                                        |
| 192 | - // Logged user does not have permissions to see this user  | 
                                                        |
| 193 | - // only showing its id  | 
                                                        |
| 194 | - $usersDetails[$userId] = ['id' => $userId];  | 
                                                        |
| 195 | - }  | 
                                                        |
| 196 | - }  | 
                                                        |
| 197 | -  | 
                                                        |
| 198 | - return new DataResponse([  | 
                                                        |
| 199 | - 'users' => $usersDetails  | 
                                                        |
| 200 | - ]);  | 
                                                        |
| 201 | - }  | 
                                                        |
| 202 | -  | 
                                                        |
| 203 | - /**  | 
                                                        |
| 204 | - * Get the list of disabled users and their details  | 
                                                        |
| 205 | - *  | 
                                                        |
| 206 | - * @param string $search Text to search for  | 
                                                        |
| 207 | - * @param ?int $limit Limit the amount of users returned  | 
                                                        |
| 208 | - * @param int $offset Offset  | 
                                                        |
| 209 | -	 * @return DataResponse<Http::STATUS_OK, array{users: array<string, Provisioning_APIUserDetails|array{id: string}>}, array{}> | 
                                                        |
| 210 | - *  | 
                                                        |
| 211 | - * 200: Disabled users details returned  | 
                                                        |
| 212 | - */  | 
                                                        |
| 213 | - #[NoAdminRequired]  | 
                                                        |
| 214 | -	public function getDisabledUsersDetails(string $search = '', ?int $limit = null, int $offset = 0): DataResponse { | 
                                                        |
| 215 | - $currentUser = $this->userSession->getUser();  | 
                                                        |
| 216 | -		if ($currentUser === null) { | 
                                                        |
| 217 | - return new DataResponse(['users' => []]);  | 
                                                        |
| 218 | - }  | 
                                                        |
| 219 | -		if ($limit !== null && $limit < 0) { | 
                                                        |
| 220 | -			throw new InvalidArgumentException("Invalid limit value: $limit"); | 
                                                        |
| 221 | - }  | 
                                                        |
| 222 | -		if ($offset < 0) { | 
                                                        |
| 223 | -			throw new InvalidArgumentException("Invalid offset value: $offset"); | 
                                                        |
| 224 | - }  | 
                                                        |
| 225 | -  | 
                                                        |
| 226 | - $users = [];  | 
                                                        |
| 227 | -  | 
                                                        |
| 228 | - // Admin? Or SubAdmin?  | 
                                                        |
| 229 | - $uid = $currentUser->getUID();  | 
                                                        |
| 230 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 231 | - $isAdmin = $this->groupManager->isAdmin($uid);  | 
                                                        |
| 232 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($uid);  | 
                                                        |
| 233 | -		if ($isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 234 | - $users = $this->userManager->getDisabledUsers($limit, $offset, $search);  | 
                                                        |
| 235 | - $users = array_map(fn (IUser $user): string => $user->getUID(), $users);  | 
                                                        |
| 236 | -		} elseif ($subAdminManager->isSubAdmin($currentUser)) { | 
                                                        |
| 237 | - $subAdminOfGroups = $subAdminManager->getSubAdminsGroups($currentUser);  | 
                                                        |
| 238 | -  | 
                                                        |
| 239 | - $users = [];  | 
                                                        |
| 240 | - /* We have to handle offset ourselve for correctness */  | 
                                                        |
| 241 | - $tempLimit = ($limit === null ? null : $limit + $offset);  | 
                                                        |
| 242 | -			foreach ($subAdminOfGroups as $group) { | 
                                                        |
| 243 | - $users = array_unique(array_merge(  | 
                                                        |
| 244 | - $users,  | 
                                                        |
| 245 | - array_map(  | 
                                                        |
| 246 | - fn (IUser $user): string => $user->getUID(),  | 
                                                        |
| 247 | - array_filter(  | 
                                                        |
| 248 | - $group->searchUsers($search),  | 
                                                        |
| 249 | - fn (IUser $user): bool => !$user->isEnabled()  | 
                                                        |
| 250 | - )  | 
                                                        |
| 251 | - )  | 
                                                        |
| 252 | - ));  | 
                                                        |
| 253 | -				if (($tempLimit !== null) && (count($users) >= $tempLimit)) { | 
                                                        |
| 254 | - break;  | 
                                                        |
| 255 | - }  | 
                                                        |
| 256 | - }  | 
                                                        |
| 257 | - $users = array_slice($users, $offset, $limit);  | 
                                                        |
| 258 | - }  | 
                                                        |
| 259 | -  | 
                                                        |
| 260 | - $usersDetails = [];  | 
                                                        |
| 261 | -		foreach ($users as $userId) { | 
                                                        |
| 262 | -			try { | 
                                                        |
| 263 | - $userData = $this->getUserData($userId);  | 
                                                        |
| 264 | -			} catch (OCSNotFoundException $e) { | 
                                                        |
| 265 | - // We still want to return all other accounts, but this one was removed from the backends  | 
                                                        |
| 266 | - // yet they are still in our database. Might be a LDAP remnant.  | 
                                                        |
| 267 | - $userData = null;  | 
                                                        |
| 268 | -				$this->logger->warning('Found one disabled account that was removed from its backend, but still exists in Nextcloud database', ['accountId' => $userId]); | 
                                                        |
| 269 | - }  | 
                                                        |
| 270 | - // Do not insert empty entry  | 
                                                        |
| 271 | -			if ($userData !== null) { | 
                                                        |
| 272 | - $usersDetails[$userId] = $userData;  | 
                                                        |
| 273 | -			} else { | 
                                                        |
| 274 | - // Currently logged in user does not have permissions to see this user  | 
                                                        |
| 275 | - // only showing its id  | 
                                                        |
| 276 | - $usersDetails[$userId] = ['id' => $userId];  | 
                                                        |
| 277 | - }  | 
                                                        |
| 278 | - }  | 
                                                        |
| 279 | -  | 
                                                        |
| 280 | - return new DataResponse([  | 
                                                        |
| 281 | - 'users' => $usersDetails  | 
                                                        |
| 282 | - ]);  | 
                                                        |
| 283 | - }  | 
                                                        |
| 284 | -  | 
                                                        |
| 285 | - /**  | 
                                                        |
| 286 | - * Gets the list of users sorted by lastLogin, from most recent to least recent  | 
                                                        |
| 287 | - *  | 
                                                        |
| 288 | - * @param string $search Text to search for  | 
                                                        |
| 289 | - * @param ?int $limit Limit the amount of users returned  | 
                                                        |
| 290 | - * @param int $offset Offset  | 
                                                        |
| 291 | -	 * @return DataResponse<Http::STATUS_OK, array{users: array<string, Provisioning_APIUserDetails|array{id: string}>}, array{}> | 
                                                        |
| 292 | - *  | 
                                                        |
| 293 | - * 200: Users details returned based on last logged in information  | 
                                                        |
| 294 | - */  | 
                                                        |
| 295 | - #[AuthorizedAdminSetting(settings:Users::class)]  | 
                                                        |
| 296 | - public function getLastLoggedInUsers(string $search = '',  | 
                                                        |
| 297 | - ?int $limit = null,  | 
                                                        |
| 298 | - int $offset = 0,  | 
                                                        |
| 299 | -	): DataResponse { | 
                                                        |
| 300 | - $currentUser = $this->userSession->getUser();  | 
                                                        |
| 301 | -		if ($currentUser === null) { | 
                                                        |
| 302 | - return new DataResponse(['users' => []]);  | 
                                                        |
| 303 | - }  | 
                                                        |
| 304 | -		if ($limit !== null && $limit < 0) { | 
                                                        |
| 305 | -			throw new InvalidArgumentException("Invalid limit value: $limit"); | 
                                                        |
| 306 | - }  | 
                                                        |
| 307 | -		if ($offset < 0) { | 
                                                        |
| 308 | -			throw new InvalidArgumentException("Invalid offset value: $offset"); | 
                                                        |
| 309 | - }  | 
                                                        |
| 310 | -  | 
                                                        |
| 311 | - $users = [];  | 
                                                        |
| 312 | -  | 
                                                        |
| 313 | - // For Admin alone user sorting based on lastLogin. For sub admin and groups this is not supported  | 
                                                        |
| 314 | - $users = $this->userManager->getLastLoggedInUsers($limit, $offset, $search);  | 
                                                        |
| 315 | -  | 
                                                        |
| 316 | - $usersDetails = [];  | 
                                                        |
| 317 | -		foreach ($users as $userId) { | 
                                                        |
| 318 | -			try { | 
                                                        |
| 319 | - $userData = $this->getUserData($userId);  | 
                                                        |
| 320 | -			} catch (OCSNotFoundException $e) { | 
                                                        |
| 321 | - // We still want to return all other accounts, but this one was removed from the backends  | 
                                                        |
| 322 | - // yet they are still in our database. Might be a LDAP remnant.  | 
                                                        |
| 323 | - $userData = null;  | 
                                                        |
| 324 | -				$this->logger->warning('Found one account that was removed from its backend, but still exists in Nextcloud database', ['accountId' => $userId]); | 
                                                        |
| 325 | - }  | 
                                                        |
| 326 | - // Do not insert empty entry  | 
                                                        |
| 327 | -			if ($userData !== null) { | 
                                                        |
| 328 | - $usersDetails[$userId] = $userData;  | 
                                                        |
| 329 | -			} else { | 
                                                        |
| 330 | - // Currently logged-in user does not have permissions to see this user  | 
                                                        |
| 331 | - // only showing its id  | 
                                                        |
| 332 | - $usersDetails[$userId] = ['id' => $userId];  | 
                                                        |
| 333 | - }  | 
                                                        |
| 334 | - }  | 
                                                        |
| 335 | -  | 
                                                        |
| 336 | - return new DataResponse([  | 
                                                        |
| 337 | - 'users' => $usersDetails  | 
                                                        |
| 338 | - ]);  | 
                                                        |
| 339 | - }  | 
                                                        |
| 340 | -  | 
                                                        |
| 341 | -  | 
                                                        |
| 342 | -  | 
                                                        |
| 343 | - /**  | 
                                                        |
| 344 | - * @NoSubAdminRequired  | 
                                                        |
| 345 | - *  | 
                                                        |
| 346 | - * Search users by their phone numbers  | 
                                                        |
| 347 | - *  | 
                                                        |
| 348 | - * @param string $location Location of the phone number (for country code)  | 
                                                        |
| 349 | - * @param array<string, list<string>> $search Phone numbers to search for  | 
                                                        |
| 350 | -	 * @return DataResponse<Http::STATUS_OK, array<string, string>, array{}>|DataResponse<Http::STATUS_BAD_REQUEST, list<empty>, array{}> | 
                                                        |
| 351 | - *  | 
                                                        |
| 352 | - * 200: Users returned  | 
                                                        |
| 353 | - * 400: Invalid location  | 
                                                        |
| 354 | - */  | 
                                                        |
| 355 | - #[NoAdminRequired]  | 
                                                        |
| 356 | -	public function searchByPhoneNumbers(string $location, array $search): DataResponse { | 
                                                        |
| 357 | -		if ($this->phoneNumberUtil->getCountryCodeForRegion($location) === null) { | 
                                                        |
| 358 | - // Not a valid region code  | 
                                                        |
| 359 | - return new DataResponse([], Http::STATUS_BAD_REQUEST);  | 
                                                        |
| 360 | - }  | 
                                                        |
| 361 | -  | 
                                                        |
| 362 | - /** @var IUser $user */  | 
                                                        |
| 363 | - $user = $this->userSession->getUser();  | 
                                                        |
| 364 | - $knownTo = $user->getUID();  | 
                                                        |
| 365 | -		$defaultPhoneRegion = $this->config->getSystemValueString('default_phone_region'); | 
                                                        |
| 366 | -  | 
                                                        |
| 367 | - $normalizedNumberToKey = [];  | 
                                                        |
| 368 | -		foreach ($search as $key => $phoneNumbers) { | 
                                                        |
| 369 | -			foreach ($phoneNumbers as $phone) { | 
                                                        |
| 370 | - $normalizedNumber = $this->phoneNumberUtil->convertToStandardFormat($phone, $location);  | 
                                                        |
| 371 | -				if ($normalizedNumber !== null) { | 
                                                        |
| 372 | - $normalizedNumberToKey[$normalizedNumber] = (string)$key;  | 
                                                        |
| 373 | - }  | 
                                                        |
| 374 | -  | 
                                                        |
| 375 | -				if ($defaultPhoneRegion !== '' && $defaultPhoneRegion !== $location && str_starts_with($phone, '0')) { | 
                                                        |
| 376 | - // If the number has a leading zero (no country code),  | 
                                                        |
| 377 | - // we also check the default phone region of the instance,  | 
                                                        |
| 378 | - // when it's different to the user's given region.  | 
                                                        |
| 379 | - $normalizedNumber = $this->phoneNumberUtil->convertToStandardFormat($phone, $defaultPhoneRegion);  | 
                                                        |
| 380 | -					if ($normalizedNumber !== null) { | 
                                                        |
| 381 | - $normalizedNumberToKey[$normalizedNumber] = (string)$key;  | 
                                                        |
| 382 | - }  | 
                                                        |
| 383 | - }  | 
                                                        |
| 384 | - }  | 
                                                        |
| 385 | - }  | 
                                                        |
| 386 | -  | 
                                                        |
| 387 | - $phoneNumbers = array_keys($normalizedNumberToKey);  | 
                                                        |
| 388 | -  | 
                                                        |
| 389 | -		if (empty($phoneNumbers)) { | 
                                                        |
| 390 | - return new DataResponse();  | 
                                                        |
| 391 | - }  | 
                                                        |
| 392 | -  | 
                                                        |
| 393 | - // Cleanup all previous entries and only allow new matches  | 
                                                        |
| 394 | - $this->knownUserService->deleteKnownTo($knownTo);  | 
                                                        |
| 395 | -  | 
                                                        |
| 396 | - $userMatches = $this->accountManager->searchUsers(IAccountManager::PROPERTY_PHONE, $phoneNumbers);  | 
                                                        |
| 397 | -  | 
                                                        |
| 398 | -		if (empty($userMatches)) { | 
                                                        |
| 399 | - return new DataResponse();  | 
                                                        |
| 400 | - }  | 
                                                        |
| 401 | -  | 
                                                        |
| 402 | -		$cloudUrl = rtrim($this->urlGenerator->getAbsoluteURL('/'), '/'); | 
                                                        |
| 403 | -		if (strpos($cloudUrl, 'http://') === 0) { | 
                                                        |
| 404 | -			$cloudUrl = substr($cloudUrl, strlen('http://')); | 
                                                        |
| 405 | -		} elseif (strpos($cloudUrl, 'https://') === 0) { | 
                                                        |
| 406 | -			$cloudUrl = substr($cloudUrl, strlen('https://')); | 
                                                        |
| 407 | - }  | 
                                                        |
| 408 | -  | 
                                                        |
| 409 | - $matches = [];  | 
                                                        |
| 410 | -		foreach ($userMatches as $phone => $userId) { | 
                                                        |
| 411 | - // Not using the ICloudIdManager as that would run a search for each contact to find the display name in the address book  | 
                                                        |
| 412 | - $matches[$normalizedNumberToKey[$phone]] = $userId . '@' . $cloudUrl;  | 
                                                        |
| 413 | - $this->knownUserService->storeIsKnownToUser($knownTo, $userId);  | 
                                                        |
| 414 | - }  | 
                                                        |
| 415 | -  | 
                                                        |
| 416 | - return new DataResponse($matches);  | 
                                                        |
| 417 | - }  | 
                                                        |
| 418 | -  | 
                                                        |
| 419 | - /**  | 
                                                        |
| 420 | - * @throws OCSException  | 
                                                        |
| 421 | - */  | 
                                                        |
| 422 | -	private function createNewUserId(): string { | 
                                                        |
| 423 | - $attempts = 0;  | 
                                                        |
| 424 | -		do { | 
                                                        |
| 425 | - $uidCandidate = $this->secureRandom->generate(10, ISecureRandom::CHAR_HUMAN_READABLE);  | 
                                                        |
| 426 | -			if (!$this->userManager->userExists($uidCandidate)) { | 
                                                        |
| 427 | - return $uidCandidate;  | 
                                                        |
| 428 | - }  | 
                                                        |
| 429 | - $attempts++;  | 
                                                        |
| 430 | - } while ($attempts < 10);  | 
                                                        |
| 431 | -		throw new OCSException($this->l10n->t('Could not create non-existing user ID'), 111); | 
                                                        |
| 432 | - }  | 
                                                        |
| 433 | -  | 
                                                        |
| 434 | - /**  | 
                                                        |
| 435 | - * Create a new user  | 
                                                        |
| 436 | - *  | 
                                                        |
| 437 | - * @param string $userid ID of the user  | 
                                                        |
| 438 | - * @param string $password Password of the user  | 
                                                        |
| 439 | - * @param string $displayName Display name of the user  | 
                                                        |
| 440 | - * @param string $email Email of the user  | 
                                                        |
| 441 | - * @param list<string> $groups Groups of the user  | 
                                                        |
| 442 | - * @param list<string> $subadmin Groups where the user is subadmin  | 
                                                        |
| 443 | - * @param string $quota Quota of the user  | 
                                                        |
| 444 | - * @param string $language Language of the user  | 
                                                        |
| 445 | - * @param ?string $manager Manager of the user  | 
                                                        |
| 446 | -	 * @return DataResponse<Http::STATUS_OK, array{id: string}, array{}> | 
                                                        |
| 447 | - * @throws OCSException  | 
                                                        |
| 448 | - * @throws OCSForbiddenException Missing permissions to make user subadmin  | 
                                                        |
| 449 | - *  | 
                                                        |
| 450 | - * 200: User added successfully  | 
                                                        |
| 451 | - */  | 
                                                        |
| 452 | - #[PasswordConfirmationRequired]  | 
                                                        |
| 453 | - #[NoAdminRequired]  | 
                                                        |
| 454 | - public function addUser(  | 
                                                        |
| 455 | - string $userid,  | 
                                                        |
| 456 | - string $password = '',  | 
                                                        |
| 457 | - string $displayName = '',  | 
                                                        |
| 458 | - string $email = '',  | 
                                                        |
| 459 | - array $groups = [],  | 
                                                        |
| 460 | - array $subadmin = [],  | 
                                                        |
| 461 | - string $quota = '',  | 
                                                        |
| 462 | - string $language = '',  | 
                                                        |
| 463 | - ?string $manager = null,  | 
                                                        |
| 464 | -	): DataResponse { | 
                                                        |
| 465 | - $user = $this->userSession->getUser();  | 
                                                        |
| 466 | - $isAdmin = $this->groupManager->isAdmin($user->getUID());  | 
                                                        |
| 467 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($user->getUID());  | 
                                                        |
| 468 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 469 | -  | 
                                                        |
| 470 | -		if (empty($userid) && $this->config->getAppValue('core', 'newUser.generateUserID', 'no') === 'yes') { | 
                                                        |
| 471 | - $userid = $this->createNewUserId();  | 
                                                        |
| 472 | - }  | 
                                                        |
| 473 | -  | 
                                                        |
| 474 | -		if ($this->userManager->userExists($userid)) { | 
                                                        |
| 475 | -			$this->logger->error('Failed addUser attempt: User already exists.', ['app' => 'ocs_api']); | 
                                                        |
| 476 | -			throw new OCSException($this->l10n->t('User already exists'), 102); | 
                                                        |
| 477 | - }  | 
                                                        |
| 478 | -  | 
                                                        |
| 479 | -		if ($groups !== []) { | 
                                                        |
| 480 | -			foreach ($groups as $group) { | 
                                                        |
| 481 | -				if (!$this->groupManager->groupExists($group)) { | 
                                                        |
| 482 | -					throw new OCSException($this->l10n->t('Group %1$s does not exist', [$group]), 104); | 
                                                        |
| 483 | - }  | 
                                                        |
| 484 | -				if (!$isAdmin && !($isDelegatedAdmin && $group !== 'admin') && !$subAdminManager->isSubAdminOfGroup($user, $this->groupManager->get($group))) { | 
                                                        |
| 485 | -					throw new OCSException($this->l10n->t('Insufficient privileges for group %1$s', [$group]), 105); | 
                                                        |
| 486 | - }  | 
                                                        |
| 487 | - }  | 
                                                        |
| 488 | -		} else { | 
                                                        |
| 489 | -			if (!$isAdmin && !$isDelegatedAdmin) { | 
                                                        |
| 490 | -				throw new OCSException($this->l10n->t('No group specified (required for sub-admins)'), 106); | 
                                                        |
| 491 | - }  | 
                                                        |
| 492 | - }  | 
                                                        |
| 493 | -  | 
                                                        |
| 494 | - $subadminGroups = [];  | 
                                                        |
| 495 | -		if ($subadmin !== []) { | 
                                                        |
| 496 | -			foreach ($subadmin as $groupid) { | 
                                                        |
| 497 | - $group = $this->groupManager->get($groupid);  | 
                                                        |
| 498 | - // Check if group exists  | 
                                                        |
| 499 | -				if ($group === null) { | 
                                                        |
| 500 | -					throw new OCSException($this->l10n->t('Sub-admin group does not exist'), 109); | 
                                                        |
| 501 | - }  | 
                                                        |
| 502 | - // Check if trying to make subadmin of admin group  | 
                                                        |
| 503 | -				if ($group->getGID() === 'admin') { | 
                                                        |
| 504 | -					throw new OCSException($this->l10n->t('Cannot create sub-admins for admin group'), 103); | 
                                                        |
| 505 | - }  | 
                                                        |
| 506 | - // Check if has permission to promote subadmins  | 
                                                        |
| 507 | -				if (!$subAdminManager->isSubAdminOfGroup($user, $group) && !$isAdmin && !$isDelegatedAdmin) { | 
                                                        |
| 508 | -					throw new OCSForbiddenException($this->l10n->t('No permissions to promote sub-admins')); | 
                                                        |
| 509 | - }  | 
                                                        |
| 510 | - $subadminGroups[] = $group;  | 
                                                        |
| 511 | - }  | 
                                                        |
| 512 | - }  | 
                                                        |
| 513 | -  | 
                                                        |
| 514 | - $generatePasswordResetToken = false;  | 
                                                        |
| 515 | -		if (strlen($password) > IUserManager::MAX_PASSWORD_LENGTH) { | 
                                                        |
| 516 | -			throw new OCSException($this->l10n->t('Invalid password value'), 101); | 
                                                        |
| 517 | - }  | 
                                                        |
| 518 | -		if ($password === '') { | 
                                                        |
| 519 | -			if ($email === '') { | 
                                                        |
| 520 | -				throw new OCSException($this->l10n->t('An email address is required, to send a password link to the user.'), 108); | 
                                                        |
| 521 | - }  | 
                                                        |
| 522 | -  | 
                                                        |
| 523 | - $passwordEvent = new GenerateSecurePasswordEvent();  | 
                                                        |
| 524 | - $this->eventDispatcher->dispatchTyped($passwordEvent);  | 
                                                        |
| 525 | -  | 
                                                        |
| 526 | - $password = $passwordEvent->getPassword();  | 
                                                        |
| 527 | -			if ($password === null) { | 
                                                        |
| 528 | - // Fallback: ensure to pass password_policy in any case  | 
                                                        |
| 529 | - $password = $this->secureRandom->generate(10)  | 
                                                        |
| 530 | - . $this->secureRandom->generate(1, ISecureRandom::CHAR_UPPER)  | 
                                                        |
| 531 | - . $this->secureRandom->generate(1, ISecureRandom::CHAR_LOWER)  | 
                                                        |
| 532 | - . $this->secureRandom->generate(1, ISecureRandom::CHAR_DIGITS)  | 
                                                        |
| 533 | - . $this->secureRandom->generate(1, ISecureRandom::CHAR_SYMBOLS);  | 
                                                        |
| 534 | - }  | 
                                                        |
| 535 | - $generatePasswordResetToken = true;  | 
                                                        |
| 536 | - }  | 
                                                        |
| 537 | -  | 
                                                        |
| 538 | -		if ($email === '' && $this->config->getAppValue('core', 'newUser.requireEmail', 'no') === 'yes') { | 
                                                        |
| 539 | -			throw new OCSException($this->l10n->t('Required email address was not provided'), 110); | 
                                                        |
| 540 | - }  | 
                                                        |
| 541 | -  | 
                                                        |
| 542 | -		try { | 
                                                        |
| 543 | - $newUser = $this->userManager->createUser($userid, $password);  | 
                                                        |
| 544 | -			$this->logger->info('Successful addUser call with userid: ' . $userid, ['app' => 'ocs_api']); | 
                                                        |
| 545 | -  | 
                                                        |
| 546 | -			foreach ($groups as $group) { | 
                                                        |
| 547 | - $this->groupManager->get($group)->addUser($newUser);  | 
                                                        |
| 548 | -				$this->logger->info('Added userid ' . $userid . ' to group ' . $group, ['app' => 'ocs_api']); | 
                                                        |
| 549 | - }  | 
                                                        |
| 550 | -			foreach ($subadminGroups as $group) { | 
                                                        |
| 551 | - $subAdminManager->createSubAdmin($newUser, $group);  | 
                                                        |
| 552 | - }  | 
                                                        |
| 553 | -  | 
                                                        |
| 554 | -			if ($displayName !== '') { | 
                                                        |
| 555 | -				try { | 
                                                        |
| 556 | - $this->editUser($userid, self::USER_FIELD_DISPLAYNAME, $displayName);  | 
                                                        |
| 557 | -				} catch (OCSException $e) { | 
                                                        |
| 558 | -					if ($newUser instanceof IUser) { | 
                                                        |
| 559 | - $newUser->delete();  | 
                                                        |
| 560 | - }  | 
                                                        |
| 561 | - throw $e;  | 
                                                        |
| 562 | - }  | 
                                                        |
| 563 | - }  | 
                                                        |
| 564 | -  | 
                                                        |
| 565 | -			if ($quota !== '') { | 
                                                        |
| 566 | - $this->editUser($userid, self::USER_FIELD_QUOTA, $quota);  | 
                                                        |
| 567 | - }  | 
                                                        |
| 568 | -  | 
                                                        |
| 569 | -			if ($language !== '') { | 
                                                        |
| 570 | - $this->editUser($userid, self::USER_FIELD_LANGUAGE, $language);  | 
                                                        |
| 571 | - }  | 
                                                        |
| 572 | -  | 
                                                        |
| 573 | - /**  | 
                                                        |
| 574 | - * null -> nothing sent  | 
                                                        |
| 575 | - * '' -> unset manager  | 
                                                        |
| 576 | - * else -> set manager  | 
                                                        |
| 577 | - */  | 
                                                        |
| 578 | -			if ($manager !== null) { | 
                                                        |
| 579 | - $this->editUser($userid, self::USER_FIELD_MANAGER, $manager);  | 
                                                        |
| 580 | - }  | 
                                                        |
| 581 | -  | 
                                                        |
| 582 | - // Send new user mail only if a mail is set  | 
                                                        |
| 583 | -			if ($email !== '') { | 
                                                        |
| 584 | - $newUser->setEMailAddress($email);  | 
                                                        |
| 585 | -				if ($this->config->getAppValue('core', 'newUser.sendEmail', 'yes') === 'yes') { | 
                                                        |
| 586 | -					try { | 
                                                        |
| 587 | - $emailTemplate = $this->newUserMailHelper->generateTemplate($newUser, $generatePasswordResetToken);  | 
                                                        |
| 588 | - $this->newUserMailHelper->sendMail($newUser, $emailTemplate);  | 
                                                        |
| 589 | -					} catch (\Exception $e) { | 
                                                        |
| 590 | - // Mail could be failing hard or just be plain not configured  | 
                                                        |
| 591 | - // Logging error as it is the hardest of the two  | 
                                                        |
| 592 | - $this->logger->error(  | 
                                                        |
| 593 | - "Unable to send the invitation mail to $email",  | 
                                                        |
| 594 | - [  | 
                                                        |
| 595 | - 'app' => 'ocs_api',  | 
                                                        |
| 596 | - 'exception' => $e,  | 
                                                        |
| 597 | - ]  | 
                                                        |
| 598 | - );  | 
                                                        |
| 599 | - }  | 
                                                        |
| 600 | - }  | 
                                                        |
| 601 | - }  | 
                                                        |
| 602 | -  | 
                                                        |
| 603 | - return new DataResponse(['id' => $userid]);  | 
                                                        |
| 604 | -		} catch (HintException $e) { | 
                                                        |
| 605 | - $this->logger->warning(  | 
                                                        |
| 606 | - 'Failed addUser attempt with hint exception.',  | 
                                                        |
| 607 | - [  | 
                                                        |
| 608 | - 'app' => 'ocs_api',  | 
                                                        |
| 609 | - 'exception' => $e,  | 
                                                        |
| 610 | - ]  | 
                                                        |
| 611 | - );  | 
                                                        |
| 612 | - throw new OCSException($e->getHint(), 107);  | 
                                                        |
| 613 | -		} catch (OCSException $e) { | 
                                                        |
| 614 | - $this->logger->warning(  | 
                                                        |
| 615 | - 'Failed addUser attempt with ocs exception.',  | 
                                                        |
| 616 | - [  | 
                                                        |
| 617 | - 'app' => 'ocs_api',  | 
                                                        |
| 618 | - 'exception' => $e,  | 
                                                        |
| 619 | - ]  | 
                                                        |
| 620 | - );  | 
                                                        |
| 621 | - throw $e;  | 
                                                        |
| 622 | -		} catch (InvalidArgumentException $e) { | 
                                                        |
| 623 | - $this->logger->error(  | 
                                                        |
| 624 | - 'Failed addUser attempt with invalid argument exception.',  | 
                                                        |
| 625 | - [  | 
                                                        |
| 626 | - 'app' => 'ocs_api',  | 
                                                        |
| 627 | - 'exception' => $e,  | 
                                                        |
| 628 | - ]  | 
                                                        |
| 629 | - );  | 
                                                        |
| 630 | - throw new OCSException($e->getMessage(), 101);  | 
                                                        |
| 631 | -		} catch (\Exception $e) { | 
                                                        |
| 632 | - $this->logger->error(  | 
                                                        |
| 633 | - 'Failed addUser attempt with exception.',  | 
                                                        |
| 634 | - [  | 
                                                        |
| 635 | - 'app' => 'ocs_api',  | 
                                                        |
| 636 | - 'exception' => $e  | 
                                                        |
| 637 | - ]  | 
                                                        |
| 638 | - );  | 
                                                        |
| 639 | -			throw new OCSException('Bad request', 101); | 
                                                        |
| 640 | - }  | 
                                                        |
| 641 | - }  | 
                                                        |
| 642 | -  | 
                                                        |
| 643 | - /**  | 
                                                        |
| 644 | - * @NoSubAdminRequired  | 
                                                        |
| 645 | - *  | 
                                                        |
| 646 | - * Get the details of a user  | 
                                                        |
| 647 | - *  | 
                                                        |
| 648 | - * @param string $userId ID of the user  | 
                                                        |
| 649 | -	 * @return DataResponse<Http::STATUS_OK, Provisioning_APIUserDetails, array{}> | 
                                                        |
| 650 | - * @throws OCSException  | 
                                                        |
| 651 | - *  | 
                                                        |
| 652 | - * 200: User returned  | 
                                                        |
| 653 | - */  | 
                                                        |
| 654 | - #[NoAdminRequired]  | 
                                                        |
| 655 | -	public function getUser(string $userId): DataResponse { | 
                                                        |
| 656 | - $includeScopes = false;  | 
                                                        |
| 657 | - $currentUser = $this->userSession->getUser();  | 
                                                        |
| 658 | -		if ($currentUser && $currentUser->getUID() === $userId) { | 
                                                        |
| 659 | - $includeScopes = true;  | 
                                                        |
| 660 | - }  | 
                                                        |
| 661 | -  | 
                                                        |
| 662 | - $data = $this->getUserData($userId, $includeScopes);  | 
                                                        |
| 663 | - // getUserData returns null if not enough permissions  | 
                                                        |
| 664 | -		if ($data === null) { | 
                                                        |
| 665 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 666 | - }  | 
                                                        |
| 667 | - return new DataResponse($data);  | 
                                                        |
| 668 | - }  | 
                                                        |
| 669 | -  | 
                                                        |
| 670 | - /**  | 
                                                        |
| 671 | - * @NoSubAdminRequired  | 
                                                        |
| 672 | - *  | 
                                                        |
| 673 | - * Get the details of the current user  | 
                                                        |
| 674 | - *  | 
                                                        |
| 675 | -	 * @return DataResponse<Http::STATUS_OK, Provisioning_APIUserDetails, array{}> | 
                                                        |
| 676 | - * @throws OCSException  | 
                                                        |
| 677 | - *  | 
                                                        |
| 678 | - * 200: Current user returned  | 
                                                        |
| 679 | - */  | 
                                                        |
| 680 | - #[NoAdminRequired]  | 
                                                        |
| 681 | -	public function getCurrentUser(): DataResponse { | 
                                                        |
| 682 | - $user = $this->userSession->getUser();  | 
                                                        |
| 683 | -		if ($user) { | 
                                                        |
| 684 | - /** @var Provisioning_APIUserDetails $data */  | 
                                                        |
| 685 | - $data = $this->getUserData($user->getUID(), true);  | 
                                                        |
| 686 | - return new DataResponse($data);  | 
                                                        |
| 687 | - }  | 
                                                        |
| 688 | -  | 
                                                        |
| 689 | -		throw new OCSException('', OCSController::RESPOND_UNAUTHORISED); | 
                                                        |
| 690 | - }  | 
                                                        |
| 691 | -  | 
                                                        |
| 692 | - /**  | 
                                                        |
| 693 | - * @NoSubAdminRequired  | 
                                                        |
| 694 | - *  | 
                                                        |
| 695 | - * Get a list of fields that are editable for the current user  | 
                                                        |
| 696 | - *  | 
                                                        |
| 697 | -	 * @return DataResponse<Http::STATUS_OK, list<string>, array{}> | 
                                                        |
| 698 | - * @throws OCSException  | 
                                                        |
| 699 | - *  | 
                                                        |
| 700 | - * 200: Editable fields returned  | 
                                                        |
| 701 | - */  | 
                                                        |
| 702 | - #[NoAdminRequired]  | 
                                                        |
| 703 | -	public function getEditableFields(): DataResponse { | 
                                                        |
| 704 | - $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 705 | -		if (!$currentLoggedInUser instanceof IUser) { | 
                                                        |
| 706 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 707 | - }  | 
                                                        |
| 708 | -  | 
                                                        |
| 709 | - return $this->getEditableFieldsForUser($currentLoggedInUser->getUID());  | 
                                                        |
| 710 | - }  | 
                                                        |
| 711 | -  | 
                                                        |
| 712 | - /**  | 
                                                        |
| 713 | - * @NoSubAdminRequired  | 
                                                        |
| 714 | - *  | 
                                                        |
| 715 | - * Get a list of fields that are editable for a user  | 
                                                        |
| 716 | - *  | 
                                                        |
| 717 | - * @param string $userId ID of the user  | 
                                                        |
| 718 | -	 * @return DataResponse<Http::STATUS_OK, list<string>, array{}> | 
                                                        |
| 719 | - * @throws OCSException  | 
                                                        |
| 720 | - *  | 
                                                        |
| 721 | - * 200: Editable fields for user returned  | 
                                                        |
| 722 | - */  | 
                                                        |
| 723 | - #[NoAdminRequired]  | 
                                                        |
| 724 | -	public function getEditableFieldsForUser(string $userId): DataResponse { | 
                                                        |
| 725 | - $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 726 | -		if (!$currentLoggedInUser instanceof IUser) { | 
                                                        |
| 727 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 728 | - }  | 
                                                        |
| 729 | -  | 
                                                        |
| 730 | - $permittedFields = [];  | 
                                                        |
| 731 | -  | 
                                                        |
| 732 | -		if ($userId !== $currentLoggedInUser->getUID()) { | 
                                                        |
| 733 | - $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 734 | -			if (!$targetUser instanceof IUser) { | 
                                                        |
| 735 | -				throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 736 | - }  | 
                                                        |
| 737 | -  | 
                                                        |
| 738 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 739 | - $isAdmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 740 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 741 | - if (  | 
                                                        |
| 742 | - !($isAdmin || $isDelegatedAdmin)  | 
                                                        |
| 743 | - && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)  | 
                                                        |
| 744 | -			) { | 
                                                        |
| 745 | -				throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 746 | - }  | 
                                                        |
| 747 | -		} else { | 
                                                        |
| 748 | - $targetUser = $currentLoggedInUser;  | 
                                                        |
| 749 | - }  | 
                                                        |
| 750 | -  | 
                                                        |
| 751 | -		$allowDisplayNameChange = $this->config->getSystemValue('allow_user_to_change_display_name', true); | 
                                                        |
| 752 | - if ($allowDisplayNameChange === true && (  | 
                                                        |
| 753 | - $targetUser->getBackend() instanceof ISetDisplayNameBackend  | 
                                                        |
| 754 | - || $targetUser->getBackend()->implementsActions(Backend::SET_DISPLAYNAME)  | 
                                                        |
| 755 | -		)) { | 
                                                        |
| 756 | - $permittedFields[] = IAccountManager::PROPERTY_DISPLAYNAME;  | 
                                                        |
| 757 | - }  | 
                                                        |
| 758 | -  | 
                                                        |
| 759 | - // Fallback to display name value to avoid changing behavior with the new option.  | 
                                                        |
| 760 | -		if ($this->config->getSystemValue('allow_user_to_change_email', true)) { | 
                                                        |
| 761 | - $permittedFields[] = IAccountManager::PROPERTY_EMAIL;  | 
                                                        |
| 762 | - }  | 
                                                        |
| 763 | -  | 
                                                        |
| 764 | - $permittedFields[] = IAccountManager::COLLECTION_EMAIL;  | 
                                                        |
| 765 | - $permittedFields[] = IAccountManager::PROPERTY_PHONE;  | 
                                                        |
| 766 | - $permittedFields[] = IAccountManager::PROPERTY_ADDRESS;  | 
                                                        |
| 767 | - $permittedFields[] = IAccountManager::PROPERTY_WEBSITE;  | 
                                                        |
| 768 | - $permittedFields[] = IAccountManager::PROPERTY_TWITTER;  | 
                                                        |
| 769 | - $permittedFields[] = IAccountManager::PROPERTY_FEDIVERSE;  | 
                                                        |
| 770 | - $permittedFields[] = IAccountManager::PROPERTY_ORGANISATION;  | 
                                                        |
| 771 | - $permittedFields[] = IAccountManager::PROPERTY_ROLE;  | 
                                                        |
| 772 | - $permittedFields[] = IAccountManager::PROPERTY_HEADLINE;  | 
                                                        |
| 773 | - $permittedFields[] = IAccountManager::PROPERTY_BIOGRAPHY;  | 
                                                        |
| 774 | - $permittedFields[] = IAccountManager::PROPERTY_PROFILE_ENABLED;  | 
                                                        |
| 775 | - $permittedFields[] = IAccountManager::PROPERTY_PRONOUNS;  | 
                                                        |
| 776 | -  | 
                                                        |
| 777 | - return new DataResponse($permittedFields);  | 
                                                        |
| 778 | - }  | 
                                                        |
| 779 | -  | 
                                                        |
| 780 | - /**  | 
                                                        |
| 781 | - * @NoSubAdminRequired  | 
                                                        |
| 782 | - *  | 
                                                        |
| 783 | - * Update multiple values of the user's details  | 
                                                        |
| 784 | - *  | 
                                                        |
| 785 | - * @param string $userId ID of the user  | 
                                                        |
| 786 | - * @param string $collectionName Collection to update  | 
                                                        |
| 787 | - * @param string $key Key that will be updated  | 
                                                        |
| 788 | - * @param string $value New value for the key  | 
                                                        |
| 789 | -	 * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 790 | - * @throws OCSException  | 
                                                        |
| 791 | - *  | 
                                                        |
| 792 | - * 200: User values edited successfully  | 
                                                        |
| 793 | - */  | 
                                                        |
| 794 | - #[PasswordConfirmationRequired]  | 
                                                        |
| 795 | - #[NoAdminRequired]  | 
                                                        |
| 796 | - #[UserRateLimit(limit: 5, period: 60)]  | 
                                                        |
| 797 | - public function editUserMultiValue(  | 
                                                        |
| 798 | - string $userId,  | 
                                                        |
| 799 | - string $collectionName,  | 
                                                        |
| 800 | - string $key,  | 
                                                        |
| 801 | - string $value,  | 
                                                        |
| 802 | -	): DataResponse { | 
                                                        |
| 803 | - $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 804 | -		if ($currentLoggedInUser === null) { | 
                                                        |
| 805 | -			throw new OCSException('', OCSController::RESPOND_UNAUTHORISED); | 
                                                        |
| 806 | - }  | 
                                                        |
| 807 | -  | 
                                                        |
| 808 | - $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 809 | -		if ($targetUser === null) { | 
                                                        |
| 810 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 811 | - }  | 
                                                        |
| 812 | -  | 
                                                        |
| 813 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 814 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 815 | - $isAdminOrSubadmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID())  | 
                                                        |
| 816 | - || $subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser);  | 
                                                        |
| 817 | -  | 
                                                        |
| 818 | - $permittedFields = [];  | 
                                                        |
| 819 | -		if ($targetUser->getUID() === $currentLoggedInUser->getUID()) { | 
                                                        |
| 820 | - // Editing self (display, email)  | 
                                                        |
| 821 | - $permittedFields[] = IAccountManager::COLLECTION_EMAIL;  | 
                                                        |
| 822 | - $permittedFields[] = IAccountManager::COLLECTION_EMAIL . self::SCOPE_SUFFIX;  | 
                                                        |
| 823 | -		} else { | 
                                                        |
| 824 | - // Check if admin / subadmin  | 
                                                        |
| 825 | -			if ($isAdminOrSubadmin || $isDelegatedAdmin && !$this->groupManager->isInGroup($targetUser->getUID(), 'admin')) { | 
                                                        |
| 826 | - // They have permissions over the user  | 
                                                        |
| 827 | - $permittedFields[] = IAccountManager::COLLECTION_EMAIL;  | 
                                                        |
| 828 | -			} else { | 
                                                        |
| 829 | - // No rights  | 
                                                        |
| 830 | -				throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 831 | - }  | 
                                                        |
| 832 | - }  | 
                                                        |
| 833 | -  | 
                                                        |
| 834 | - // Check if permitted to edit this field  | 
                                                        |
| 835 | -		if (!in_array($collectionName, $permittedFields)) { | 
                                                        |
| 836 | -			throw new OCSException('', 103); | 
                                                        |
| 837 | - }  | 
                                                        |
| 838 | -  | 
                                                        |
| 839 | -		switch ($collectionName) { | 
                                                        |
| 840 | - case IAccountManager::COLLECTION_EMAIL:  | 
                                                        |
| 841 | - $userAccount = $this->accountManager->getAccount($targetUser);  | 
                                                        |
| 842 | - $mailCollection = $userAccount->getPropertyCollection(IAccountManager::COLLECTION_EMAIL);  | 
                                                        |
| 843 | - $mailCollection->removePropertyByValue($key);  | 
                                                        |
| 844 | -				if ($value !== '') { | 
                                                        |
| 845 | - $mailCollection->addPropertyWithDefaults($value);  | 
                                                        |
| 846 | - $property = $mailCollection->getPropertyByValue($key);  | 
                                                        |
| 847 | -					if ($isAdminOrSubadmin && $property) { | 
                                                        |
| 848 | - // admin set mails are auto-verified  | 
                                                        |
| 849 | - $property->setLocallyVerified(IAccountManager::VERIFIED);  | 
                                                        |
| 850 | - }  | 
                                                        |
| 851 | - }  | 
                                                        |
| 852 | - $this->accountManager->updateAccount($userAccount);  | 
                                                        |
| 853 | -				if ($value === '' && $key === $targetUser->getPrimaryEMailAddress()) { | 
                                                        |
| 854 | -					$targetUser->setPrimaryEMailAddress(''); | 
                                                        |
| 855 | - }  | 
                                                        |
| 856 | - break;  | 
                                                        |
| 857 | -  | 
                                                        |
| 858 | - case IAccountManager::COLLECTION_EMAIL . self::SCOPE_SUFFIX:  | 
                                                        |
| 859 | - $userAccount = $this->accountManager->getAccount($targetUser);  | 
                                                        |
| 860 | - $mailCollection = $userAccount->getPropertyCollection(IAccountManager::COLLECTION_EMAIL);  | 
                                                        |
| 861 | - $targetProperty = null;  | 
                                                        |
| 862 | -				foreach ($mailCollection->getProperties() as $property) { | 
                                                        |
| 863 | -					if ($property->getValue() === $key) { | 
                                                        |
| 864 | - $targetProperty = $property;  | 
                                                        |
| 865 | - break;  | 
                                                        |
| 866 | - }  | 
                                                        |
| 867 | - }  | 
                                                        |
| 868 | -				if ($targetProperty instanceof IAccountProperty) { | 
                                                        |
| 869 | -					try { | 
                                                        |
| 870 | - $targetProperty->setScope($value);  | 
                                                        |
| 871 | - $this->accountManager->updateAccount($userAccount);  | 
                                                        |
| 872 | -					} catch (InvalidArgumentException $e) { | 
                                                        |
| 873 | -						throw new OCSException('', 102); | 
                                                        |
| 874 | - }  | 
                                                        |
| 875 | -				} else { | 
                                                        |
| 876 | -					throw new OCSException('', 102); | 
                                                        |
| 877 | - }  | 
                                                        |
| 878 | - break;  | 
                                                        |
| 879 | -  | 
                                                        |
| 880 | - default:  | 
                                                        |
| 881 | -				throw new OCSException('', 103); | 
                                                        |
| 882 | - }  | 
                                                        |
| 883 | - return new DataResponse();  | 
                                                        |
| 884 | - }  | 
                                                        |
| 885 | -  | 
                                                        |
| 886 | - /**  | 
                                                        |
| 887 | - * @NoSubAdminRequired  | 
                                                        |
| 888 | - *  | 
                                                        |
| 889 | - * Update a value of the user's details  | 
                                                        |
| 890 | - *  | 
                                                        |
| 891 | - * @param string $userId ID of the user  | 
                                                        |
| 892 | - * @param string $key Key that will be updated  | 
                                                        |
| 893 | - * @param string $value New value for the key  | 
                                                        |
| 894 | -	 * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 895 | - * @throws OCSException  | 
                                                        |
| 896 | - *  | 
                                                        |
| 897 | - * 200: User value edited successfully  | 
                                                        |
| 898 | - */  | 
                                                        |
| 899 | - #[PasswordConfirmationRequired]  | 
                                                        |
| 900 | - #[NoAdminRequired]  | 
                                                        |
| 901 | - #[UserRateLimit(limit: 50, period: 600)]  | 
                                                        |
| 902 | -	public function editUser(string $userId, string $key, string $value): DataResponse { | 
                                                        |
| 903 | - $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 904 | -  | 
                                                        |
| 905 | - $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 906 | -		if ($targetUser === null) { | 
                                                        |
| 907 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 908 | - }  | 
                                                        |
| 909 | -  | 
                                                        |
| 910 | - $permittedFields = [];  | 
                                                        |
| 911 | -		if ($targetUser->getUID() === $currentLoggedInUser->getUID()) { | 
                                                        |
| 912 | -			$allowDisplayNameChange = $this->config->getSystemValue('allow_user_to_change_display_name', true); | 
                                                        |
| 913 | - if ($allowDisplayNameChange !== false && (  | 
                                                        |
| 914 | - $targetUser->getBackend() instanceof ISetDisplayNameBackend  | 
                                                        |
| 915 | - || $targetUser->getBackend()->implementsActions(Backend::SET_DISPLAYNAME)  | 
                                                        |
| 916 | -			)) { | 
                                                        |
| 917 | - $permittedFields[] = self::USER_FIELD_DISPLAYNAME;  | 
                                                        |
| 918 | - $permittedFields[] = IAccountManager::PROPERTY_DISPLAYNAME;  | 
                                                        |
| 919 | - }  | 
                                                        |
| 920 | -  | 
                                                        |
| 921 | -			if ($this->config->getSystemValue('allow_user_to_change_email', true)) { | 
                                                        |
| 922 | - $permittedFields[] = IAccountManager::PROPERTY_EMAIL;  | 
                                                        |
| 923 | - }  | 
                                                        |
| 924 | -  | 
                                                        |
| 925 | - $permittedFields[] = IAccountManager::PROPERTY_DISPLAYNAME . self::SCOPE_SUFFIX;  | 
                                                        |
| 926 | - $permittedFields[] = IAccountManager::PROPERTY_EMAIL . self::SCOPE_SUFFIX;  | 
                                                        |
| 927 | -  | 
                                                        |
| 928 | - $permittedFields[] = IAccountManager::COLLECTION_EMAIL;  | 
                                                        |
| 929 | -  | 
                                                        |
| 930 | - $permittedFields[] = self::USER_FIELD_PASSWORD;  | 
                                                        |
| 931 | - $permittedFields[] = self::USER_FIELD_NOTIFICATION_EMAIL;  | 
                                                        |
| 932 | - if (  | 
                                                        |
| 933 | -				$this->config->getSystemValue('force_language', false) === false || | 
                                                        |
| 934 | - $this->groupManager->isAdmin($currentLoggedInUser->getUID()) ||  | 
                                                        |
| 935 | - $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID())  | 
                                                        |
| 936 | -			) { | 
                                                        |
| 937 | - $permittedFields[] = self::USER_FIELD_LANGUAGE;  | 
                                                        |
| 938 | - }  | 
                                                        |
| 939 | -  | 
                                                        |
| 940 | - if (  | 
                                                        |
| 941 | -				$this->config->getSystemValue('force_locale', false) === false || | 
                                                        |
| 942 | - $this->groupManager->isAdmin($currentLoggedInUser->getUID()) ||  | 
                                                        |
| 943 | - $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID())  | 
                                                        |
| 944 | -			) { | 
                                                        |
| 945 | - $permittedFields[] = self::USER_FIELD_LOCALE;  | 
                                                        |
| 946 | - $permittedFields[] = self::USER_FIELD_FIRST_DAY_OF_WEEK;  | 
                                                        |
| 947 | - }  | 
                                                        |
| 948 | -  | 
                                                        |
| 949 | - $permittedFields[] = IAccountManager::PROPERTY_PHONE;  | 
                                                        |
| 950 | - $permittedFields[] = IAccountManager::PROPERTY_ADDRESS;  | 
                                                        |
| 951 | - $permittedFields[] = IAccountManager::PROPERTY_WEBSITE;  | 
                                                        |
| 952 | - $permittedFields[] = IAccountManager::PROPERTY_TWITTER;  | 
                                                        |
| 953 | - $permittedFields[] = IAccountManager::PROPERTY_FEDIVERSE;  | 
                                                        |
| 954 | - $permittedFields[] = IAccountManager::PROPERTY_ORGANISATION;  | 
                                                        |
| 955 | - $permittedFields[] = IAccountManager::PROPERTY_ROLE;  | 
                                                        |
| 956 | - $permittedFields[] = IAccountManager::PROPERTY_HEADLINE;  | 
                                                        |
| 957 | - $permittedFields[] = IAccountManager::PROPERTY_BIOGRAPHY;  | 
                                                        |
| 958 | - $permittedFields[] = IAccountManager::PROPERTY_PROFILE_ENABLED;  | 
                                                        |
| 959 | - $permittedFields[] = IAccountManager::PROPERTY_BIRTHDATE;  | 
                                                        |
| 960 | - $permittedFields[] = IAccountManager::PROPERTY_PRONOUNS;  | 
                                                        |
| 961 | -  | 
                                                        |
| 962 | - $permittedFields[] = IAccountManager::PROPERTY_PHONE . self::SCOPE_SUFFIX;  | 
                                                        |
| 963 | - $permittedFields[] = IAccountManager::PROPERTY_ADDRESS . self::SCOPE_SUFFIX;  | 
                                                        |
| 964 | - $permittedFields[] = IAccountManager::PROPERTY_WEBSITE . self::SCOPE_SUFFIX;  | 
                                                        |
| 965 | - $permittedFields[] = IAccountManager::PROPERTY_TWITTER . self::SCOPE_SUFFIX;  | 
                                                        |
| 966 | - $permittedFields[] = IAccountManager::PROPERTY_FEDIVERSE . self::SCOPE_SUFFIX;  | 
                                                        |
| 967 | - $permittedFields[] = IAccountManager::PROPERTY_ORGANISATION . self::SCOPE_SUFFIX;  | 
                                                        |
| 968 | - $permittedFields[] = IAccountManager::PROPERTY_ROLE . self::SCOPE_SUFFIX;  | 
                                                        |
| 969 | - $permittedFields[] = IAccountManager::PROPERTY_HEADLINE . self::SCOPE_SUFFIX;  | 
                                                        |
| 970 | - $permittedFields[] = IAccountManager::PROPERTY_BIOGRAPHY . self::SCOPE_SUFFIX;  | 
                                                        |
| 971 | - $permittedFields[] = IAccountManager::PROPERTY_PROFILE_ENABLED . self::SCOPE_SUFFIX;  | 
                                                        |
| 972 | - $permittedFields[] = IAccountManager::PROPERTY_BIRTHDATE . self::SCOPE_SUFFIX;  | 
                                                        |
| 973 | - $permittedFields[] = IAccountManager::PROPERTY_AVATAR . self::SCOPE_SUFFIX;  | 
                                                        |
| 974 | - $permittedFields[] = IAccountManager::PROPERTY_PRONOUNS . self::SCOPE_SUFFIX;  | 
                                                        |
| 975 | -  | 
                                                        |
| 976 | - // If admin they can edit their own quota and manager  | 
                                                        |
| 977 | - $isAdmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 978 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 979 | -			if ($isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 980 | - $permittedFields[] = self::USER_FIELD_QUOTA;  | 
                                                        |
| 981 | - $permittedFields[] = self::USER_FIELD_MANAGER;  | 
                                                        |
| 982 | - }  | 
                                                        |
| 983 | -		} else { | 
                                                        |
| 984 | - // Check if admin / subadmin  | 
                                                        |
| 985 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 986 | - if (  | 
                                                        |
| 987 | - $this->groupManager->isAdmin($currentLoggedInUser->getUID()) ||  | 
                                                        |
| 988 | - $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID()) && !$this->groupManager->isInGroup($targetUser->getUID(), 'admin')  | 
                                                        |
| 989 | - || $subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)  | 
                                                        |
| 990 | -			) { | 
                                                        |
| 991 | - // They have permissions over the user  | 
                                                        |
| 992 | - if (  | 
                                                        |
| 993 | - $targetUser->getBackend() instanceof ISetDisplayNameBackend  | 
                                                        |
| 994 | - || $targetUser->getBackend()->implementsActions(Backend::SET_DISPLAYNAME)  | 
                                                        |
| 995 | -				) { | 
                                                        |
| 996 | - $permittedFields[] = self::USER_FIELD_DISPLAYNAME;  | 
                                                        |
| 997 | - $permittedFields[] = IAccountManager::PROPERTY_DISPLAYNAME;  | 
                                                        |
| 998 | - }  | 
                                                        |
| 999 | - $permittedFields[] = IAccountManager::PROPERTY_EMAIL;  | 
                                                        |
| 1000 | - $permittedFields[] = IAccountManager::COLLECTION_EMAIL;  | 
                                                        |
| 1001 | - $permittedFields[] = self::USER_FIELD_PASSWORD;  | 
                                                        |
| 1002 | - $permittedFields[] = self::USER_FIELD_LANGUAGE;  | 
                                                        |
| 1003 | - $permittedFields[] = self::USER_FIELD_LOCALE;  | 
                                                        |
| 1004 | - $permittedFields[] = self::USER_FIELD_FIRST_DAY_OF_WEEK;  | 
                                                        |
| 1005 | - $permittedFields[] = IAccountManager::PROPERTY_PHONE;  | 
                                                        |
| 1006 | - $permittedFields[] = IAccountManager::PROPERTY_ADDRESS;  | 
                                                        |
| 1007 | - $permittedFields[] = IAccountManager::PROPERTY_WEBSITE;  | 
                                                        |
| 1008 | - $permittedFields[] = IAccountManager::PROPERTY_TWITTER;  | 
                                                        |
| 1009 | - $permittedFields[] = IAccountManager::PROPERTY_FEDIVERSE;  | 
                                                        |
| 1010 | - $permittedFields[] = IAccountManager::PROPERTY_ORGANISATION;  | 
                                                        |
| 1011 | - $permittedFields[] = IAccountManager::PROPERTY_ROLE;  | 
                                                        |
| 1012 | - $permittedFields[] = IAccountManager::PROPERTY_HEADLINE;  | 
                                                        |
| 1013 | - $permittedFields[] = IAccountManager::PROPERTY_BIOGRAPHY;  | 
                                                        |
| 1014 | - $permittedFields[] = IAccountManager::PROPERTY_PROFILE_ENABLED;  | 
                                                        |
| 1015 | - $permittedFields[] = IAccountManager::PROPERTY_PRONOUNS;  | 
                                                        |
| 1016 | - $permittedFields[] = self::USER_FIELD_QUOTA;  | 
                                                        |
| 1017 | - $permittedFields[] = self::USER_FIELD_NOTIFICATION_EMAIL;  | 
                                                        |
| 1018 | - $permittedFields[] = self::USER_FIELD_MANAGER;  | 
                                                        |
| 1019 | -			} else { | 
                                                        |
| 1020 | - // No rights  | 
                                                        |
| 1021 | -				throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1022 | - }  | 
                                                        |
| 1023 | - }  | 
                                                        |
| 1024 | - // Check if permitted to edit this field  | 
                                                        |
| 1025 | -		if (!in_array($key, $permittedFields)) { | 
                                                        |
| 1026 | -			throw new OCSException('', 113); | 
                                                        |
| 1027 | - }  | 
                                                        |
| 1028 | - // Process the edit  | 
                                                        |
| 1029 | -		switch ($key) { | 
                                                        |
| 1030 | - case self::USER_FIELD_DISPLAYNAME:  | 
                                                        |
| 1031 | - case IAccountManager::PROPERTY_DISPLAYNAME:  | 
                                                        |
| 1032 | -				try { | 
                                                        |
| 1033 | - $targetUser->setDisplayName($value);  | 
                                                        |
| 1034 | -				} catch (InvalidArgumentException $e) { | 
                                                        |
| 1035 | - throw new OCSException($e->getMessage(), 101);  | 
                                                        |
| 1036 | - }  | 
                                                        |
| 1037 | - break;  | 
                                                        |
| 1038 | - case self::USER_FIELD_QUOTA:  | 
                                                        |
| 1039 | - $quota = $value;  | 
                                                        |
| 1040 | -				if ($quota !== 'none' && $quota !== 'default') { | 
                                                        |
| 1041 | -					if (is_numeric($quota)) { | 
                                                        |
| 1042 | - $quota = (float)$quota;  | 
                                                        |
| 1043 | -					} else { | 
                                                        |
| 1044 | - $quota = Util::computerFileSize($quota);  | 
                                                        |
| 1045 | - }  | 
                                                        |
| 1046 | -					if ($quota === false) { | 
                                                        |
| 1047 | -						throw new OCSException($this->l10n->t('Invalid quota value: %1$s', [$value]), 101); | 
                                                        |
| 1048 | - }  | 
                                                        |
| 1049 | -					if ($quota === -1) { | 
                                                        |
| 1050 | - $quota = 'none';  | 
                                                        |
| 1051 | -					} else { | 
                                                        |
| 1052 | -						$maxQuota = (int)$this->config->getAppValue('files', 'max_quota', '-1'); | 
                                                        |
| 1053 | -						if ($maxQuota !== -1 && $quota > $maxQuota) { | 
                                                        |
| 1054 | -							throw new OCSException($this->l10n->t('Invalid quota value. %1$s is exceeding the maximum quota', [$value]), 101); | 
                                                        |
| 1055 | - }  | 
                                                        |
| 1056 | - $quota = Util::humanFileSize($quota);  | 
                                                        |
| 1057 | - }  | 
                                                        |
| 1058 | - }  | 
                                                        |
| 1059 | - // no else block because quota can be set to 'none' in previous if  | 
                                                        |
| 1060 | -				if ($quota === 'none') { | 
                                                        |
| 1061 | -					$allowUnlimitedQuota = $this->config->getAppValue('files', 'allow_unlimited_quota', '1') === '1'; | 
                                                        |
| 1062 | -					if (!$allowUnlimitedQuota) { | 
                                                        |
| 1063 | -						throw new OCSException($this->l10n->t('Unlimited quota is forbidden on this instance'), 101); | 
                                                        |
| 1064 | - }  | 
                                                        |
| 1065 | - }  | 
                                                        |
| 1066 | - $targetUser->setQuota($quota);  | 
                                                        |
| 1067 | - break;  | 
                                                        |
| 1068 | - case self::USER_FIELD_MANAGER:  | 
                                                        |
| 1069 | - $targetUser->setManagerUids([$value]);  | 
                                                        |
| 1070 | - break;  | 
                                                        |
| 1071 | - case self::USER_FIELD_PASSWORD:  | 
                                                        |
| 1072 | -				try { | 
                                                        |
| 1073 | -					if (strlen($value) > IUserManager::MAX_PASSWORD_LENGTH) { | 
                                                        |
| 1074 | -						throw new OCSException($this->l10n->t('Invalid password value'), 101); | 
                                                        |
| 1075 | - }  | 
                                                        |
| 1076 | -					if (!$targetUser->canChangePassword()) { | 
                                                        |
| 1077 | -						throw new OCSException($this->l10n->t('Setting the password is not supported by the users backend'), 112); | 
                                                        |
| 1078 | - }  | 
                                                        |
| 1079 | - $targetUser->setPassword($value);  | 
                                                        |
| 1080 | -				} catch (HintException $e) { // password policy error | 
                                                        |
| 1081 | - throw new OCSException($e->getHint(), 107);  | 
                                                        |
| 1082 | - }  | 
                                                        |
| 1083 | - break;  | 
                                                        |
| 1084 | - case self::USER_FIELD_LANGUAGE:  | 
                                                        |
| 1085 | - $languagesCodes = $this->l10nFactory->findAvailableLanguages();  | 
                                                        |
| 1086 | -				if (!in_array($value, $languagesCodes, true) && $value !== 'en') { | 
                                                        |
| 1087 | -					throw new OCSException($this->l10n->t('Invalid language'), 101); | 
                                                        |
| 1088 | - }  | 
                                                        |
| 1089 | - $this->config->setUserValue($targetUser->getUID(), 'core', 'lang', $value);  | 
                                                        |
| 1090 | - break;  | 
                                                        |
| 1091 | - case self::USER_FIELD_LOCALE:  | 
                                                        |
| 1092 | -				if (!$this->l10nFactory->localeExists($value)) { | 
                                                        |
| 1093 | -					throw new OCSException($this->l10n->t('Invalid locale'), 101); | 
                                                        |
| 1094 | - }  | 
                                                        |
| 1095 | - $this->config->setUserValue($targetUser->getUID(), 'core', 'locale', $value);  | 
                                                        |
| 1096 | - break;  | 
                                                        |
| 1097 | - case self::USER_FIELD_FIRST_DAY_OF_WEEK:  | 
                                                        |
| 1098 | - $intValue = (int)$value;  | 
                                                        |
| 1099 | -				if ($intValue < -1 || $intValue > 6) { | 
                                                        |
| 1100 | -					throw new OCSException($this->l10n->t('Invalid first day of week'), 101); | 
                                                        |
| 1101 | - }  | 
                                                        |
| 1102 | -				if ($intValue === -1) { | 
                                                        |
| 1103 | - $this->config->deleteUserValue($targetUser->getUID(), 'core', AUserDataOCSController::USER_FIELD_FIRST_DAY_OF_WEEK);  | 
                                                        |
| 1104 | -				} else { | 
                                                        |
| 1105 | - $this->config->setUserValue($targetUser->getUID(), 'core', AUserDataOCSController::USER_FIELD_FIRST_DAY_OF_WEEK, $value);  | 
                                                        |
| 1106 | - }  | 
                                                        |
| 1107 | - break;  | 
                                                        |
| 1108 | - case self::USER_FIELD_NOTIFICATION_EMAIL:  | 
                                                        |
| 1109 | - $success = false;  | 
                                                        |
| 1110 | -				if ($value === '' || filter_var($value, FILTER_VALIDATE_EMAIL)) { | 
                                                        |
| 1111 | -					try { | 
                                                        |
| 1112 | - $targetUser->setPrimaryEMailAddress($value);  | 
                                                        |
| 1113 | - $success = true;  | 
                                                        |
| 1114 | -					} catch (InvalidArgumentException $e) { | 
                                                        |
| 1115 | - $this->logger->info(  | 
                                                        |
| 1116 | - 'Cannot set primary email, because provided address is not verified',  | 
                                                        |
| 1117 | - [  | 
                                                        |
| 1118 | - 'app' => 'provisioning_api',  | 
                                                        |
| 1119 | - 'exception' => $e,  | 
                                                        |
| 1120 | - ]  | 
                                                        |
| 1121 | - );  | 
                                                        |
| 1122 | - }  | 
                                                        |
| 1123 | - }  | 
                                                        |
| 1124 | -				if (!$success) { | 
                                                        |
| 1125 | -					throw new OCSException('', 101); | 
                                                        |
| 1126 | - }  | 
                                                        |
| 1127 | - break;  | 
                                                        |
| 1128 | - case IAccountManager::PROPERTY_EMAIL:  | 
                                                        |
| 1129 | -				if (filter_var($value, FILTER_VALIDATE_EMAIL) || $value === '') { | 
                                                        |
| 1130 | - $targetUser->setEMailAddress($value);  | 
                                                        |
| 1131 | -				} else { | 
                                                        |
| 1132 | -					throw new OCSException('', 101); | 
                                                        |
| 1133 | - }  | 
                                                        |
| 1134 | - break;  | 
                                                        |
| 1135 | - case IAccountManager::COLLECTION_EMAIL:  | 
                                                        |
| 1136 | -				if (filter_var($value, FILTER_VALIDATE_EMAIL) && $value !== $targetUser->getSystemEMailAddress()) { | 
                                                        |
| 1137 | - $userAccount = $this->accountManager->getAccount($targetUser);  | 
                                                        |
| 1138 | - $mailCollection = $userAccount->getPropertyCollection(IAccountManager::COLLECTION_EMAIL);  | 
                                                        |
| 1139 | -  | 
                                                        |
| 1140 | -					if ($mailCollection->getPropertyByValue($value)) { | 
                                                        |
| 1141 | -						throw new OCSException('', 101); | 
                                                        |
| 1142 | - }  | 
                                                        |
| 1143 | -  | 
                                                        |
| 1144 | - $mailCollection->addPropertyWithDefaults($value);  | 
                                                        |
| 1145 | - $this->accountManager->updateAccount($userAccount);  | 
                                                        |
| 1146 | -				} else { | 
                                                        |
| 1147 | -					throw new OCSException('', 101); | 
                                                        |
| 1148 | - }  | 
                                                        |
| 1149 | - break;  | 
                                                        |
| 1150 | - case IAccountManager::PROPERTY_PHONE:  | 
                                                        |
| 1151 | - case IAccountManager::PROPERTY_ADDRESS:  | 
                                                        |
| 1152 | - case IAccountManager::PROPERTY_WEBSITE:  | 
                                                        |
| 1153 | - case IAccountManager::PROPERTY_TWITTER:  | 
                                                        |
| 1154 | - case IAccountManager::PROPERTY_FEDIVERSE:  | 
                                                        |
| 1155 | - case IAccountManager::PROPERTY_ORGANISATION:  | 
                                                        |
| 1156 | - case IAccountManager::PROPERTY_ROLE:  | 
                                                        |
| 1157 | - case IAccountManager::PROPERTY_HEADLINE:  | 
                                                        |
| 1158 | - case IAccountManager::PROPERTY_BIOGRAPHY:  | 
                                                        |
| 1159 | - case IAccountManager::PROPERTY_BIRTHDATE:  | 
                                                        |
| 1160 | - case IAccountManager::PROPERTY_PRONOUNS:  | 
                                                        |
| 1161 | - $userAccount = $this->accountManager->getAccount($targetUser);  | 
                                                        |
| 1162 | -				try { | 
                                                        |
| 1163 | - $userProperty = $userAccount->getProperty($key);  | 
                                                        |
| 1164 | -					if ($userProperty->getValue() !== $value) { | 
                                                        |
| 1165 | -						try { | 
                                                        |
| 1166 | - $userProperty->setValue($value);  | 
                                                        |
| 1167 | -							if ($userProperty->getName() === IAccountManager::PROPERTY_PHONE) { | 
                                                        |
| 1168 | - $this->knownUserService->deleteByContactUserId($targetUser->getUID());  | 
                                                        |
| 1169 | - }  | 
                                                        |
| 1170 | -						} catch (InvalidArgumentException $e) { | 
                                                        |
| 1171 | -							throw new OCSException('Invalid ' . $e->getMessage(), 101); | 
                                                        |
| 1172 | - }  | 
                                                        |
| 1173 | - }  | 
                                                        |
| 1174 | -				} catch (PropertyDoesNotExistException $e) { | 
                                                        |
| 1175 | - $userAccount->setProperty($key, $value, IAccountManager::SCOPE_PRIVATE, IAccountManager::NOT_VERIFIED);  | 
                                                        |
| 1176 | - }  | 
                                                        |
| 1177 | -				try { | 
                                                        |
| 1178 | - $this->accountManager->updateAccount($userAccount);  | 
                                                        |
| 1179 | -				} catch (InvalidArgumentException $e) { | 
                                                        |
| 1180 | -					throw new OCSException('Invalid ' . $e->getMessage(), 101); | 
                                                        |
| 1181 | - }  | 
                                                        |
| 1182 | - break;  | 
                                                        |
| 1183 | - case IAccountManager::PROPERTY_PROFILE_ENABLED:  | 
                                                        |
| 1184 | - $userAccount = $this->accountManager->getAccount($targetUser);  | 
                                                        |
| 1185 | -				try { | 
                                                        |
| 1186 | - $userProperty = $userAccount->getProperty($key);  | 
                                                        |
| 1187 | -					if ($userProperty->getValue() !== $value) { | 
                                                        |
| 1188 | - $userProperty->setValue($value);  | 
                                                        |
| 1189 | - }  | 
                                                        |
| 1190 | -				} catch (PropertyDoesNotExistException $e) { | 
                                                        |
| 1191 | - $userAccount->setProperty($key, $value, IAccountManager::SCOPE_LOCAL, IAccountManager::NOT_VERIFIED);  | 
                                                        |
| 1192 | - }  | 
                                                        |
| 1193 | - $this->accountManager->updateAccount($userAccount);  | 
                                                        |
| 1194 | - break;  | 
                                                        |
| 1195 | - case IAccountManager::PROPERTY_DISPLAYNAME . self::SCOPE_SUFFIX:  | 
                                                        |
| 1196 | - case IAccountManager::PROPERTY_EMAIL . self::SCOPE_SUFFIX:  | 
                                                        |
| 1197 | - case IAccountManager::PROPERTY_PHONE . self::SCOPE_SUFFIX:  | 
                                                        |
| 1198 | - case IAccountManager::PROPERTY_ADDRESS . self::SCOPE_SUFFIX:  | 
                                                        |
| 1199 | - case IAccountManager::PROPERTY_WEBSITE . self::SCOPE_SUFFIX:  | 
                                                        |
| 1200 | - case IAccountManager::PROPERTY_TWITTER . self::SCOPE_SUFFIX:  | 
                                                        |
| 1201 | - case IAccountManager::PROPERTY_FEDIVERSE . self::SCOPE_SUFFIX:  | 
                                                        |
| 1202 | - case IAccountManager::PROPERTY_ORGANISATION . self::SCOPE_SUFFIX:  | 
                                                        |
| 1203 | - case IAccountManager::PROPERTY_ROLE . self::SCOPE_SUFFIX:  | 
                                                        |
| 1204 | - case IAccountManager::PROPERTY_HEADLINE . self::SCOPE_SUFFIX:  | 
                                                        |
| 1205 | - case IAccountManager::PROPERTY_BIOGRAPHY . self::SCOPE_SUFFIX:  | 
                                                        |
| 1206 | - case IAccountManager::PROPERTY_PROFILE_ENABLED . self::SCOPE_SUFFIX:  | 
                                                        |
| 1207 | - case IAccountManager::PROPERTY_BIRTHDATE . self::SCOPE_SUFFIX:  | 
                                                        |
| 1208 | - case IAccountManager::PROPERTY_AVATAR . self::SCOPE_SUFFIX:  | 
                                                        |
| 1209 | - case IAccountManager::PROPERTY_PRONOUNS . self::SCOPE_SUFFIX:  | 
                                                        |
| 1210 | - $propertyName = substr($key, 0, strlen($key) - strlen(self::SCOPE_SUFFIX));  | 
                                                        |
| 1211 | - $userAccount = $this->accountManager->getAccount($targetUser);  | 
                                                        |
| 1212 | - $userProperty = $userAccount->getProperty($propertyName);  | 
                                                        |
| 1213 | -				if ($userProperty->getScope() !== $value) { | 
                                                        |
| 1214 | -					try { | 
                                                        |
| 1215 | - $userProperty->setScope($value);  | 
                                                        |
| 1216 | - $this->accountManager->updateAccount($userAccount);  | 
                                                        |
| 1217 | -					} catch (InvalidArgumentException $e) { | 
                                                        |
| 1218 | -						throw new OCSException('Invalid ' . $e->getMessage(), 101); | 
                                                        |
| 1219 | - }  | 
                                                        |
| 1220 | - }  | 
                                                        |
| 1221 | - break;  | 
                                                        |
| 1222 | - default:  | 
                                                        |
| 1223 | -				throw new OCSException('', 113); | 
                                                        |
| 1224 | - }  | 
                                                        |
| 1225 | - return new DataResponse();  | 
                                                        |
| 1226 | - }  | 
                                                        |
| 1227 | -  | 
                                                        |
| 1228 | - /**  | 
                                                        |
| 1229 | - * Wipe all devices of a user  | 
                                                        |
| 1230 | - *  | 
                                                        |
| 1231 | - * @param string $userId ID of the user  | 
                                                        |
| 1232 | - *  | 
                                                        |
| 1233 | -	 * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1234 | - *  | 
                                                        |
| 1235 | - * @throws OCSException  | 
                                                        |
| 1236 | - *  | 
                                                        |
| 1237 | - * 200: Wiped all user devices successfully  | 
                                                        |
| 1238 | - */  | 
                                                        |
| 1239 | - #[PasswordConfirmationRequired]  | 
                                                        |
| 1240 | - #[NoAdminRequired]  | 
                                                        |
| 1241 | -	public function wipeUserDevices(string $userId): DataResponse { | 
                                                        |
| 1242 | - /** @var IUser $currentLoggedInUser */  | 
                                                        |
| 1243 | - $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1244 | -  | 
                                                        |
| 1245 | - $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1246 | -  | 
                                                        |
| 1247 | -		if ($targetUser === null) { | 
                                                        |
| 1248 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1249 | - }  | 
                                                        |
| 1250 | -  | 
                                                        |
| 1251 | -		if ($targetUser->getUID() === $currentLoggedInUser->getUID()) { | 
                                                        |
| 1252 | -			throw new OCSException('', 101); | 
                                                        |
| 1253 | - }  | 
                                                        |
| 1254 | -  | 
                                                        |
| 1255 | - // If not permitted  | 
                                                        |
| 1256 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1257 | - $isAdmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1258 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1259 | -		if (!$isAdmin && !($isDelegatedAdmin && !$this->groupManager->isInGroup($targetUser->getUID(), 'admin')) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { | 
                                                        |
| 1260 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1261 | - }  | 
                                                        |
| 1262 | -  | 
                                                        |
| 1263 | - $this->remoteWipe->markAllTokensForWipe($targetUser);  | 
                                                        |
| 1264 | -  | 
                                                        |
| 1265 | - return new DataResponse();  | 
                                                        |
| 1266 | - }  | 
                                                        |
| 1267 | -  | 
                                                        |
| 1268 | - /**  | 
                                                        |
| 1269 | - * Delete a user  | 
                                                        |
| 1270 | - *  | 
                                                        |
| 1271 | - * @param string $userId ID of the user  | 
                                                        |
| 1272 | -	 * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1273 | - * @throws OCSException  | 
                                                        |
| 1274 | - *  | 
                                                        |
| 1275 | - * 200: User deleted successfully  | 
                                                        |
| 1276 | - */  | 
                                                        |
| 1277 | - #[PasswordConfirmationRequired]  | 
                                                        |
| 1278 | - #[NoAdminRequired]  | 
                                                        |
| 1279 | -	public function deleteUser(string $userId): DataResponse { | 
                                                        |
| 1280 | - $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1281 | -  | 
                                                        |
| 1282 | - $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1283 | -  | 
                                                        |
| 1284 | -		if ($targetUser === null) { | 
                                                        |
| 1285 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1286 | - }  | 
                                                        |
| 1287 | -  | 
                                                        |
| 1288 | -		if ($targetUser->getUID() === $currentLoggedInUser->getUID()) { | 
                                                        |
| 1289 | -			throw new OCSException('', 101); | 
                                                        |
| 1290 | - }  | 
                                                        |
| 1291 | -  | 
                                                        |
| 1292 | - // If not permitted  | 
                                                        |
| 1293 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1294 | - $isAdmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1295 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1296 | -		if (!$isAdmin && !($isDelegatedAdmin && !$this->groupManager->isInGroup($targetUser->getUID(), 'admin')) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { | 
                                                        |
| 1297 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1298 | - }  | 
                                                        |
| 1299 | -  | 
                                                        |
| 1300 | - // Go ahead with the delete  | 
                                                        |
| 1301 | -		if ($targetUser->delete()) { | 
                                                        |
| 1302 | - return new DataResponse();  | 
                                                        |
| 1303 | -		} else { | 
                                                        |
| 1304 | -			throw new OCSException('', 101); | 
                                                        |
| 1305 | - }  | 
                                                        |
| 1306 | - }  | 
                                                        |
| 1307 | -  | 
                                                        |
| 1308 | - /**  | 
                                                        |
| 1309 | - * Disable a user  | 
                                                        |
| 1310 | - *  | 
                                                        |
| 1311 | - * @param string $userId ID of the user  | 
                                                        |
| 1312 | -	 * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1313 | - * @throws OCSException  | 
                                                        |
| 1314 | - *  | 
                                                        |
| 1315 | - * 200: User disabled successfully  | 
                                                        |
| 1316 | - */  | 
                                                        |
| 1317 | - #[PasswordConfirmationRequired]  | 
                                                        |
| 1318 | - #[NoAdminRequired]  | 
                                                        |
| 1319 | -	public function disableUser(string $userId): DataResponse { | 
                                                        |
| 1320 | - return $this->setEnabled($userId, false);  | 
                                                        |
| 1321 | - }  | 
                                                        |
| 1322 | -  | 
                                                        |
| 1323 | - /**  | 
                                                        |
| 1324 | - * Enable a user  | 
                                                        |
| 1325 | - *  | 
                                                        |
| 1326 | - * @param string $userId ID of the user  | 
                                                        |
| 1327 | -	 * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1328 | - * @throws OCSException  | 
                                                        |
| 1329 | - *  | 
                                                        |
| 1330 | - * 200: User enabled successfully  | 
                                                        |
| 1331 | - */  | 
                                                        |
| 1332 | - #[PasswordConfirmationRequired]  | 
                                                        |
| 1333 | - #[NoAdminRequired]  | 
                                                        |
| 1334 | -	public function enableUser(string $userId): DataResponse { | 
                                                        |
| 1335 | - return $this->setEnabled($userId, true);  | 
                                                        |
| 1336 | - }  | 
                                                        |
| 1337 | -  | 
                                                        |
| 1338 | - /**  | 
                                                        |
| 1339 | - * @param string $userId  | 
                                                        |
| 1340 | - * @param bool $value  | 
                                                        |
| 1341 | -	 * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1342 | - * @throws OCSException  | 
                                                        |
| 1343 | - */  | 
                                                        |
| 1344 | -	private function setEnabled(string $userId, bool $value): DataResponse { | 
                                                        |
| 1345 | - $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1346 | -  | 
                                                        |
| 1347 | - $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1348 | -		if ($targetUser === null || $targetUser->getUID() === $currentLoggedInUser->getUID()) { | 
                                                        |
| 1349 | -			throw new OCSException('', 101); | 
                                                        |
| 1350 | - }  | 
                                                        |
| 1351 | -  | 
                                                        |
| 1352 | - // If not permitted  | 
                                                        |
| 1353 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1354 | - $isAdmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1355 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1356 | -		if (!$isAdmin && !($isDelegatedAdmin && !$this->groupManager->isInGroup($targetUser->getUID(), 'admin')) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { | 
                                                        |
| 1357 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1358 | - }  | 
                                                        |
| 1359 | -  | 
                                                        |
| 1360 | - // enable/disable the user now  | 
                                                        |
| 1361 | - $targetUser->setEnabled($value);  | 
                                                        |
| 1362 | - return new DataResponse();  | 
                                                        |
| 1363 | - }  | 
                                                        |
| 1364 | -  | 
                                                        |
| 1365 | - /**  | 
                                                        |
| 1366 | - * @NoSubAdminRequired  | 
                                                        |
| 1367 | - *  | 
                                                        |
| 1368 | - * Get a list of groups the user belongs to  | 
                                                        |
| 1369 | - *  | 
                                                        |
| 1370 | - * @param string $userId ID of the user  | 
                                                        |
| 1371 | -	 * @return DataResponse<Http::STATUS_OK, array{groups: list<string>}, array{}> | 
                                                        |
| 1372 | - * @throws OCSException  | 
                                                        |
| 1373 | - *  | 
                                                        |
| 1374 | - * 200: Users groups returned  | 
                                                        |
| 1375 | - */  | 
                                                        |
| 1376 | - #[NoAdminRequired]  | 
                                                        |
| 1377 | -	public function getUsersGroups(string $userId): DataResponse { | 
                                                        |
| 1378 | - $loggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1379 | -  | 
                                                        |
| 1380 | - $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1381 | -		if ($targetUser === null) { | 
                                                        |
| 1382 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1383 | - }  | 
                                                        |
| 1384 | -  | 
                                                        |
| 1385 | - $isAdmin = $this->groupManager->isAdmin($loggedInUser->getUID());  | 
                                                        |
| 1386 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($loggedInUser->getUID());  | 
                                                        |
| 1387 | -		if ($targetUser->getUID() === $loggedInUser->getUID() || $isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 1388 | - // Self lookup or admin lookup  | 
                                                        |
| 1389 | - return new DataResponse([  | 
                                                        |
| 1390 | - 'groups' => $this->groupManager->getUserGroupIds($targetUser)  | 
                                                        |
| 1391 | - ]);  | 
                                                        |
| 1392 | -		} else { | 
                                                        |
| 1393 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1394 | -  | 
                                                        |
| 1395 | - // Looking up someone else  | 
                                                        |
| 1396 | -			if ($subAdminManager->isUserAccessible($loggedInUser, $targetUser)) { | 
                                                        |
| 1397 | - // Return the group that the method caller is subadmin of for the user in question  | 
                                                        |
| 1398 | - $groups = array_values(array_intersect(  | 
                                                        |
| 1399 | - array_map(static fn (IGroup $group) => $group->getGID(), $subAdminManager->getSubAdminsGroups($loggedInUser)),  | 
                                                        |
| 1400 | - $this->groupManager->getUserGroupIds($targetUser)  | 
                                                        |
| 1401 | - ));  | 
                                                        |
| 1402 | - return new DataResponse(['groups' => $groups]);  | 
                                                        |
| 1403 | -			} else { | 
                                                        |
| 1404 | - // Not permitted  | 
                                                        |
| 1405 | -				throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1406 | - }  | 
                                                        |
| 1407 | - }  | 
                                                        |
| 1408 | - }  | 
                                                        |
| 1409 | -  | 
                                                        |
| 1410 | - /**  | 
                                                        |
| 1411 | - * @NoSubAdminRequired  | 
                                                        |
| 1412 | - *  | 
                                                        |
| 1413 | - * Get a list of groups with details  | 
                                                        |
| 1414 | - *  | 
                                                        |
| 1415 | - * @param string $userId ID of the user  | 
                                                        |
| 1416 | -	 * @return DataResponse<Http::STATUS_OK, array{groups: list<Provisioning_APIGroupDetails>}, array{}> | 
                                                        |
| 1417 | - * @throws OCSException  | 
                                                        |
| 1418 | - *  | 
                                                        |
| 1419 | - * 200: Users groups returned  | 
                                                        |
| 1420 | - */  | 
                                                        |
| 1421 | - #[NoAdminRequired]  | 
                                                        |
| 1422 | -	public function getUsersGroupsDetails(string $userId): DataResponse { | 
                                                        |
| 1423 | - $loggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1424 | -  | 
                                                        |
| 1425 | - $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1426 | -		if ($targetUser === null) { | 
                                                        |
| 1427 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1428 | - }  | 
                                                        |
| 1429 | -  | 
                                                        |
| 1430 | - $isAdmin = $this->groupManager->isAdmin($loggedInUser->getUID());  | 
                                                        |
| 1431 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($loggedInUser->getUID());  | 
                                                        |
| 1432 | -		if ($targetUser->getUID() === $loggedInUser->getUID() || $isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 1433 | - // Self lookup or admin lookup  | 
                                                        |
| 1434 | - $groups = array_map(  | 
                                                        |
| 1435 | -				function (Group $group) { | 
                                                        |
| 1436 | - return [  | 
                                                        |
| 1437 | - 'id' => $group->getGID(),  | 
                                                        |
| 1438 | - 'displayname' => $group->getDisplayName(),  | 
                                                        |
| 1439 | - 'usercount' => $group->count(),  | 
                                                        |
| 1440 | - 'disabled' => $group->countDisabled(),  | 
                                                        |
| 1441 | - 'canAdd' => $group->canAddUser(),  | 
                                                        |
| 1442 | - 'canRemove' => $group->canRemoveUser(),  | 
                                                        |
| 1443 | - ];  | 
                                                        |
| 1444 | - },  | 
                                                        |
| 1445 | - array_values($this->groupManager->getUserGroups($targetUser)),  | 
                                                        |
| 1446 | - );  | 
                                                        |
| 1447 | - return new DataResponse([  | 
                                                        |
| 1448 | - 'groups' => $groups,  | 
                                                        |
| 1449 | - ]);  | 
                                                        |
| 1450 | -		} else { | 
                                                        |
| 1451 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1452 | -  | 
                                                        |
| 1453 | - // Looking up someone else  | 
                                                        |
| 1454 | -			if ($subAdminManager->isUserAccessible($loggedInUser, $targetUser)) { | 
                                                        |
| 1455 | - // Return the group that the method caller is subadmin of for the user in question  | 
                                                        |
| 1456 | - $gids = array_values(array_intersect(  | 
                                                        |
| 1457 | - array_map(  | 
                                                        |
| 1458 | - static fn (IGroup $group) => $group->getGID(),  | 
                                                        |
| 1459 | - $subAdminManager->getSubAdminsGroups($loggedInUser),  | 
                                                        |
| 1460 | - ),  | 
                                                        |
| 1461 | - $this->groupManager->getUserGroupIds($targetUser)  | 
                                                        |
| 1462 | - ));  | 
                                                        |
| 1463 | - $groups = array_map(  | 
                                                        |
| 1464 | -					function (string $gid) { | 
                                                        |
| 1465 | - $group = $this->groupManager->get($gid);  | 
                                                        |
| 1466 | - return [  | 
                                                        |
| 1467 | - 'id' => $group->getGID(),  | 
                                                        |
| 1468 | - 'displayname' => $group->getDisplayName(),  | 
                                                        |
| 1469 | - 'usercount' => $group->count(),  | 
                                                        |
| 1470 | - 'disabled' => $group->countDisabled(),  | 
                                                        |
| 1471 | - 'canAdd' => $group->canAddUser(),  | 
                                                        |
| 1472 | - 'canRemove' => $group->canRemoveUser(),  | 
                                                        |
| 1473 | - ];  | 
                                                        |
| 1474 | - },  | 
                                                        |
| 1475 | - $gids,  | 
                                                        |
| 1476 | - );  | 
                                                        |
| 1477 | - return new DataResponse([  | 
                                                        |
| 1478 | - 'groups' => $groups,  | 
                                                        |
| 1479 | - ]);  | 
                                                        |
| 1480 | -			} else { | 
                                                        |
| 1481 | - // Not permitted  | 
                                                        |
| 1482 | -				throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1483 | - }  | 
                                                        |
| 1484 | - }  | 
                                                        |
| 1485 | - }  | 
                                                        |
| 1486 | -  | 
                                                        |
| 1487 | - /**  | 
                                                        |
| 1488 | - * @NoSubAdminRequired  | 
                                                        |
| 1489 | - *  | 
                                                        |
| 1490 | - * Get a list of the groups the user is a subadmin of, with details  | 
                                                        |
| 1491 | - *  | 
                                                        |
| 1492 | - * @param string $userId ID of the user  | 
                                                        |
| 1493 | -	 * @return DataResponse<Http::STATUS_OK, array{groups: list<Provisioning_APIGroupDetails>}, array{}> | 
                                                        |
| 1494 | - * @throws OCSException  | 
                                                        |
| 1495 | - *  | 
                                                        |
| 1496 | - * 200: Users subadmin groups returned  | 
                                                        |
| 1497 | - */  | 
                                                        |
| 1498 | - #[NoAdminRequired]  | 
                                                        |
| 1499 | -	public function getUserSubAdminGroupsDetails(string $userId): DataResponse { | 
                                                        |
| 1500 | - $loggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1501 | -  | 
                                                        |
| 1502 | - $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1503 | -		if ($targetUser === null) { | 
                                                        |
| 1504 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1505 | - }  | 
                                                        |
| 1506 | -  | 
                                                        |
| 1507 | - $isAdmin = $this->groupManager->isAdmin($loggedInUser->getUID());  | 
                                                        |
| 1508 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($loggedInUser->getUID());  | 
                                                        |
| 1509 | -		if ($targetUser->getUID() === $loggedInUser->getUID() || $isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 1510 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1511 | - $groups = array_map(  | 
                                                        |
| 1512 | -				function (IGroup $group) { | 
                                                        |
| 1513 | - return [  | 
                                                        |
| 1514 | - 'id' => $group->getGID(),  | 
                                                        |
| 1515 | - 'displayname' => $group->getDisplayName(),  | 
                                                        |
| 1516 | - 'usercount' => $group->count(),  | 
                                                        |
| 1517 | - 'disabled' => $group->countDisabled(),  | 
                                                        |
| 1518 | - 'canAdd' => $group->canAddUser(),  | 
                                                        |
| 1519 | - 'canRemove' => $group->canRemoveUser(),  | 
                                                        |
| 1520 | - ];  | 
                                                        |
| 1521 | - },  | 
                                                        |
| 1522 | - array_values($subAdminManager->getSubAdminsGroups($targetUser)),  | 
                                                        |
| 1523 | - );  | 
                                                        |
| 1524 | - return new DataResponse([  | 
                                                        |
| 1525 | - 'groups' => $groups,  | 
                                                        |
| 1526 | - ]);  | 
                                                        |
| 1527 | - }  | 
                                                        |
| 1528 | -		throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1529 | - }  | 
                                                        |
| 1530 | -  | 
                                                        |
| 1531 | - /**  | 
                                                        |
| 1532 | - * Add a user to a group  | 
                                                        |
| 1533 | - *  | 
                                                        |
| 1534 | - * @param string $userId ID of the user  | 
                                                        |
| 1535 | - * @param string $groupid ID of the group  | 
                                                        |
| 1536 | -	 * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1537 | - * @throws OCSException  | 
                                                        |
| 1538 | - *  | 
                                                        |
| 1539 | - * 200: User added to group successfully  | 
                                                        |
| 1540 | - */  | 
                                                        |
| 1541 | - #[PasswordConfirmationRequired]  | 
                                                        |
| 1542 | - #[NoAdminRequired]  | 
                                                        |
| 1543 | -	public function addToGroup(string $userId, string $groupid = ''): DataResponse { | 
                                                        |
| 1544 | -		if ($groupid === '') { | 
                                                        |
| 1545 | -			throw new OCSException('', 101); | 
                                                        |
| 1546 | - }  | 
                                                        |
| 1547 | -  | 
                                                        |
| 1548 | - $group = $this->groupManager->get($groupid);  | 
                                                        |
| 1549 | - $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1550 | -		if ($group === null) { | 
                                                        |
| 1551 | -			throw new OCSException('', 102); | 
                                                        |
| 1552 | - }  | 
                                                        |
| 1553 | -		if ($targetUser === null) { | 
                                                        |
| 1554 | -			throw new OCSException('', 103); | 
                                                        |
| 1555 | - }  | 
                                                        |
| 1556 | -  | 
                                                        |
| 1557 | - // If they're not an admin, check they are a subadmin of the group in question  | 
                                                        |
| 1558 | - $loggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1559 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1560 | - $isAdmin = $this->groupManager->isAdmin($loggedInUser->getUID());  | 
                                                        |
| 1561 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($loggedInUser->getUID());  | 
                                                        |
| 1562 | -		if (!$isAdmin && !($isDelegatedAdmin && $groupid !== 'admin') && !$subAdminManager->isSubAdminOfGroup($loggedInUser, $group)) { | 
                                                        |
| 1563 | -			throw new OCSException('', 104); | 
                                                        |
| 1564 | - }  | 
                                                        |
| 1565 | -  | 
                                                        |
| 1566 | - // Add user to group  | 
                                                        |
| 1567 | - $group->addUser($targetUser);  | 
                                                        |
| 1568 | - return new DataResponse();  | 
                                                        |
| 1569 | - }  | 
                                                        |
| 1570 | -  | 
                                                        |
| 1571 | - /**  | 
                                                        |
| 1572 | - * Remove a user from a group  | 
                                                        |
| 1573 | - *  | 
                                                        |
| 1574 | - * @param string $userId ID of the user  | 
                                                        |
| 1575 | - * @param string $groupid ID of the group  | 
                                                        |
| 1576 | -	 * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1577 | - * @throws OCSException  | 
                                                        |
| 1578 | - *  | 
                                                        |
| 1579 | - * 200: User removed from group successfully  | 
                                                        |
| 1580 | - */  | 
                                                        |
| 1581 | - #[PasswordConfirmationRequired]  | 
                                                        |
| 1582 | - #[NoAdminRequired]  | 
                                                        |
| 1583 | -	public function removeFromGroup(string $userId, string $groupid): DataResponse { | 
                                                        |
| 1584 | - $loggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1585 | -  | 
                                                        |
| 1586 | -		if ($groupid === null || trim($groupid) === '') { | 
                                                        |
| 1587 | -			throw new OCSException('', 101); | 
                                                        |
| 1588 | - }  | 
                                                        |
| 1589 | -  | 
                                                        |
| 1590 | - $group = $this->groupManager->get($groupid);  | 
                                                        |
| 1591 | -		if ($group === null) { | 
                                                        |
| 1592 | -			throw new OCSException('', 102); | 
                                                        |
| 1593 | - }  | 
                                                        |
| 1594 | -  | 
                                                        |
| 1595 | - $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1596 | -		if ($targetUser === null) { | 
                                                        |
| 1597 | -			throw new OCSException('', 103); | 
                                                        |
| 1598 | - }  | 
                                                        |
| 1599 | -  | 
                                                        |
| 1600 | - // If they're not an admin, check they are a subadmin of the group in question  | 
                                                        |
| 1601 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1602 | - $isAdmin = $this->groupManager->isAdmin($loggedInUser->getUID());  | 
                                                        |
| 1603 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($loggedInUser->getUID());  | 
                                                        |
| 1604 | -		if (!$isAdmin && !($isDelegatedAdmin && $groupid !== 'admin') && !$subAdminManager->isSubAdminOfGroup($loggedInUser, $group)) { | 
                                                        |
| 1605 | -			throw new OCSException('', 104); | 
                                                        |
| 1606 | - }  | 
                                                        |
| 1607 | -  | 
                                                        |
| 1608 | - // Check they aren't removing themselves from 'admin' or their 'subadmin; group  | 
                                                        |
| 1609 | -		if ($targetUser->getUID() === $loggedInUser->getUID()) { | 
                                                        |
| 1610 | -			if ($isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 1611 | -				if ($group->getGID() === 'admin') { | 
                                                        |
| 1612 | -					throw new OCSException($this->l10n->t('Cannot remove yourself from the admin group'), 105); | 
                                                        |
| 1613 | - }  | 
                                                        |
| 1614 | -			} else { | 
                                                        |
| 1615 | - // Not an admin, so the user must be a subadmin of this group, but that is not allowed.  | 
                                                        |
| 1616 | -				throw new OCSException($this->l10n->t('Cannot remove yourself from this group as you are a sub-admin'), 105); | 
                                                        |
| 1617 | - }  | 
                                                        |
| 1618 | -		} elseif (!($isAdmin || $isDelegatedAdmin)) { | 
                                                        |
| 1619 | - /** @var IGroup[] $subAdminGroups */  | 
                                                        |
| 1620 | - $subAdminGroups = $subAdminManager->getSubAdminsGroups($loggedInUser);  | 
                                                        |
| 1621 | -			$subAdminGroups = array_map(function (IGroup $subAdminGroup) { | 
                                                        |
| 1622 | - return $subAdminGroup->getGID();  | 
                                                        |
| 1623 | - }, $subAdminGroups);  | 
                                                        |
| 1624 | - $userGroups = $this->groupManager->getUserGroupIds($targetUser);  | 
                                                        |
| 1625 | - $userSubAdminGroups = array_intersect($subAdminGroups, $userGroups);  | 
                                                        |
| 1626 | -  | 
                                                        |
| 1627 | -			if (count($userSubAdminGroups) <= 1) { | 
                                                        |
| 1628 | - // Subadmin must not be able to remove a user from all their subadmin groups.  | 
                                                        |
| 1629 | -				throw new OCSException($this->l10n->t('Not viable to remove user from the last group you are sub-admin of'), 105); | 
                                                        |
| 1630 | - }  | 
                                                        |
| 1631 | - }  | 
                                                        |
| 1632 | -  | 
                                                        |
| 1633 | - // Remove user from group  | 
                                                        |
| 1634 | - $group->removeUser($targetUser);  | 
                                                        |
| 1635 | - return new DataResponse();  | 
                                                        |
| 1636 | - }  | 
                                                        |
| 1637 | -  | 
                                                        |
| 1638 | - /**  | 
                                                        |
| 1639 | - * Make a user a subadmin of a group  | 
                                                        |
| 1640 | - *  | 
                                                        |
| 1641 | - * @param string $userId ID of the user  | 
                                                        |
| 1642 | - * @param string $groupid ID of the group  | 
                                                        |
| 1643 | -	 * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1644 | - * @throws OCSException  | 
                                                        |
| 1645 | - *  | 
                                                        |
| 1646 | - * 200: User added as group subadmin successfully  | 
                                                        |
| 1647 | - */  | 
                                                        |
| 1648 | - #[AuthorizedAdminSetting(settings:Users::class)]  | 
                                                        |
| 1649 | - #[PasswordConfirmationRequired]  | 
                                                        |
| 1650 | -	public function addSubAdmin(string $userId, string $groupid): DataResponse { | 
                                                        |
| 1651 | - $group = $this->groupManager->get($groupid);  | 
                                                        |
| 1652 | - $user = $this->userManager->get($userId);  | 
                                                        |
| 1653 | -  | 
                                                        |
| 1654 | - // Check if the user exists  | 
                                                        |
| 1655 | -		if ($user === null) { | 
                                                        |
| 1656 | -			throw new OCSException($this->l10n->t('User does not exist'), 101); | 
                                                        |
| 1657 | - }  | 
                                                        |
| 1658 | - // Check if group exists  | 
                                                        |
| 1659 | -		if ($group === null) { | 
                                                        |
| 1660 | -			throw new OCSException($this->l10n->t('Group does not exist'), 102); | 
                                                        |
| 1661 | - }  | 
                                                        |
| 1662 | - // Check if trying to make subadmin of admin group  | 
                                                        |
| 1663 | -		if ($group->getGID() === 'admin') { | 
                                                        |
| 1664 | -			throw new OCSException($this->l10n->t('Cannot create sub-admins for admin group'), 103); | 
                                                        |
| 1665 | - }  | 
                                                        |
| 1666 | -  | 
                                                        |
| 1667 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1668 | -  | 
                                                        |
| 1669 | - // We cannot be subadmin twice  | 
                                                        |
| 1670 | -		if ($subAdminManager->isSubAdminOfGroup($user, $group)) { | 
                                                        |
| 1671 | - return new DataResponse();  | 
                                                        |
| 1672 | - }  | 
                                                        |
| 1673 | - // Go  | 
                                                        |
| 1674 | - $subAdminManager->createSubAdmin($user, $group);  | 
                                                        |
| 1675 | - return new DataResponse();  | 
                                                        |
| 1676 | - }  | 
                                                        |
| 1677 | -  | 
                                                        |
| 1678 | - /**  | 
                                                        |
| 1679 | - * Remove a user from the subadmins of a group  | 
                                                        |
| 1680 | - *  | 
                                                        |
| 1681 | - * @param string $userId ID of the user  | 
                                                        |
| 1682 | - * @param string $groupid ID of the group  | 
                                                        |
| 1683 | -	 * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1684 | - * @throws OCSException  | 
                                                        |
| 1685 | - *  | 
                                                        |
| 1686 | - * 200: User removed as group subadmin successfully  | 
                                                        |
| 1687 | - */  | 
                                                        |
| 1688 | - #[AuthorizedAdminSetting(settings:Users::class)]  | 
                                                        |
| 1689 | - #[PasswordConfirmationRequired]  | 
                                                        |
| 1690 | -	public function removeSubAdmin(string $userId, string $groupid): DataResponse { | 
                                                        |
| 1691 | - $group = $this->groupManager->get($groupid);  | 
                                                        |
| 1692 | - $user = $this->userManager->get($userId);  | 
                                                        |
| 1693 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1694 | -  | 
                                                        |
| 1695 | - // Check if the user exists  | 
                                                        |
| 1696 | -		if ($user === null) { | 
                                                        |
| 1697 | -			throw new OCSException($this->l10n->t('User does not exist'), 101); | 
                                                        |
| 1698 | - }  | 
                                                        |
| 1699 | - // Check if the group exists  | 
                                                        |
| 1700 | -		if ($group === null) { | 
                                                        |
| 1701 | -			throw new OCSException($this->l10n->t('Group does not exist'), 101); | 
                                                        |
| 1702 | - }  | 
                                                        |
| 1703 | - // Check if they are a subadmin of this said group  | 
                                                        |
| 1704 | -		if (!$subAdminManager->isSubAdminOfGroup($user, $group)) { | 
                                                        |
| 1705 | -			throw new OCSException($this->l10n->t('User is not a sub-admin of this group'), 102); | 
                                                        |
| 1706 | - }  | 
                                                        |
| 1707 | -  | 
                                                        |
| 1708 | - // Go  | 
                                                        |
| 1709 | - $subAdminManager->deleteSubAdmin($user, $group);  | 
                                                        |
| 1710 | - return new DataResponse();  | 
                                                        |
| 1711 | - }  | 
                                                        |
| 1712 | -  | 
                                                        |
| 1713 | - /**  | 
                                                        |
| 1714 | - * Get the groups a user is a subadmin of  | 
                                                        |
| 1715 | - *  | 
                                                        |
| 1716 | - * @param string $userId ID if the user  | 
                                                        |
| 1717 | -	 * @return DataResponse<Http::STATUS_OK, list<string>, array{}> | 
                                                        |
| 1718 | - * @throws OCSException  | 
                                                        |
| 1719 | - *  | 
                                                        |
| 1720 | - * 200: User subadmin groups returned  | 
                                                        |
| 1721 | - */  | 
                                                        |
| 1722 | - #[AuthorizedAdminSetting(settings:Users::class)]  | 
                                                        |
| 1723 | -	public function getUserSubAdminGroups(string $userId): DataResponse { | 
                                                        |
| 1724 | - $groups = $this->getUserSubAdminGroupsData($userId);  | 
                                                        |
| 1725 | - return new DataResponse($groups);  | 
                                                        |
| 1726 | - }  | 
                                                        |
| 1727 | -  | 
                                                        |
| 1728 | - /**  | 
                                                        |
| 1729 | - * Resend the welcome message  | 
                                                        |
| 1730 | - *  | 
                                                        |
| 1731 | - * @param string $userId ID if the user  | 
                                                        |
| 1732 | -	 * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1733 | - * @throws OCSException  | 
                                                        |
| 1734 | - *  | 
                                                        |
| 1735 | - * 200: Resent welcome message successfully  | 
                                                        |
| 1736 | - */  | 
                                                        |
| 1737 | - #[PasswordConfirmationRequired]  | 
                                                        |
| 1738 | - #[NoAdminRequired]  | 
                                                        |
| 1739 | -	public function resendWelcomeMessage(string $userId): DataResponse { | 
                                                        |
| 1740 | - $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1741 | -  | 
                                                        |
| 1742 | - $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1743 | -		if ($targetUser === null) { | 
                                                        |
| 1744 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1745 | - }  | 
                                                        |
| 1746 | -  | 
                                                        |
| 1747 | - // Check if admin / subadmin  | 
                                                        |
| 1748 | - $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1749 | - $isAdmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1750 | - $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1751 | - if (  | 
                                                        |
| 1752 | - !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)  | 
                                                        |
| 1753 | - && !($isAdmin || $isDelegatedAdmin)  | 
                                                        |
| 1754 | -		) { | 
                                                        |
| 1755 | - // No rights  | 
                                                        |
| 1756 | -			throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1757 | - }  | 
                                                        |
| 1758 | -  | 
                                                        |
| 1759 | - $email = $targetUser->getEMailAddress();  | 
                                                        |
| 1760 | -		if ($email === '' || $email === null) { | 
                                                        |
| 1761 | -			throw new OCSException($this->l10n->t('Email address not available'), 101); | 
                                                        |
| 1762 | - }  | 
                                                        |
| 1763 | -  | 
                                                        |
| 1764 | -		try { | 
                                                        |
| 1765 | -			if ($this->config->getUserValue($targetUser->getUID(), 'core', 'lostpassword')) { | 
                                                        |
| 1766 | - $emailTemplate = $this->newUserMailHelper->generateTemplate($targetUser, true);  | 
                                                        |
| 1767 | -			} else { | 
                                                        |
| 1768 | - $emailTemplate = $this->newUserMailHelper->generateTemplate($targetUser, false);  | 
                                                        |
| 1769 | - }  | 
                                                        |
| 1770 | -  | 
                                                        |
| 1771 | - $this->newUserMailHelper->sendMail($targetUser, $emailTemplate);  | 
                                                        |
| 1772 | -		} catch (\Exception $e) { | 
                                                        |
| 1773 | - $this->logger->error(  | 
                                                        |
| 1774 | - "Can't send new user mail to $email",  | 
                                                        |
| 1775 | - [  | 
                                                        |
| 1776 | - 'app' => 'settings',  | 
                                                        |
| 1777 | - 'exception' => $e,  | 
                                                        |
| 1778 | - ]  | 
                                                        |
| 1779 | - );  | 
                                                        |
| 1780 | -			throw new OCSException($this->l10n->t('Sending email failed'), 102); | 
                                                        |
| 1781 | - }  | 
                                                        |
| 1782 | -  | 
                                                        |
| 1783 | - return new DataResponse();  | 
                                                        |
| 1784 | - }  | 
                                                        |
| 61 | + private IL10N $l10n;  | 
                                                        |
| 62 | +  | 
                                                        |
| 63 | + public function __construct(  | 
                                                        |
| 64 | + string $appName,  | 
                                                        |
| 65 | + IRequest $request,  | 
                                                        |
| 66 | + IUserManager $userManager,  | 
                                                        |
| 67 | + IConfig $config,  | 
                                                        |
| 68 | + IGroupManager $groupManager,  | 
                                                        |
| 69 | + IUserSession $userSession,  | 
                                                        |
| 70 | + IAccountManager $accountManager,  | 
                                                        |
| 71 | + ISubAdmin $subAdminManager,  | 
                                                        |
| 72 | + IFactory $l10nFactory,  | 
                                                        |
| 73 | + IRootFolder $rootFolder,  | 
                                                        |
| 74 | + private IURLGenerator $urlGenerator,  | 
                                                        |
| 75 | + private LoggerInterface $logger,  | 
                                                        |
| 76 | + private NewUserMailHelper $newUserMailHelper,  | 
                                                        |
| 77 | + private ISecureRandom $secureRandom,  | 
                                                        |
| 78 | + private RemoteWipe $remoteWipe,  | 
                                                        |
| 79 | + private KnownUserService $knownUserService,  | 
                                                        |
| 80 | + private IEventDispatcher $eventDispatcher,  | 
                                                        |
| 81 | + private IPhoneNumberUtil $phoneNumberUtil,  | 
                                                        |
| 82 | +    ) { | 
                                                        |
| 83 | + parent::__construct(  | 
                                                        |
| 84 | + $appName,  | 
                                                        |
| 85 | + $request,  | 
                                                        |
| 86 | + $userManager,  | 
                                                        |
| 87 | + $config,  | 
                                                        |
| 88 | + $groupManager,  | 
                                                        |
| 89 | + $userSession,  | 
                                                        |
| 90 | + $accountManager,  | 
                                                        |
| 91 | + $subAdminManager,  | 
                                                        |
| 92 | + $l10nFactory,  | 
                                                        |
| 93 | + $rootFolder,  | 
                                                        |
| 94 | + );  | 
                                                        |
| 95 | +  | 
                                                        |
| 96 | + $this->l10n = $l10nFactory->get($appName);  | 
                                                        |
| 97 | + }  | 
                                                        |
| 98 | +  | 
                                                        |
| 99 | + /**  | 
                                                        |
| 100 | + * Get a list of users  | 
                                                        |
| 101 | + *  | 
                                                        |
| 102 | + * @param string $search Text to search for  | 
                                                        |
| 103 | + * @param int|null $limit Limit the amount of groups returned  | 
                                                        |
| 104 | + * @param int $offset Offset for searching for groups  | 
                                                        |
| 105 | +     * @return DataResponse<Http::STATUS_OK, array{users: list<string>}, array{}> | 
                                                        |
| 106 | + *  | 
                                                        |
| 107 | + * 200: Users returned  | 
                                                        |
| 108 | + */  | 
                                                        |
| 109 | + #[NoAdminRequired]  | 
                                                        |
| 110 | +    public function getUsers(string $search = '', ?int $limit = null, int $offset = 0): DataResponse { | 
                                                        |
| 111 | + $user = $this->userSession->getUser();  | 
                                                        |
| 112 | + $users = [];  | 
                                                        |
| 113 | +  | 
                                                        |
| 114 | + // Admin? Or SubAdmin?  | 
                                                        |
| 115 | + $uid = $user->getUID();  | 
                                                        |
| 116 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 117 | + $isAdmin = $this->groupManager->isAdmin($uid);  | 
                                                        |
| 118 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($uid);  | 
                                                        |
| 119 | +        if ($isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 120 | + $users = $this->userManager->search($search, $limit, $offset);  | 
                                                        |
| 121 | +        } elseif ($subAdminManager->isSubAdmin($user)) { | 
                                                        |
| 122 | + $subAdminOfGroups = $subAdminManager->getSubAdminsGroups($user);  | 
                                                        |
| 123 | +            foreach ($subAdminOfGroups as $key => $group) { | 
                                                        |
| 124 | + $subAdminOfGroups[$key] = $group->getGID();  | 
                                                        |
| 125 | + }  | 
                                                        |
| 126 | +  | 
                                                        |
| 127 | + $users = [];  | 
                                                        |
| 128 | +            foreach ($subAdminOfGroups as $group) { | 
                                                        |
| 129 | + $users = array_merge($users, $this->groupManager->displayNamesInGroup($group, $search, $limit, $offset));  | 
                                                        |
| 130 | + }  | 
                                                        |
| 131 | + }  | 
                                                        |
| 132 | +  | 
                                                        |
| 133 | + /** @var list<string> $users */  | 
                                                        |
| 134 | + $users = array_keys($users);  | 
                                                        |
| 135 | +  | 
                                                        |
| 136 | + return new DataResponse([  | 
                                                        |
| 137 | + 'users' => $users  | 
                                                        |
| 138 | + ]);  | 
                                                        |
| 139 | + }  | 
                                                        |
| 140 | +  | 
                                                        |
| 141 | + /**  | 
                                                        |
| 142 | + * Get a list of users and their details  | 
                                                        |
| 143 | + *  | 
                                                        |
| 144 | + * @param string $search Text to search for  | 
                                                        |
| 145 | + * @param int|null $limit Limit the amount of groups returned  | 
                                                        |
| 146 | + * @param int $offset Offset for searching for groups  | 
                                                        |
| 147 | +     * @return DataResponse<Http::STATUS_OK, array{users: array<string, Provisioning_APIUserDetails|array{id: string}>}, array{}> | 
                                                        |
| 148 | + *  | 
                                                        |
| 149 | + * 200: Users details returned  | 
                                                        |
| 150 | + */  | 
                                                        |
| 151 | + #[NoAdminRequired]  | 
                                                        |
| 152 | +    public function getUsersDetails(string $search = '', ?int $limit = null, int $offset = 0): DataResponse { | 
                                                        |
| 153 | + $currentUser = $this->userSession->getUser();  | 
                                                        |
| 154 | + $users = [];  | 
                                                        |
| 155 | +  | 
                                                        |
| 156 | + // Admin? Or SubAdmin?  | 
                                                        |
| 157 | + $uid = $currentUser->getUID();  | 
                                                        |
| 158 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 159 | + $isAdmin = $this->groupManager->isAdmin($uid);  | 
                                                        |
| 160 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($uid);  | 
                                                        |
| 161 | +        if ($isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 162 | + $users = $this->userManager->search($search, $limit, $offset);  | 
                                                        |
| 163 | + $users = array_keys($users);  | 
                                                        |
| 164 | +        } elseif ($subAdminManager->isSubAdmin($currentUser)) { | 
                                                        |
| 165 | + $subAdminOfGroups = $subAdminManager->getSubAdminsGroups($currentUser);  | 
                                                        |
| 166 | +            foreach ($subAdminOfGroups as $key => $group) { | 
                                                        |
| 167 | + $subAdminOfGroups[$key] = $group->getGID();  | 
                                                        |
| 168 | + }  | 
                                                        |
| 169 | +  | 
                                                        |
| 170 | + $users = [];  | 
                                                        |
| 171 | +            foreach ($subAdminOfGroups as $group) { | 
                                                        |
| 172 | + $users[] = array_keys($this->groupManager->displayNamesInGroup($group, $search, $limit, $offset));  | 
                                                        |
| 173 | + }  | 
                                                        |
| 174 | + $users = array_merge(...$users);  | 
                                                        |
| 175 | + }  | 
                                                        |
| 176 | +  | 
                                                        |
| 177 | + $usersDetails = [];  | 
                                                        |
| 178 | +        foreach ($users as $userId) { | 
                                                        |
| 179 | + $userId = (string)$userId;  | 
                                                        |
| 180 | +            try { | 
                                                        |
| 181 | + $userData = $this->getUserData($userId);  | 
                                                        |
| 182 | +            } catch (OCSNotFoundException $e) { | 
                                                        |
| 183 | + // We still want to return all other accounts, but this one was removed from the backends  | 
                                                        |
| 184 | + // yet they are still in our database. Might be a LDAP remnant.  | 
                                                        |
| 185 | + $userData = null;  | 
                                                        |
| 186 | +                $this->logger->warning('Found one enabled account that is removed from its backend, but still exists in Nextcloud database', ['accountId' => $userId]); | 
                                                        |
| 187 | + }  | 
                                                        |
| 188 | + // Do not insert empty entry  | 
                                                        |
| 189 | +            if ($userData !== null) { | 
                                                        |
| 190 | + $usersDetails[$userId] = $userData;  | 
                                                        |
| 191 | +            } else { | 
                                                        |
| 192 | + // Logged user does not have permissions to see this user  | 
                                                        |
| 193 | + // only showing its id  | 
                                                        |
| 194 | + $usersDetails[$userId] = ['id' => $userId];  | 
                                                        |
| 195 | + }  | 
                                                        |
| 196 | + }  | 
                                                        |
| 197 | +  | 
                                                        |
| 198 | + return new DataResponse([  | 
                                                        |
| 199 | + 'users' => $usersDetails  | 
                                                        |
| 200 | + ]);  | 
                                                        |
| 201 | + }  | 
                                                        |
| 202 | +  | 
                                                        |
| 203 | + /**  | 
                                                        |
| 204 | + * Get the list of disabled users and their details  | 
                                                        |
| 205 | + *  | 
                                                        |
| 206 | + * @param string $search Text to search for  | 
                                                        |
| 207 | + * @param ?int $limit Limit the amount of users returned  | 
                                                        |
| 208 | + * @param int $offset Offset  | 
                                                        |
| 209 | +     * @return DataResponse<Http::STATUS_OK, array{users: array<string, Provisioning_APIUserDetails|array{id: string}>}, array{}> | 
                                                        |
| 210 | + *  | 
                                                        |
| 211 | + * 200: Disabled users details returned  | 
                                                        |
| 212 | + */  | 
                                                        |
| 213 | + #[NoAdminRequired]  | 
                                                        |
| 214 | +    public function getDisabledUsersDetails(string $search = '', ?int $limit = null, int $offset = 0): DataResponse { | 
                                                        |
| 215 | + $currentUser = $this->userSession->getUser();  | 
                                                        |
| 216 | +        if ($currentUser === null) { | 
                                                        |
| 217 | + return new DataResponse(['users' => []]);  | 
                                                        |
| 218 | + }  | 
                                                        |
| 219 | +        if ($limit !== null && $limit < 0) { | 
                                                        |
| 220 | +            throw new InvalidArgumentException("Invalid limit value: $limit"); | 
                                                        |
| 221 | + }  | 
                                                        |
| 222 | +        if ($offset < 0) { | 
                                                        |
| 223 | +            throw new InvalidArgumentException("Invalid offset value: $offset"); | 
                                                        |
| 224 | + }  | 
                                                        |
| 225 | +  | 
                                                        |
| 226 | + $users = [];  | 
                                                        |
| 227 | +  | 
                                                        |
| 228 | + // Admin? Or SubAdmin?  | 
                                                        |
| 229 | + $uid = $currentUser->getUID();  | 
                                                        |
| 230 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 231 | + $isAdmin = $this->groupManager->isAdmin($uid);  | 
                                                        |
| 232 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($uid);  | 
                                                        |
| 233 | +        if ($isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 234 | + $users = $this->userManager->getDisabledUsers($limit, $offset, $search);  | 
                                                        |
| 235 | + $users = array_map(fn (IUser $user): string => $user->getUID(), $users);  | 
                                                        |
| 236 | +        } elseif ($subAdminManager->isSubAdmin($currentUser)) { | 
                                                        |
| 237 | + $subAdminOfGroups = $subAdminManager->getSubAdminsGroups($currentUser);  | 
                                                        |
| 238 | +  | 
                                                        |
| 239 | + $users = [];  | 
                                                        |
| 240 | + /* We have to handle offset ourselve for correctness */  | 
                                                        |
| 241 | + $tempLimit = ($limit === null ? null : $limit + $offset);  | 
                                                        |
| 242 | +            foreach ($subAdminOfGroups as $group) { | 
                                                        |
| 243 | + $users = array_unique(array_merge(  | 
                                                        |
| 244 | + $users,  | 
                                                        |
| 245 | + array_map(  | 
                                                        |
| 246 | + fn (IUser $user): string => $user->getUID(),  | 
                                                        |
| 247 | + array_filter(  | 
                                                        |
| 248 | + $group->searchUsers($search),  | 
                                                        |
| 249 | + fn (IUser $user): bool => !$user->isEnabled()  | 
                                                        |
| 250 | + )  | 
                                                        |
| 251 | + )  | 
                                                        |
| 252 | + ));  | 
                                                        |
| 253 | +                if (($tempLimit !== null) && (count($users) >= $tempLimit)) { | 
                                                        |
| 254 | + break;  | 
                                                        |
| 255 | + }  | 
                                                        |
| 256 | + }  | 
                                                        |
| 257 | + $users = array_slice($users, $offset, $limit);  | 
                                                        |
| 258 | + }  | 
                                                        |
| 259 | +  | 
                                                        |
| 260 | + $usersDetails = [];  | 
                                                        |
| 261 | +        foreach ($users as $userId) { | 
                                                        |
| 262 | +            try { | 
                                                        |
| 263 | + $userData = $this->getUserData($userId);  | 
                                                        |
| 264 | +            } catch (OCSNotFoundException $e) { | 
                                                        |
| 265 | + // We still want to return all other accounts, but this one was removed from the backends  | 
                                                        |
| 266 | + // yet they are still in our database. Might be a LDAP remnant.  | 
                                                        |
| 267 | + $userData = null;  | 
                                                        |
| 268 | +                $this->logger->warning('Found one disabled account that was removed from its backend, but still exists in Nextcloud database', ['accountId' => $userId]); | 
                                                        |
| 269 | + }  | 
                                                        |
| 270 | + // Do not insert empty entry  | 
                                                        |
| 271 | +            if ($userData !== null) { | 
                                                        |
| 272 | + $usersDetails[$userId] = $userData;  | 
                                                        |
| 273 | +            } else { | 
                                                        |
| 274 | + // Currently logged in user does not have permissions to see this user  | 
                                                        |
| 275 | + // only showing its id  | 
                                                        |
| 276 | + $usersDetails[$userId] = ['id' => $userId];  | 
                                                        |
| 277 | + }  | 
                                                        |
| 278 | + }  | 
                                                        |
| 279 | +  | 
                                                        |
| 280 | + return new DataResponse([  | 
                                                        |
| 281 | + 'users' => $usersDetails  | 
                                                        |
| 282 | + ]);  | 
                                                        |
| 283 | + }  | 
                                                        |
| 284 | +  | 
                                                        |
| 285 | + /**  | 
                                                        |
| 286 | + * Gets the list of users sorted by lastLogin, from most recent to least recent  | 
                                                        |
| 287 | + *  | 
                                                        |
| 288 | + * @param string $search Text to search for  | 
                                                        |
| 289 | + * @param ?int $limit Limit the amount of users returned  | 
                                                        |
| 290 | + * @param int $offset Offset  | 
                                                        |
| 291 | +     * @return DataResponse<Http::STATUS_OK, array{users: array<string, Provisioning_APIUserDetails|array{id: string}>}, array{}> | 
                                                        |
| 292 | + *  | 
                                                        |
| 293 | + * 200: Users details returned based on last logged in information  | 
                                                        |
| 294 | + */  | 
                                                        |
| 295 | + #[AuthorizedAdminSetting(settings:Users::class)]  | 
                                                        |
| 296 | + public function getLastLoggedInUsers(string $search = '',  | 
                                                        |
| 297 | + ?int $limit = null,  | 
                                                        |
| 298 | + int $offset = 0,  | 
                                                        |
| 299 | +    ): DataResponse { | 
                                                        |
| 300 | + $currentUser = $this->userSession->getUser();  | 
                                                        |
| 301 | +        if ($currentUser === null) { | 
                                                        |
| 302 | + return new DataResponse(['users' => []]);  | 
                                                        |
| 303 | + }  | 
                                                        |
| 304 | +        if ($limit !== null && $limit < 0) { | 
                                                        |
| 305 | +            throw new InvalidArgumentException("Invalid limit value: $limit"); | 
                                                        |
| 306 | + }  | 
                                                        |
| 307 | +        if ($offset < 0) { | 
                                                        |
| 308 | +            throw new InvalidArgumentException("Invalid offset value: $offset"); | 
                                                        |
| 309 | + }  | 
                                                        |
| 310 | +  | 
                                                        |
| 311 | + $users = [];  | 
                                                        |
| 312 | +  | 
                                                        |
| 313 | + // For Admin alone user sorting based on lastLogin. For sub admin and groups this is not supported  | 
                                                        |
| 314 | + $users = $this->userManager->getLastLoggedInUsers($limit, $offset, $search);  | 
                                                        |
| 315 | +  | 
                                                        |
| 316 | + $usersDetails = [];  | 
                                                        |
| 317 | +        foreach ($users as $userId) { | 
                                                        |
| 318 | +            try { | 
                                                        |
| 319 | + $userData = $this->getUserData($userId);  | 
                                                        |
| 320 | +            } catch (OCSNotFoundException $e) { | 
                                                        |
| 321 | + // We still want to return all other accounts, but this one was removed from the backends  | 
                                                        |
| 322 | + // yet they are still in our database. Might be a LDAP remnant.  | 
                                                        |
| 323 | + $userData = null;  | 
                                                        |
| 324 | +                $this->logger->warning('Found one account that was removed from its backend, but still exists in Nextcloud database', ['accountId' => $userId]); | 
                                                        |
| 325 | + }  | 
                                                        |
| 326 | + // Do not insert empty entry  | 
                                                        |
| 327 | +            if ($userData !== null) { | 
                                                        |
| 328 | + $usersDetails[$userId] = $userData;  | 
                                                        |
| 329 | +            } else { | 
                                                        |
| 330 | + // Currently logged-in user does not have permissions to see this user  | 
                                                        |
| 331 | + // only showing its id  | 
                                                        |
| 332 | + $usersDetails[$userId] = ['id' => $userId];  | 
                                                        |
| 333 | + }  | 
                                                        |
| 334 | + }  | 
                                                        |
| 335 | +  | 
                                                        |
| 336 | + return new DataResponse([  | 
                                                        |
| 337 | + 'users' => $usersDetails  | 
                                                        |
| 338 | + ]);  | 
                                                        |
| 339 | + }  | 
                                                        |
| 340 | +  | 
                                                        |
| 341 | +  | 
                                                        |
| 342 | +  | 
                                                        |
| 343 | + /**  | 
                                                        |
| 344 | + * @NoSubAdminRequired  | 
                                                        |
| 345 | + *  | 
                                                        |
| 346 | + * Search users by their phone numbers  | 
                                                        |
| 347 | + *  | 
                                                        |
| 348 | + * @param string $location Location of the phone number (for country code)  | 
                                                        |
| 349 | + * @param array<string, list<string>> $search Phone numbers to search for  | 
                                                        |
| 350 | +     * @return DataResponse<Http::STATUS_OK, array<string, string>, array{}>|DataResponse<Http::STATUS_BAD_REQUEST, list<empty>, array{}> | 
                                                        |
| 351 | + *  | 
                                                        |
| 352 | + * 200: Users returned  | 
                                                        |
| 353 | + * 400: Invalid location  | 
                                                        |
| 354 | + */  | 
                                                        |
| 355 | + #[NoAdminRequired]  | 
                                                        |
| 356 | +    public function searchByPhoneNumbers(string $location, array $search): DataResponse { | 
                                                        |
| 357 | +        if ($this->phoneNumberUtil->getCountryCodeForRegion($location) === null) { | 
                                                        |
| 358 | + // Not a valid region code  | 
                                                        |
| 359 | + return new DataResponse([], Http::STATUS_BAD_REQUEST);  | 
                                                        |
| 360 | + }  | 
                                                        |
| 361 | +  | 
                                                        |
| 362 | + /** @var IUser $user */  | 
                                                        |
| 363 | + $user = $this->userSession->getUser();  | 
                                                        |
| 364 | + $knownTo = $user->getUID();  | 
                                                        |
| 365 | +        $defaultPhoneRegion = $this->config->getSystemValueString('default_phone_region'); | 
                                                        |
| 366 | +  | 
                                                        |
| 367 | + $normalizedNumberToKey = [];  | 
                                                        |
| 368 | +        foreach ($search as $key => $phoneNumbers) { | 
                                                        |
| 369 | +            foreach ($phoneNumbers as $phone) { | 
                                                        |
| 370 | + $normalizedNumber = $this->phoneNumberUtil->convertToStandardFormat($phone, $location);  | 
                                                        |
| 371 | +                if ($normalizedNumber !== null) { | 
                                                        |
| 372 | + $normalizedNumberToKey[$normalizedNumber] = (string)$key;  | 
                                                        |
| 373 | + }  | 
                                                        |
| 374 | +  | 
                                                        |
| 375 | +                if ($defaultPhoneRegion !== '' && $defaultPhoneRegion !== $location && str_starts_with($phone, '0')) { | 
                                                        |
| 376 | + // If the number has a leading zero (no country code),  | 
                                                        |
| 377 | + // we also check the default phone region of the instance,  | 
                                                        |
| 378 | + // when it's different to the user's given region.  | 
                                                        |
| 379 | + $normalizedNumber = $this->phoneNumberUtil->convertToStandardFormat($phone, $defaultPhoneRegion);  | 
                                                        |
| 380 | +                    if ($normalizedNumber !== null) { | 
                                                        |
| 381 | + $normalizedNumberToKey[$normalizedNumber] = (string)$key;  | 
                                                        |
| 382 | + }  | 
                                                        |
| 383 | + }  | 
                                                        |
| 384 | + }  | 
                                                        |
| 385 | + }  | 
                                                        |
| 386 | +  | 
                                                        |
| 387 | + $phoneNumbers = array_keys($normalizedNumberToKey);  | 
                                                        |
| 388 | +  | 
                                                        |
| 389 | +        if (empty($phoneNumbers)) { | 
                                                        |
| 390 | + return new DataResponse();  | 
                                                        |
| 391 | + }  | 
                                                        |
| 392 | +  | 
                                                        |
| 393 | + // Cleanup all previous entries and only allow new matches  | 
                                                        |
| 394 | + $this->knownUserService->deleteKnownTo($knownTo);  | 
                                                        |
| 395 | +  | 
                                                        |
| 396 | + $userMatches = $this->accountManager->searchUsers(IAccountManager::PROPERTY_PHONE, $phoneNumbers);  | 
                                                        |
| 397 | +  | 
                                                        |
| 398 | +        if (empty($userMatches)) { | 
                                                        |
| 399 | + return new DataResponse();  | 
                                                        |
| 400 | + }  | 
                                                        |
| 401 | +  | 
                                                        |
| 402 | +        $cloudUrl = rtrim($this->urlGenerator->getAbsoluteURL('/'), '/'); | 
                                                        |
| 403 | +        if (strpos($cloudUrl, 'http://') === 0) { | 
                                                        |
| 404 | +            $cloudUrl = substr($cloudUrl, strlen('http://')); | 
                                                        |
| 405 | +        } elseif (strpos($cloudUrl, 'https://') === 0) { | 
                                                        |
| 406 | +            $cloudUrl = substr($cloudUrl, strlen('https://')); | 
                                                        |
| 407 | + }  | 
                                                        |
| 408 | +  | 
                                                        |
| 409 | + $matches = [];  | 
                                                        |
| 410 | +        foreach ($userMatches as $phone => $userId) { | 
                                                        |
| 411 | + // Not using the ICloudIdManager as that would run a search for each contact to find the display name in the address book  | 
                                                        |
| 412 | + $matches[$normalizedNumberToKey[$phone]] = $userId . '@' . $cloudUrl;  | 
                                                        |
| 413 | + $this->knownUserService->storeIsKnownToUser($knownTo, $userId);  | 
                                                        |
| 414 | + }  | 
                                                        |
| 415 | +  | 
                                                        |
| 416 | + return new DataResponse($matches);  | 
                                                        |
| 417 | + }  | 
                                                        |
| 418 | +  | 
                                                        |
| 419 | + /**  | 
                                                        |
| 420 | + * @throws OCSException  | 
                                                        |
| 421 | + */  | 
                                                        |
| 422 | +    private function createNewUserId(): string { | 
                                                        |
| 423 | + $attempts = 0;  | 
                                                        |
| 424 | +        do { | 
                                                        |
| 425 | + $uidCandidate = $this->secureRandom->generate(10, ISecureRandom::CHAR_HUMAN_READABLE);  | 
                                                        |
| 426 | +            if (!$this->userManager->userExists($uidCandidate)) { | 
                                                        |
| 427 | + return $uidCandidate;  | 
                                                        |
| 428 | + }  | 
                                                        |
| 429 | + $attempts++;  | 
                                                        |
| 430 | + } while ($attempts < 10);  | 
                                                        |
| 431 | +        throw new OCSException($this->l10n->t('Could not create non-existing user ID'), 111); | 
                                                        |
| 432 | + }  | 
                                                        |
| 433 | +  | 
                                                        |
| 434 | + /**  | 
                                                        |
| 435 | + * Create a new user  | 
                                                        |
| 436 | + *  | 
                                                        |
| 437 | + * @param string $userid ID of the user  | 
                                                        |
| 438 | + * @param string $password Password of the user  | 
                                                        |
| 439 | + * @param string $displayName Display name of the user  | 
                                                        |
| 440 | + * @param string $email Email of the user  | 
                                                        |
| 441 | + * @param list<string> $groups Groups of the user  | 
                                                        |
| 442 | + * @param list<string> $subadmin Groups where the user is subadmin  | 
                                                        |
| 443 | + * @param string $quota Quota of the user  | 
                                                        |
| 444 | + * @param string $language Language of the user  | 
                                                        |
| 445 | + * @param ?string $manager Manager of the user  | 
                                                        |
| 446 | +     * @return DataResponse<Http::STATUS_OK, array{id: string}, array{}> | 
                                                        |
| 447 | + * @throws OCSException  | 
                                                        |
| 448 | + * @throws OCSForbiddenException Missing permissions to make user subadmin  | 
                                                        |
| 449 | + *  | 
                                                        |
| 450 | + * 200: User added successfully  | 
                                                        |
| 451 | + */  | 
                                                        |
| 452 | + #[PasswordConfirmationRequired]  | 
                                                        |
| 453 | + #[NoAdminRequired]  | 
                                                        |
| 454 | + public function addUser(  | 
                                                        |
| 455 | + string $userid,  | 
                                                        |
| 456 | + string $password = '',  | 
                                                        |
| 457 | + string $displayName = '',  | 
                                                        |
| 458 | + string $email = '',  | 
                                                        |
| 459 | + array $groups = [],  | 
                                                        |
| 460 | + array $subadmin = [],  | 
                                                        |
| 461 | + string $quota = '',  | 
                                                        |
| 462 | + string $language = '',  | 
                                                        |
| 463 | + ?string $manager = null,  | 
                                                        |
| 464 | +    ): DataResponse { | 
                                                        |
| 465 | + $user = $this->userSession->getUser();  | 
                                                        |
| 466 | + $isAdmin = $this->groupManager->isAdmin($user->getUID());  | 
                                                        |
| 467 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($user->getUID());  | 
                                                        |
| 468 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 469 | +  | 
                                                        |
| 470 | +        if (empty($userid) && $this->config->getAppValue('core', 'newUser.generateUserID', 'no') === 'yes') { | 
                                                        |
| 471 | + $userid = $this->createNewUserId();  | 
                                                        |
| 472 | + }  | 
                                                        |
| 473 | +  | 
                                                        |
| 474 | +        if ($this->userManager->userExists($userid)) { | 
                                                        |
| 475 | +            $this->logger->error('Failed addUser attempt: User already exists.', ['app' => 'ocs_api']); | 
                                                        |
| 476 | +            throw new OCSException($this->l10n->t('User already exists'), 102); | 
                                                        |
| 477 | + }  | 
                                                        |
| 478 | +  | 
                                                        |
| 479 | +        if ($groups !== []) { | 
                                                        |
| 480 | +            foreach ($groups as $group) { | 
                                                        |
| 481 | +                if (!$this->groupManager->groupExists($group)) { | 
                                                        |
| 482 | +                    throw new OCSException($this->l10n->t('Group %1$s does not exist', [$group]), 104); | 
                                                        |
| 483 | + }  | 
                                                        |
| 484 | +                if (!$isAdmin && !($isDelegatedAdmin && $group !== 'admin') && !$subAdminManager->isSubAdminOfGroup($user, $this->groupManager->get($group))) { | 
                                                        |
| 485 | +                    throw new OCSException($this->l10n->t('Insufficient privileges for group %1$s', [$group]), 105); | 
                                                        |
| 486 | + }  | 
                                                        |
| 487 | + }  | 
                                                        |
| 488 | +        } else { | 
                                                        |
| 489 | +            if (!$isAdmin && !$isDelegatedAdmin) { | 
                                                        |
| 490 | +                throw new OCSException($this->l10n->t('No group specified (required for sub-admins)'), 106); | 
                                                        |
| 491 | + }  | 
                                                        |
| 492 | + }  | 
                                                        |
| 493 | +  | 
                                                        |
| 494 | + $subadminGroups = [];  | 
                                                        |
| 495 | +        if ($subadmin !== []) { | 
                                                        |
| 496 | +            foreach ($subadmin as $groupid) { | 
                                                        |
| 497 | + $group = $this->groupManager->get($groupid);  | 
                                                        |
| 498 | + // Check if group exists  | 
                                                        |
| 499 | +                if ($group === null) { | 
                                                        |
| 500 | +                    throw new OCSException($this->l10n->t('Sub-admin group does not exist'), 109); | 
                                                        |
| 501 | + }  | 
                                                        |
| 502 | + // Check if trying to make subadmin of admin group  | 
                                                        |
| 503 | +                if ($group->getGID() === 'admin') { | 
                                                        |
| 504 | +                    throw new OCSException($this->l10n->t('Cannot create sub-admins for admin group'), 103); | 
                                                        |
| 505 | + }  | 
                                                        |
| 506 | + // Check if has permission to promote subadmins  | 
                                                        |
| 507 | +                if (!$subAdminManager->isSubAdminOfGroup($user, $group) && !$isAdmin && !$isDelegatedAdmin) { | 
                                                        |
| 508 | +                    throw new OCSForbiddenException($this->l10n->t('No permissions to promote sub-admins')); | 
                                                        |
| 509 | + }  | 
                                                        |
| 510 | + $subadminGroups[] = $group;  | 
                                                        |
| 511 | + }  | 
                                                        |
| 512 | + }  | 
                                                        |
| 513 | +  | 
                                                        |
| 514 | + $generatePasswordResetToken = false;  | 
                                                        |
| 515 | +        if (strlen($password) > IUserManager::MAX_PASSWORD_LENGTH) { | 
                                                        |
| 516 | +            throw new OCSException($this->l10n->t('Invalid password value'), 101); | 
                                                        |
| 517 | + }  | 
                                                        |
| 518 | +        if ($password === '') { | 
                                                        |
| 519 | +            if ($email === '') { | 
                                                        |
| 520 | +                throw new OCSException($this->l10n->t('An email address is required, to send a password link to the user.'), 108); | 
                                                        |
| 521 | + }  | 
                                                        |
| 522 | +  | 
                                                        |
| 523 | + $passwordEvent = new GenerateSecurePasswordEvent();  | 
                                                        |
| 524 | + $this->eventDispatcher->dispatchTyped($passwordEvent);  | 
                                                        |
| 525 | +  | 
                                                        |
| 526 | + $password = $passwordEvent->getPassword();  | 
                                                        |
| 527 | +            if ($password === null) { | 
                                                        |
| 528 | + // Fallback: ensure to pass password_policy in any case  | 
                                                        |
| 529 | + $password = $this->secureRandom->generate(10)  | 
                                                        |
| 530 | + . $this->secureRandom->generate(1, ISecureRandom::CHAR_UPPER)  | 
                                                        |
| 531 | + . $this->secureRandom->generate(1, ISecureRandom::CHAR_LOWER)  | 
                                                        |
| 532 | + . $this->secureRandom->generate(1, ISecureRandom::CHAR_DIGITS)  | 
                                                        |
| 533 | + . $this->secureRandom->generate(1, ISecureRandom::CHAR_SYMBOLS);  | 
                                                        |
| 534 | + }  | 
                                                        |
| 535 | + $generatePasswordResetToken = true;  | 
                                                        |
| 536 | + }  | 
                                                        |
| 537 | +  | 
                                                        |
| 538 | +        if ($email === '' && $this->config->getAppValue('core', 'newUser.requireEmail', 'no') === 'yes') { | 
                                                        |
| 539 | +            throw new OCSException($this->l10n->t('Required email address was not provided'), 110); | 
                                                        |
| 540 | + }  | 
                                                        |
| 541 | +  | 
                                                        |
| 542 | +        try { | 
                                                        |
| 543 | + $newUser = $this->userManager->createUser($userid, $password);  | 
                                                        |
| 544 | +            $this->logger->info('Successful addUser call with userid: ' . $userid, ['app' => 'ocs_api']); | 
                                                        |
| 545 | +  | 
                                                        |
| 546 | +            foreach ($groups as $group) { | 
                                                        |
| 547 | + $this->groupManager->get($group)->addUser($newUser);  | 
                                                        |
| 548 | +                $this->logger->info('Added userid ' . $userid . ' to group ' . $group, ['app' => 'ocs_api']); | 
                                                        |
| 549 | + }  | 
                                                        |
| 550 | +            foreach ($subadminGroups as $group) { | 
                                                        |
| 551 | + $subAdminManager->createSubAdmin($newUser, $group);  | 
                                                        |
| 552 | + }  | 
                                                        |
| 553 | +  | 
                                                        |
| 554 | +            if ($displayName !== '') { | 
                                                        |
| 555 | +                try { | 
                                                        |
| 556 | + $this->editUser($userid, self::USER_FIELD_DISPLAYNAME, $displayName);  | 
                                                        |
| 557 | +                } catch (OCSException $e) { | 
                                                        |
| 558 | +                    if ($newUser instanceof IUser) { | 
                                                        |
| 559 | + $newUser->delete();  | 
                                                        |
| 560 | + }  | 
                                                        |
| 561 | + throw $e;  | 
                                                        |
| 562 | + }  | 
                                                        |
| 563 | + }  | 
                                                        |
| 564 | +  | 
                                                        |
| 565 | +            if ($quota !== '') { | 
                                                        |
| 566 | + $this->editUser($userid, self::USER_FIELD_QUOTA, $quota);  | 
                                                        |
| 567 | + }  | 
                                                        |
| 568 | +  | 
                                                        |
| 569 | +            if ($language !== '') { | 
                                                        |
| 570 | + $this->editUser($userid, self::USER_FIELD_LANGUAGE, $language);  | 
                                                        |
| 571 | + }  | 
                                                        |
| 572 | +  | 
                                                        |
| 573 | + /**  | 
                                                        |
| 574 | + * null -> nothing sent  | 
                                                        |
| 575 | + * '' -> unset manager  | 
                                                        |
| 576 | + * else -> set manager  | 
                                                        |
| 577 | + */  | 
                                                        |
| 578 | +            if ($manager !== null) { | 
                                                        |
| 579 | + $this->editUser($userid, self::USER_FIELD_MANAGER, $manager);  | 
                                                        |
| 580 | + }  | 
                                                        |
| 581 | +  | 
                                                        |
| 582 | + // Send new user mail only if a mail is set  | 
                                                        |
| 583 | +            if ($email !== '') { | 
                                                        |
| 584 | + $newUser->setEMailAddress($email);  | 
                                                        |
| 585 | +                if ($this->config->getAppValue('core', 'newUser.sendEmail', 'yes') === 'yes') { | 
                                                        |
| 586 | +                    try { | 
                                                        |
| 587 | + $emailTemplate = $this->newUserMailHelper->generateTemplate($newUser, $generatePasswordResetToken);  | 
                                                        |
| 588 | + $this->newUserMailHelper->sendMail($newUser, $emailTemplate);  | 
                                                        |
| 589 | +                    } catch (\Exception $e) { | 
                                                        |
| 590 | + // Mail could be failing hard or just be plain not configured  | 
                                                        |
| 591 | + // Logging error as it is the hardest of the two  | 
                                                        |
| 592 | + $this->logger->error(  | 
                                                        |
| 593 | + "Unable to send the invitation mail to $email",  | 
                                                        |
| 594 | + [  | 
                                                        |
| 595 | + 'app' => 'ocs_api',  | 
                                                        |
| 596 | + 'exception' => $e,  | 
                                                        |
| 597 | + ]  | 
                                                        |
| 598 | + );  | 
                                                        |
| 599 | + }  | 
                                                        |
| 600 | + }  | 
                                                        |
| 601 | + }  | 
                                                        |
| 602 | +  | 
                                                        |
| 603 | + return new DataResponse(['id' => $userid]);  | 
                                                        |
| 604 | +        } catch (HintException $e) { | 
                                                        |
| 605 | + $this->logger->warning(  | 
                                                        |
| 606 | + 'Failed addUser attempt with hint exception.',  | 
                                                        |
| 607 | + [  | 
                                                        |
| 608 | + 'app' => 'ocs_api',  | 
                                                        |
| 609 | + 'exception' => $e,  | 
                                                        |
| 610 | + ]  | 
                                                        |
| 611 | + );  | 
                                                        |
| 612 | + throw new OCSException($e->getHint(), 107);  | 
                                                        |
| 613 | +        } catch (OCSException $e) { | 
                                                        |
| 614 | + $this->logger->warning(  | 
                                                        |
| 615 | + 'Failed addUser attempt with ocs exception.',  | 
                                                        |
| 616 | + [  | 
                                                        |
| 617 | + 'app' => 'ocs_api',  | 
                                                        |
| 618 | + 'exception' => $e,  | 
                                                        |
| 619 | + ]  | 
                                                        |
| 620 | + );  | 
                                                        |
| 621 | + throw $e;  | 
                                                        |
| 622 | +        } catch (InvalidArgumentException $e) { | 
                                                        |
| 623 | + $this->logger->error(  | 
                                                        |
| 624 | + 'Failed addUser attempt with invalid argument exception.',  | 
                                                        |
| 625 | + [  | 
                                                        |
| 626 | + 'app' => 'ocs_api',  | 
                                                        |
| 627 | + 'exception' => $e,  | 
                                                        |
| 628 | + ]  | 
                                                        |
| 629 | + );  | 
                                                        |
| 630 | + throw new OCSException($e->getMessage(), 101);  | 
                                                        |
| 631 | +        } catch (\Exception $e) { | 
                                                        |
| 632 | + $this->logger->error(  | 
                                                        |
| 633 | + 'Failed addUser attempt with exception.',  | 
                                                        |
| 634 | + [  | 
                                                        |
| 635 | + 'app' => 'ocs_api',  | 
                                                        |
| 636 | + 'exception' => $e  | 
                                                        |
| 637 | + ]  | 
                                                        |
| 638 | + );  | 
                                                        |
| 639 | +            throw new OCSException('Bad request', 101); | 
                                                        |
| 640 | + }  | 
                                                        |
| 641 | + }  | 
                                                        |
| 642 | +  | 
                                                        |
| 643 | + /**  | 
                                                        |
| 644 | + * @NoSubAdminRequired  | 
                                                        |
| 645 | + *  | 
                                                        |
| 646 | + * Get the details of a user  | 
                                                        |
| 647 | + *  | 
                                                        |
| 648 | + * @param string $userId ID of the user  | 
                                                        |
| 649 | +     * @return DataResponse<Http::STATUS_OK, Provisioning_APIUserDetails, array{}> | 
                                                        |
| 650 | + * @throws OCSException  | 
                                                        |
| 651 | + *  | 
                                                        |
| 652 | + * 200: User returned  | 
                                                        |
| 653 | + */  | 
                                                        |
| 654 | + #[NoAdminRequired]  | 
                                                        |
| 655 | +    public function getUser(string $userId): DataResponse { | 
                                                        |
| 656 | + $includeScopes = false;  | 
                                                        |
| 657 | + $currentUser = $this->userSession->getUser();  | 
                                                        |
| 658 | +        if ($currentUser && $currentUser->getUID() === $userId) { | 
                                                        |
| 659 | + $includeScopes = true;  | 
                                                        |
| 660 | + }  | 
                                                        |
| 661 | +  | 
                                                        |
| 662 | + $data = $this->getUserData($userId, $includeScopes);  | 
                                                        |
| 663 | + // getUserData returns null if not enough permissions  | 
                                                        |
| 664 | +        if ($data === null) { | 
                                                        |
| 665 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 666 | + }  | 
                                                        |
| 667 | + return new DataResponse($data);  | 
                                                        |
| 668 | + }  | 
                                                        |
| 669 | +  | 
                                                        |
| 670 | + /**  | 
                                                        |
| 671 | + * @NoSubAdminRequired  | 
                                                        |
| 672 | + *  | 
                                                        |
| 673 | + * Get the details of the current user  | 
                                                        |
| 674 | + *  | 
                                                        |
| 675 | +     * @return DataResponse<Http::STATUS_OK, Provisioning_APIUserDetails, array{}> | 
                                                        |
| 676 | + * @throws OCSException  | 
                                                        |
| 677 | + *  | 
                                                        |
| 678 | + * 200: Current user returned  | 
                                                        |
| 679 | + */  | 
                                                        |
| 680 | + #[NoAdminRequired]  | 
                                                        |
| 681 | +    public function getCurrentUser(): DataResponse { | 
                                                        |
| 682 | + $user = $this->userSession->getUser();  | 
                                                        |
| 683 | +        if ($user) { | 
                                                        |
| 684 | + /** @var Provisioning_APIUserDetails $data */  | 
                                                        |
| 685 | + $data = $this->getUserData($user->getUID(), true);  | 
                                                        |
| 686 | + return new DataResponse($data);  | 
                                                        |
| 687 | + }  | 
                                                        |
| 688 | +  | 
                                                        |
| 689 | +        throw new OCSException('', OCSController::RESPOND_UNAUTHORISED); | 
                                                        |
| 690 | + }  | 
                                                        |
| 691 | +  | 
                                                        |
| 692 | + /**  | 
                                                        |
| 693 | + * @NoSubAdminRequired  | 
                                                        |
| 694 | + *  | 
                                                        |
| 695 | + * Get a list of fields that are editable for the current user  | 
                                                        |
| 696 | + *  | 
                                                        |
| 697 | +     * @return DataResponse<Http::STATUS_OK, list<string>, array{}> | 
                                                        |
| 698 | + * @throws OCSException  | 
                                                        |
| 699 | + *  | 
                                                        |
| 700 | + * 200: Editable fields returned  | 
                                                        |
| 701 | + */  | 
                                                        |
| 702 | + #[NoAdminRequired]  | 
                                                        |
| 703 | +    public function getEditableFields(): DataResponse { | 
                                                        |
| 704 | + $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 705 | +        if (!$currentLoggedInUser instanceof IUser) { | 
                                                        |
| 706 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 707 | + }  | 
                                                        |
| 708 | +  | 
                                                        |
| 709 | + return $this->getEditableFieldsForUser($currentLoggedInUser->getUID());  | 
                                                        |
| 710 | + }  | 
                                                        |
| 711 | +  | 
                                                        |
| 712 | + /**  | 
                                                        |
| 713 | + * @NoSubAdminRequired  | 
                                                        |
| 714 | + *  | 
                                                        |
| 715 | + * Get a list of fields that are editable for a user  | 
                                                        |
| 716 | + *  | 
                                                        |
| 717 | + * @param string $userId ID of the user  | 
                                                        |
| 718 | +     * @return DataResponse<Http::STATUS_OK, list<string>, array{}> | 
                                                        |
| 719 | + * @throws OCSException  | 
                                                        |
| 720 | + *  | 
                                                        |
| 721 | + * 200: Editable fields for user returned  | 
                                                        |
| 722 | + */  | 
                                                        |
| 723 | + #[NoAdminRequired]  | 
                                                        |
| 724 | +    public function getEditableFieldsForUser(string $userId): DataResponse { | 
                                                        |
| 725 | + $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 726 | +        if (!$currentLoggedInUser instanceof IUser) { | 
                                                        |
| 727 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 728 | + }  | 
                                                        |
| 729 | +  | 
                                                        |
| 730 | + $permittedFields = [];  | 
                                                        |
| 731 | +  | 
                                                        |
| 732 | +        if ($userId !== $currentLoggedInUser->getUID()) { | 
                                                        |
| 733 | + $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 734 | +            if (!$targetUser instanceof IUser) { | 
                                                        |
| 735 | +                throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 736 | + }  | 
                                                        |
| 737 | +  | 
                                                        |
| 738 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 739 | + $isAdmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 740 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 741 | + if (  | 
                                                        |
| 742 | + !($isAdmin || $isDelegatedAdmin)  | 
                                                        |
| 743 | + && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)  | 
                                                        |
| 744 | +            ) { | 
                                                        |
| 745 | +                throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 746 | + }  | 
                                                        |
| 747 | +        } else { | 
                                                        |
| 748 | + $targetUser = $currentLoggedInUser;  | 
                                                        |
| 749 | + }  | 
                                                        |
| 750 | +  | 
                                                        |
| 751 | +        $allowDisplayNameChange = $this->config->getSystemValue('allow_user_to_change_display_name', true); | 
                                                        |
| 752 | + if ($allowDisplayNameChange === true && (  | 
                                                        |
| 753 | + $targetUser->getBackend() instanceof ISetDisplayNameBackend  | 
                                                        |
| 754 | + || $targetUser->getBackend()->implementsActions(Backend::SET_DISPLAYNAME)  | 
                                                        |
| 755 | +        )) { | 
                                                        |
| 756 | + $permittedFields[] = IAccountManager::PROPERTY_DISPLAYNAME;  | 
                                                        |
| 757 | + }  | 
                                                        |
| 758 | +  | 
                                                        |
| 759 | + // Fallback to display name value to avoid changing behavior with the new option.  | 
                                                        |
| 760 | +        if ($this->config->getSystemValue('allow_user_to_change_email', true)) { | 
                                                        |
| 761 | + $permittedFields[] = IAccountManager::PROPERTY_EMAIL;  | 
                                                        |
| 762 | + }  | 
                                                        |
| 763 | +  | 
                                                        |
| 764 | + $permittedFields[] = IAccountManager::COLLECTION_EMAIL;  | 
                                                        |
| 765 | + $permittedFields[] = IAccountManager::PROPERTY_PHONE;  | 
                                                        |
| 766 | + $permittedFields[] = IAccountManager::PROPERTY_ADDRESS;  | 
                                                        |
| 767 | + $permittedFields[] = IAccountManager::PROPERTY_WEBSITE;  | 
                                                        |
| 768 | + $permittedFields[] = IAccountManager::PROPERTY_TWITTER;  | 
                                                        |
| 769 | + $permittedFields[] = IAccountManager::PROPERTY_FEDIVERSE;  | 
                                                        |
| 770 | + $permittedFields[] = IAccountManager::PROPERTY_ORGANISATION;  | 
                                                        |
| 771 | + $permittedFields[] = IAccountManager::PROPERTY_ROLE;  | 
                                                        |
| 772 | + $permittedFields[] = IAccountManager::PROPERTY_HEADLINE;  | 
                                                        |
| 773 | + $permittedFields[] = IAccountManager::PROPERTY_BIOGRAPHY;  | 
                                                        |
| 774 | + $permittedFields[] = IAccountManager::PROPERTY_PROFILE_ENABLED;  | 
                                                        |
| 775 | + $permittedFields[] = IAccountManager::PROPERTY_PRONOUNS;  | 
                                                        |
| 776 | +  | 
                                                        |
| 777 | + return new DataResponse($permittedFields);  | 
                                                        |
| 778 | + }  | 
                                                        |
| 779 | +  | 
                                                        |
| 780 | + /**  | 
                                                        |
| 781 | + * @NoSubAdminRequired  | 
                                                        |
| 782 | + *  | 
                                                        |
| 783 | + * Update multiple values of the user's details  | 
                                                        |
| 784 | + *  | 
                                                        |
| 785 | + * @param string $userId ID of the user  | 
                                                        |
| 786 | + * @param string $collectionName Collection to update  | 
                                                        |
| 787 | + * @param string $key Key that will be updated  | 
                                                        |
| 788 | + * @param string $value New value for the key  | 
                                                        |
| 789 | +     * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 790 | + * @throws OCSException  | 
                                                        |
| 791 | + *  | 
                                                        |
| 792 | + * 200: User values edited successfully  | 
                                                        |
| 793 | + */  | 
                                                        |
| 794 | + #[PasswordConfirmationRequired]  | 
                                                        |
| 795 | + #[NoAdminRequired]  | 
                                                        |
| 796 | + #[UserRateLimit(limit: 5, period: 60)]  | 
                                                        |
| 797 | + public function editUserMultiValue(  | 
                                                        |
| 798 | + string $userId,  | 
                                                        |
| 799 | + string $collectionName,  | 
                                                        |
| 800 | + string $key,  | 
                                                        |
| 801 | + string $value,  | 
                                                        |
| 802 | +    ): DataResponse { | 
                                                        |
| 803 | + $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 804 | +        if ($currentLoggedInUser === null) { | 
                                                        |
| 805 | +            throw new OCSException('', OCSController::RESPOND_UNAUTHORISED); | 
                                                        |
| 806 | + }  | 
                                                        |
| 807 | +  | 
                                                        |
| 808 | + $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 809 | +        if ($targetUser === null) { | 
                                                        |
| 810 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 811 | + }  | 
                                                        |
| 812 | +  | 
                                                        |
| 813 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 814 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 815 | + $isAdminOrSubadmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID())  | 
                                                        |
| 816 | + || $subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser);  | 
                                                        |
| 817 | +  | 
                                                        |
| 818 | + $permittedFields = [];  | 
                                                        |
| 819 | +        if ($targetUser->getUID() === $currentLoggedInUser->getUID()) { | 
                                                        |
| 820 | + // Editing self (display, email)  | 
                                                        |
| 821 | + $permittedFields[] = IAccountManager::COLLECTION_EMAIL;  | 
                                                        |
| 822 | + $permittedFields[] = IAccountManager::COLLECTION_EMAIL . self::SCOPE_SUFFIX;  | 
                                                        |
| 823 | +        } else { | 
                                                        |
| 824 | + // Check if admin / subadmin  | 
                                                        |
| 825 | +            if ($isAdminOrSubadmin || $isDelegatedAdmin && !$this->groupManager->isInGroup($targetUser->getUID(), 'admin')) { | 
                                                        |
| 826 | + // They have permissions over the user  | 
                                                        |
| 827 | + $permittedFields[] = IAccountManager::COLLECTION_EMAIL;  | 
                                                        |
| 828 | +            } else { | 
                                                        |
| 829 | + // No rights  | 
                                                        |
| 830 | +                throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 831 | + }  | 
                                                        |
| 832 | + }  | 
                                                        |
| 833 | +  | 
                                                        |
| 834 | + // Check if permitted to edit this field  | 
                                                        |
| 835 | +        if (!in_array($collectionName, $permittedFields)) { | 
                                                        |
| 836 | +            throw new OCSException('', 103); | 
                                                        |
| 837 | + }  | 
                                                        |
| 838 | +  | 
                                                        |
| 839 | +        switch ($collectionName) { | 
                                                        |
| 840 | + case IAccountManager::COLLECTION_EMAIL:  | 
                                                        |
| 841 | + $userAccount = $this->accountManager->getAccount($targetUser);  | 
                                                        |
| 842 | + $mailCollection = $userAccount->getPropertyCollection(IAccountManager::COLLECTION_EMAIL);  | 
                                                        |
| 843 | + $mailCollection->removePropertyByValue($key);  | 
                                                        |
| 844 | +                if ($value !== '') { | 
                                                        |
| 845 | + $mailCollection->addPropertyWithDefaults($value);  | 
                                                        |
| 846 | + $property = $mailCollection->getPropertyByValue($key);  | 
                                                        |
| 847 | +                    if ($isAdminOrSubadmin && $property) { | 
                                                        |
| 848 | + // admin set mails are auto-verified  | 
                                                        |
| 849 | + $property->setLocallyVerified(IAccountManager::VERIFIED);  | 
                                                        |
| 850 | + }  | 
                                                        |
| 851 | + }  | 
                                                        |
| 852 | + $this->accountManager->updateAccount($userAccount);  | 
                                                        |
| 853 | +                if ($value === '' && $key === $targetUser->getPrimaryEMailAddress()) { | 
                                                        |
| 854 | +                    $targetUser->setPrimaryEMailAddress(''); | 
                                                        |
| 855 | + }  | 
                                                        |
| 856 | + break;  | 
                                                        |
| 857 | +  | 
                                                        |
| 858 | + case IAccountManager::COLLECTION_EMAIL . self::SCOPE_SUFFIX:  | 
                                                        |
| 859 | + $userAccount = $this->accountManager->getAccount($targetUser);  | 
                                                        |
| 860 | + $mailCollection = $userAccount->getPropertyCollection(IAccountManager::COLLECTION_EMAIL);  | 
                                                        |
| 861 | + $targetProperty = null;  | 
                                                        |
| 862 | +                foreach ($mailCollection->getProperties() as $property) { | 
                                                        |
| 863 | +                    if ($property->getValue() === $key) { | 
                                                        |
| 864 | + $targetProperty = $property;  | 
                                                        |
| 865 | + break;  | 
                                                        |
| 866 | + }  | 
                                                        |
| 867 | + }  | 
                                                        |
| 868 | +                if ($targetProperty instanceof IAccountProperty) { | 
                                                        |
| 869 | +                    try { | 
                                                        |
| 870 | + $targetProperty->setScope($value);  | 
                                                        |
| 871 | + $this->accountManager->updateAccount($userAccount);  | 
                                                        |
| 872 | +                    } catch (InvalidArgumentException $e) { | 
                                                        |
| 873 | +                        throw new OCSException('', 102); | 
                                                        |
| 874 | + }  | 
                                                        |
| 875 | +                } else { | 
                                                        |
| 876 | +                    throw new OCSException('', 102); | 
                                                        |
| 877 | + }  | 
                                                        |
| 878 | + break;  | 
                                                        |
| 879 | +  | 
                                                        |
| 880 | + default:  | 
                                                        |
| 881 | +                throw new OCSException('', 103); | 
                                                        |
| 882 | + }  | 
                                                        |
| 883 | + return new DataResponse();  | 
                                                        |
| 884 | + }  | 
                                                        |
| 885 | +  | 
                                                        |
| 886 | + /**  | 
                                                        |
| 887 | + * @NoSubAdminRequired  | 
                                                        |
| 888 | + *  | 
                                                        |
| 889 | + * Update a value of the user's details  | 
                                                        |
| 890 | + *  | 
                                                        |
| 891 | + * @param string $userId ID of the user  | 
                                                        |
| 892 | + * @param string $key Key that will be updated  | 
                                                        |
| 893 | + * @param string $value New value for the key  | 
                                                        |
| 894 | +     * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 895 | + * @throws OCSException  | 
                                                        |
| 896 | + *  | 
                                                        |
| 897 | + * 200: User value edited successfully  | 
                                                        |
| 898 | + */  | 
                                                        |
| 899 | + #[PasswordConfirmationRequired]  | 
                                                        |
| 900 | + #[NoAdminRequired]  | 
                                                        |
| 901 | + #[UserRateLimit(limit: 50, period: 600)]  | 
                                                        |
| 902 | +    public function editUser(string $userId, string $key, string $value): DataResponse { | 
                                                        |
| 903 | + $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 904 | +  | 
                                                        |
| 905 | + $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 906 | +        if ($targetUser === null) { | 
                                                        |
| 907 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 908 | + }  | 
                                                        |
| 909 | +  | 
                                                        |
| 910 | + $permittedFields = [];  | 
                                                        |
| 911 | +        if ($targetUser->getUID() === $currentLoggedInUser->getUID()) { | 
                                                        |
| 912 | +            $allowDisplayNameChange = $this->config->getSystemValue('allow_user_to_change_display_name', true); | 
                                                        |
| 913 | + if ($allowDisplayNameChange !== false && (  | 
                                                        |
| 914 | + $targetUser->getBackend() instanceof ISetDisplayNameBackend  | 
                                                        |
| 915 | + || $targetUser->getBackend()->implementsActions(Backend::SET_DISPLAYNAME)  | 
                                                        |
| 916 | +            )) { | 
                                                        |
| 917 | + $permittedFields[] = self::USER_FIELD_DISPLAYNAME;  | 
                                                        |
| 918 | + $permittedFields[] = IAccountManager::PROPERTY_DISPLAYNAME;  | 
                                                        |
| 919 | + }  | 
                                                        |
| 920 | +  | 
                                                        |
| 921 | +            if ($this->config->getSystemValue('allow_user_to_change_email', true)) { | 
                                                        |
| 922 | + $permittedFields[] = IAccountManager::PROPERTY_EMAIL;  | 
                                                        |
| 923 | + }  | 
                                                        |
| 924 | +  | 
                                                        |
| 925 | + $permittedFields[] = IAccountManager::PROPERTY_DISPLAYNAME . self::SCOPE_SUFFIX;  | 
                                                        |
| 926 | + $permittedFields[] = IAccountManager::PROPERTY_EMAIL . self::SCOPE_SUFFIX;  | 
                                                        |
| 927 | +  | 
                                                        |
| 928 | + $permittedFields[] = IAccountManager::COLLECTION_EMAIL;  | 
                                                        |
| 929 | +  | 
                                                        |
| 930 | + $permittedFields[] = self::USER_FIELD_PASSWORD;  | 
                                                        |
| 931 | + $permittedFields[] = self::USER_FIELD_NOTIFICATION_EMAIL;  | 
                                                        |
| 932 | + if (  | 
                                                        |
| 933 | +                $this->config->getSystemValue('force_language', false) === false || | 
                                                        |
| 934 | + $this->groupManager->isAdmin($currentLoggedInUser->getUID()) ||  | 
                                                        |
| 935 | + $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID())  | 
                                                        |
| 936 | +            ) { | 
                                                        |
| 937 | + $permittedFields[] = self::USER_FIELD_LANGUAGE;  | 
                                                        |
| 938 | + }  | 
                                                        |
| 939 | +  | 
                                                        |
| 940 | + if (  | 
                                                        |
| 941 | +                $this->config->getSystemValue('force_locale', false) === false || | 
                                                        |
| 942 | + $this->groupManager->isAdmin($currentLoggedInUser->getUID()) ||  | 
                                                        |
| 943 | + $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID())  | 
                                                        |
| 944 | +            ) { | 
                                                        |
| 945 | + $permittedFields[] = self::USER_FIELD_LOCALE;  | 
                                                        |
| 946 | + $permittedFields[] = self::USER_FIELD_FIRST_DAY_OF_WEEK;  | 
                                                        |
| 947 | + }  | 
                                                        |
| 948 | +  | 
                                                        |
| 949 | + $permittedFields[] = IAccountManager::PROPERTY_PHONE;  | 
                                                        |
| 950 | + $permittedFields[] = IAccountManager::PROPERTY_ADDRESS;  | 
                                                        |
| 951 | + $permittedFields[] = IAccountManager::PROPERTY_WEBSITE;  | 
                                                        |
| 952 | + $permittedFields[] = IAccountManager::PROPERTY_TWITTER;  | 
                                                        |
| 953 | + $permittedFields[] = IAccountManager::PROPERTY_FEDIVERSE;  | 
                                                        |
| 954 | + $permittedFields[] = IAccountManager::PROPERTY_ORGANISATION;  | 
                                                        |
| 955 | + $permittedFields[] = IAccountManager::PROPERTY_ROLE;  | 
                                                        |
| 956 | + $permittedFields[] = IAccountManager::PROPERTY_HEADLINE;  | 
                                                        |
| 957 | + $permittedFields[] = IAccountManager::PROPERTY_BIOGRAPHY;  | 
                                                        |
| 958 | + $permittedFields[] = IAccountManager::PROPERTY_PROFILE_ENABLED;  | 
                                                        |
| 959 | + $permittedFields[] = IAccountManager::PROPERTY_BIRTHDATE;  | 
                                                        |
| 960 | + $permittedFields[] = IAccountManager::PROPERTY_PRONOUNS;  | 
                                                        |
| 961 | +  | 
                                                        |
| 962 | + $permittedFields[] = IAccountManager::PROPERTY_PHONE . self::SCOPE_SUFFIX;  | 
                                                        |
| 963 | + $permittedFields[] = IAccountManager::PROPERTY_ADDRESS . self::SCOPE_SUFFIX;  | 
                                                        |
| 964 | + $permittedFields[] = IAccountManager::PROPERTY_WEBSITE . self::SCOPE_SUFFIX;  | 
                                                        |
| 965 | + $permittedFields[] = IAccountManager::PROPERTY_TWITTER . self::SCOPE_SUFFIX;  | 
                                                        |
| 966 | + $permittedFields[] = IAccountManager::PROPERTY_FEDIVERSE . self::SCOPE_SUFFIX;  | 
                                                        |
| 967 | + $permittedFields[] = IAccountManager::PROPERTY_ORGANISATION . self::SCOPE_SUFFIX;  | 
                                                        |
| 968 | + $permittedFields[] = IAccountManager::PROPERTY_ROLE . self::SCOPE_SUFFIX;  | 
                                                        |
| 969 | + $permittedFields[] = IAccountManager::PROPERTY_HEADLINE . self::SCOPE_SUFFIX;  | 
                                                        |
| 970 | + $permittedFields[] = IAccountManager::PROPERTY_BIOGRAPHY . self::SCOPE_SUFFIX;  | 
                                                        |
| 971 | + $permittedFields[] = IAccountManager::PROPERTY_PROFILE_ENABLED . self::SCOPE_SUFFIX;  | 
                                                        |
| 972 | + $permittedFields[] = IAccountManager::PROPERTY_BIRTHDATE . self::SCOPE_SUFFIX;  | 
                                                        |
| 973 | + $permittedFields[] = IAccountManager::PROPERTY_AVATAR . self::SCOPE_SUFFIX;  | 
                                                        |
| 974 | + $permittedFields[] = IAccountManager::PROPERTY_PRONOUNS . self::SCOPE_SUFFIX;  | 
                                                        |
| 975 | +  | 
                                                        |
| 976 | + // If admin they can edit their own quota and manager  | 
                                                        |
| 977 | + $isAdmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 978 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 979 | +            if ($isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 980 | + $permittedFields[] = self::USER_FIELD_QUOTA;  | 
                                                        |
| 981 | + $permittedFields[] = self::USER_FIELD_MANAGER;  | 
                                                        |
| 982 | + }  | 
                                                        |
| 983 | +        } else { | 
                                                        |
| 984 | + // Check if admin / subadmin  | 
                                                        |
| 985 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 986 | + if (  | 
                                                        |
| 987 | + $this->groupManager->isAdmin($currentLoggedInUser->getUID()) ||  | 
                                                        |
| 988 | + $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID()) && !$this->groupManager->isInGroup($targetUser->getUID(), 'admin')  | 
                                                        |
| 989 | + || $subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)  | 
                                                        |
| 990 | +            ) { | 
                                                        |
| 991 | + // They have permissions over the user  | 
                                                        |
| 992 | + if (  | 
                                                        |
| 993 | + $targetUser->getBackend() instanceof ISetDisplayNameBackend  | 
                                                        |
| 994 | + || $targetUser->getBackend()->implementsActions(Backend::SET_DISPLAYNAME)  | 
                                                        |
| 995 | +                ) { | 
                                                        |
| 996 | + $permittedFields[] = self::USER_FIELD_DISPLAYNAME;  | 
                                                        |
| 997 | + $permittedFields[] = IAccountManager::PROPERTY_DISPLAYNAME;  | 
                                                        |
| 998 | + }  | 
                                                        |
| 999 | + $permittedFields[] = IAccountManager::PROPERTY_EMAIL;  | 
                                                        |
| 1000 | + $permittedFields[] = IAccountManager::COLLECTION_EMAIL;  | 
                                                        |
| 1001 | + $permittedFields[] = self::USER_FIELD_PASSWORD;  | 
                                                        |
| 1002 | + $permittedFields[] = self::USER_FIELD_LANGUAGE;  | 
                                                        |
| 1003 | + $permittedFields[] = self::USER_FIELD_LOCALE;  | 
                                                        |
| 1004 | + $permittedFields[] = self::USER_FIELD_FIRST_DAY_OF_WEEK;  | 
                                                        |
| 1005 | + $permittedFields[] = IAccountManager::PROPERTY_PHONE;  | 
                                                        |
| 1006 | + $permittedFields[] = IAccountManager::PROPERTY_ADDRESS;  | 
                                                        |
| 1007 | + $permittedFields[] = IAccountManager::PROPERTY_WEBSITE;  | 
                                                        |
| 1008 | + $permittedFields[] = IAccountManager::PROPERTY_TWITTER;  | 
                                                        |
| 1009 | + $permittedFields[] = IAccountManager::PROPERTY_FEDIVERSE;  | 
                                                        |
| 1010 | + $permittedFields[] = IAccountManager::PROPERTY_ORGANISATION;  | 
                                                        |
| 1011 | + $permittedFields[] = IAccountManager::PROPERTY_ROLE;  | 
                                                        |
| 1012 | + $permittedFields[] = IAccountManager::PROPERTY_HEADLINE;  | 
                                                        |
| 1013 | + $permittedFields[] = IAccountManager::PROPERTY_BIOGRAPHY;  | 
                                                        |
| 1014 | + $permittedFields[] = IAccountManager::PROPERTY_PROFILE_ENABLED;  | 
                                                        |
| 1015 | + $permittedFields[] = IAccountManager::PROPERTY_PRONOUNS;  | 
                                                        |
| 1016 | + $permittedFields[] = self::USER_FIELD_QUOTA;  | 
                                                        |
| 1017 | + $permittedFields[] = self::USER_FIELD_NOTIFICATION_EMAIL;  | 
                                                        |
| 1018 | + $permittedFields[] = self::USER_FIELD_MANAGER;  | 
                                                        |
| 1019 | +            } else { | 
                                                        |
| 1020 | + // No rights  | 
                                                        |
| 1021 | +                throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1022 | + }  | 
                                                        |
| 1023 | + }  | 
                                                        |
| 1024 | + // Check if permitted to edit this field  | 
                                                        |
| 1025 | +        if (!in_array($key, $permittedFields)) { | 
                                                        |
| 1026 | +            throw new OCSException('', 113); | 
                                                        |
| 1027 | + }  | 
                                                        |
| 1028 | + // Process the edit  | 
                                                        |
| 1029 | +        switch ($key) { | 
                                                        |
| 1030 | + case self::USER_FIELD_DISPLAYNAME:  | 
                                                        |
| 1031 | + case IAccountManager::PROPERTY_DISPLAYNAME:  | 
                                                        |
| 1032 | +                try { | 
                                                        |
| 1033 | + $targetUser->setDisplayName($value);  | 
                                                        |
| 1034 | +                } catch (InvalidArgumentException $e) { | 
                                                        |
| 1035 | + throw new OCSException($e->getMessage(), 101);  | 
                                                        |
| 1036 | + }  | 
                                                        |
| 1037 | + break;  | 
                                                        |
| 1038 | + case self::USER_FIELD_QUOTA:  | 
                                                        |
| 1039 | + $quota = $value;  | 
                                                        |
| 1040 | +                if ($quota !== 'none' && $quota !== 'default') { | 
                                                        |
| 1041 | +                    if (is_numeric($quota)) { | 
                                                        |
| 1042 | + $quota = (float)$quota;  | 
                                                        |
| 1043 | +                    } else { | 
                                                        |
| 1044 | + $quota = Util::computerFileSize($quota);  | 
                                                        |
| 1045 | + }  | 
                                                        |
| 1046 | +                    if ($quota === false) { | 
                                                        |
| 1047 | +                        throw new OCSException($this->l10n->t('Invalid quota value: %1$s', [$value]), 101); | 
                                                        |
| 1048 | + }  | 
                                                        |
| 1049 | +                    if ($quota === -1) { | 
                                                        |
| 1050 | + $quota = 'none';  | 
                                                        |
| 1051 | +                    } else { | 
                                                        |
| 1052 | +                        $maxQuota = (int)$this->config->getAppValue('files', 'max_quota', '-1'); | 
                                                        |
| 1053 | +                        if ($maxQuota !== -1 && $quota > $maxQuota) { | 
                                                        |
| 1054 | +                            throw new OCSException($this->l10n->t('Invalid quota value. %1$s is exceeding the maximum quota', [$value]), 101); | 
                                                        |
| 1055 | + }  | 
                                                        |
| 1056 | + $quota = Util::humanFileSize($quota);  | 
                                                        |
| 1057 | + }  | 
                                                        |
| 1058 | + }  | 
                                                        |
| 1059 | + // no else block because quota can be set to 'none' in previous if  | 
                                                        |
| 1060 | +                if ($quota === 'none') { | 
                                                        |
| 1061 | +                    $allowUnlimitedQuota = $this->config->getAppValue('files', 'allow_unlimited_quota', '1') === '1'; | 
                                                        |
| 1062 | +                    if (!$allowUnlimitedQuota) { | 
                                                        |
| 1063 | +                        throw new OCSException($this->l10n->t('Unlimited quota is forbidden on this instance'), 101); | 
                                                        |
| 1064 | + }  | 
                                                        |
| 1065 | + }  | 
                                                        |
| 1066 | + $targetUser->setQuota($quota);  | 
                                                        |
| 1067 | + break;  | 
                                                        |
| 1068 | + case self::USER_FIELD_MANAGER:  | 
                                                        |
| 1069 | + $targetUser->setManagerUids([$value]);  | 
                                                        |
| 1070 | + break;  | 
                                                        |
| 1071 | + case self::USER_FIELD_PASSWORD:  | 
                                                        |
| 1072 | +                try { | 
                                                        |
| 1073 | +                    if (strlen($value) > IUserManager::MAX_PASSWORD_LENGTH) { | 
                                                        |
| 1074 | +                        throw new OCSException($this->l10n->t('Invalid password value'), 101); | 
                                                        |
| 1075 | + }  | 
                                                        |
| 1076 | +                    if (!$targetUser->canChangePassword()) { | 
                                                        |
| 1077 | +                        throw new OCSException($this->l10n->t('Setting the password is not supported by the users backend'), 112); | 
                                                        |
| 1078 | + }  | 
                                                        |
| 1079 | + $targetUser->setPassword($value);  | 
                                                        |
| 1080 | +                } catch (HintException $e) { // password policy error | 
                                                        |
| 1081 | + throw new OCSException($e->getHint(), 107);  | 
                                                        |
| 1082 | + }  | 
                                                        |
| 1083 | + break;  | 
                                                        |
| 1084 | + case self::USER_FIELD_LANGUAGE:  | 
                                                        |
| 1085 | + $languagesCodes = $this->l10nFactory->findAvailableLanguages();  | 
                                                        |
| 1086 | +                if (!in_array($value, $languagesCodes, true) && $value !== 'en') { | 
                                                        |
| 1087 | +                    throw new OCSException($this->l10n->t('Invalid language'), 101); | 
                                                        |
| 1088 | + }  | 
                                                        |
| 1089 | + $this->config->setUserValue($targetUser->getUID(), 'core', 'lang', $value);  | 
                                                        |
| 1090 | + break;  | 
                                                        |
| 1091 | + case self::USER_FIELD_LOCALE:  | 
                                                        |
| 1092 | +                if (!$this->l10nFactory->localeExists($value)) { | 
                                                        |
| 1093 | +                    throw new OCSException($this->l10n->t('Invalid locale'), 101); | 
                                                        |
| 1094 | + }  | 
                                                        |
| 1095 | + $this->config->setUserValue($targetUser->getUID(), 'core', 'locale', $value);  | 
                                                        |
| 1096 | + break;  | 
                                                        |
| 1097 | + case self::USER_FIELD_FIRST_DAY_OF_WEEK:  | 
                                                        |
| 1098 | + $intValue = (int)$value;  | 
                                                        |
| 1099 | +                if ($intValue < -1 || $intValue > 6) { | 
                                                        |
| 1100 | +                    throw new OCSException($this->l10n->t('Invalid first day of week'), 101); | 
                                                        |
| 1101 | + }  | 
                                                        |
| 1102 | +                if ($intValue === -1) { | 
                                                        |
| 1103 | + $this->config->deleteUserValue($targetUser->getUID(), 'core', AUserDataOCSController::USER_FIELD_FIRST_DAY_OF_WEEK);  | 
                                                        |
| 1104 | +                } else { | 
                                                        |
| 1105 | + $this->config->setUserValue($targetUser->getUID(), 'core', AUserDataOCSController::USER_FIELD_FIRST_DAY_OF_WEEK, $value);  | 
                                                        |
| 1106 | + }  | 
                                                        |
| 1107 | + break;  | 
                                                        |
| 1108 | + case self::USER_FIELD_NOTIFICATION_EMAIL:  | 
                                                        |
| 1109 | + $success = false;  | 
                                                        |
| 1110 | +                if ($value === '' || filter_var($value, FILTER_VALIDATE_EMAIL)) { | 
                                                        |
| 1111 | +                    try { | 
                                                        |
| 1112 | + $targetUser->setPrimaryEMailAddress($value);  | 
                                                        |
| 1113 | + $success = true;  | 
                                                        |
| 1114 | +                    } catch (InvalidArgumentException $e) { | 
                                                        |
| 1115 | + $this->logger->info(  | 
                                                        |
| 1116 | + 'Cannot set primary email, because provided address is not verified',  | 
                                                        |
| 1117 | + [  | 
                                                        |
| 1118 | + 'app' => 'provisioning_api',  | 
                                                        |
| 1119 | + 'exception' => $e,  | 
                                                        |
| 1120 | + ]  | 
                                                        |
| 1121 | + );  | 
                                                        |
| 1122 | + }  | 
                                                        |
| 1123 | + }  | 
                                                        |
| 1124 | +                if (!$success) { | 
                                                        |
| 1125 | +                    throw new OCSException('', 101); | 
                                                        |
| 1126 | + }  | 
                                                        |
| 1127 | + break;  | 
                                                        |
| 1128 | + case IAccountManager::PROPERTY_EMAIL:  | 
                                                        |
| 1129 | +                if (filter_var($value, FILTER_VALIDATE_EMAIL) || $value === '') { | 
                                                        |
| 1130 | + $targetUser->setEMailAddress($value);  | 
                                                        |
| 1131 | +                } else { | 
                                                        |
| 1132 | +                    throw new OCSException('', 101); | 
                                                        |
| 1133 | + }  | 
                                                        |
| 1134 | + break;  | 
                                                        |
| 1135 | + case IAccountManager::COLLECTION_EMAIL:  | 
                                                        |
| 1136 | +                if (filter_var($value, FILTER_VALIDATE_EMAIL) && $value !== $targetUser->getSystemEMailAddress()) { | 
                                                        |
| 1137 | + $userAccount = $this->accountManager->getAccount($targetUser);  | 
                                                        |
| 1138 | + $mailCollection = $userAccount->getPropertyCollection(IAccountManager::COLLECTION_EMAIL);  | 
                                                        |
| 1139 | +  | 
                                                        |
| 1140 | +                    if ($mailCollection->getPropertyByValue($value)) { | 
                                                        |
| 1141 | +                        throw new OCSException('', 101); | 
                                                        |
| 1142 | + }  | 
                                                        |
| 1143 | +  | 
                                                        |
| 1144 | + $mailCollection->addPropertyWithDefaults($value);  | 
                                                        |
| 1145 | + $this->accountManager->updateAccount($userAccount);  | 
                                                        |
| 1146 | +                } else { | 
                                                        |
| 1147 | +                    throw new OCSException('', 101); | 
                                                        |
| 1148 | + }  | 
                                                        |
| 1149 | + break;  | 
                                                        |
| 1150 | + case IAccountManager::PROPERTY_PHONE:  | 
                                                        |
| 1151 | + case IAccountManager::PROPERTY_ADDRESS:  | 
                                                        |
| 1152 | + case IAccountManager::PROPERTY_WEBSITE:  | 
                                                        |
| 1153 | + case IAccountManager::PROPERTY_TWITTER:  | 
                                                        |
| 1154 | + case IAccountManager::PROPERTY_FEDIVERSE:  | 
                                                        |
| 1155 | + case IAccountManager::PROPERTY_ORGANISATION:  | 
                                                        |
| 1156 | + case IAccountManager::PROPERTY_ROLE:  | 
                                                        |
| 1157 | + case IAccountManager::PROPERTY_HEADLINE:  | 
                                                        |
| 1158 | + case IAccountManager::PROPERTY_BIOGRAPHY:  | 
                                                        |
| 1159 | + case IAccountManager::PROPERTY_BIRTHDATE:  | 
                                                        |
| 1160 | + case IAccountManager::PROPERTY_PRONOUNS:  | 
                                                        |
| 1161 | + $userAccount = $this->accountManager->getAccount($targetUser);  | 
                                                        |
| 1162 | +                try { | 
                                                        |
| 1163 | + $userProperty = $userAccount->getProperty($key);  | 
                                                        |
| 1164 | +                    if ($userProperty->getValue() !== $value) { | 
                                                        |
| 1165 | +                        try { | 
                                                        |
| 1166 | + $userProperty->setValue($value);  | 
                                                        |
| 1167 | +                            if ($userProperty->getName() === IAccountManager::PROPERTY_PHONE) { | 
                                                        |
| 1168 | + $this->knownUserService->deleteByContactUserId($targetUser->getUID());  | 
                                                        |
| 1169 | + }  | 
                                                        |
| 1170 | +                        } catch (InvalidArgumentException $e) { | 
                                                        |
| 1171 | +                            throw new OCSException('Invalid ' . $e->getMessage(), 101); | 
                                                        |
| 1172 | + }  | 
                                                        |
| 1173 | + }  | 
                                                        |
| 1174 | +                } catch (PropertyDoesNotExistException $e) { | 
                                                        |
| 1175 | + $userAccount->setProperty($key, $value, IAccountManager::SCOPE_PRIVATE, IAccountManager::NOT_VERIFIED);  | 
                                                        |
| 1176 | + }  | 
                                                        |
| 1177 | +                try { | 
                                                        |
| 1178 | + $this->accountManager->updateAccount($userAccount);  | 
                                                        |
| 1179 | +                } catch (InvalidArgumentException $e) { | 
                                                        |
| 1180 | +                    throw new OCSException('Invalid ' . $e->getMessage(), 101); | 
                                                        |
| 1181 | + }  | 
                                                        |
| 1182 | + break;  | 
                                                        |
| 1183 | + case IAccountManager::PROPERTY_PROFILE_ENABLED:  | 
                                                        |
| 1184 | + $userAccount = $this->accountManager->getAccount($targetUser);  | 
                                                        |
| 1185 | +                try { | 
                                                        |
| 1186 | + $userProperty = $userAccount->getProperty($key);  | 
                                                        |
| 1187 | +                    if ($userProperty->getValue() !== $value) { | 
                                                        |
| 1188 | + $userProperty->setValue($value);  | 
                                                        |
| 1189 | + }  | 
                                                        |
| 1190 | +                } catch (PropertyDoesNotExistException $e) { | 
                                                        |
| 1191 | + $userAccount->setProperty($key, $value, IAccountManager::SCOPE_LOCAL, IAccountManager::NOT_VERIFIED);  | 
                                                        |
| 1192 | + }  | 
                                                        |
| 1193 | + $this->accountManager->updateAccount($userAccount);  | 
                                                        |
| 1194 | + break;  | 
                                                        |
| 1195 | + case IAccountManager::PROPERTY_DISPLAYNAME . self::SCOPE_SUFFIX:  | 
                                                        |
| 1196 | + case IAccountManager::PROPERTY_EMAIL . self::SCOPE_SUFFIX:  | 
                                                        |
| 1197 | + case IAccountManager::PROPERTY_PHONE . self::SCOPE_SUFFIX:  | 
                                                        |
| 1198 | + case IAccountManager::PROPERTY_ADDRESS . self::SCOPE_SUFFIX:  | 
                                                        |
| 1199 | + case IAccountManager::PROPERTY_WEBSITE . self::SCOPE_SUFFIX:  | 
                                                        |
| 1200 | + case IAccountManager::PROPERTY_TWITTER . self::SCOPE_SUFFIX:  | 
                                                        |
| 1201 | + case IAccountManager::PROPERTY_FEDIVERSE . self::SCOPE_SUFFIX:  | 
                                                        |
| 1202 | + case IAccountManager::PROPERTY_ORGANISATION . self::SCOPE_SUFFIX:  | 
                                                        |
| 1203 | + case IAccountManager::PROPERTY_ROLE . self::SCOPE_SUFFIX:  | 
                                                        |
| 1204 | + case IAccountManager::PROPERTY_HEADLINE . self::SCOPE_SUFFIX:  | 
                                                        |
| 1205 | + case IAccountManager::PROPERTY_BIOGRAPHY . self::SCOPE_SUFFIX:  | 
                                                        |
| 1206 | + case IAccountManager::PROPERTY_PROFILE_ENABLED . self::SCOPE_SUFFIX:  | 
                                                        |
| 1207 | + case IAccountManager::PROPERTY_BIRTHDATE . self::SCOPE_SUFFIX:  | 
                                                        |
| 1208 | + case IAccountManager::PROPERTY_AVATAR . self::SCOPE_SUFFIX:  | 
                                                        |
| 1209 | + case IAccountManager::PROPERTY_PRONOUNS . self::SCOPE_SUFFIX:  | 
                                                        |
| 1210 | + $propertyName = substr($key, 0, strlen($key) - strlen(self::SCOPE_SUFFIX));  | 
                                                        |
| 1211 | + $userAccount = $this->accountManager->getAccount($targetUser);  | 
                                                        |
| 1212 | + $userProperty = $userAccount->getProperty($propertyName);  | 
                                                        |
| 1213 | +                if ($userProperty->getScope() !== $value) { | 
                                                        |
| 1214 | +                    try { | 
                                                        |
| 1215 | + $userProperty->setScope($value);  | 
                                                        |
| 1216 | + $this->accountManager->updateAccount($userAccount);  | 
                                                        |
| 1217 | +                    } catch (InvalidArgumentException $e) { | 
                                                        |
| 1218 | +                        throw new OCSException('Invalid ' . $e->getMessage(), 101); | 
                                                        |
| 1219 | + }  | 
                                                        |
| 1220 | + }  | 
                                                        |
| 1221 | + break;  | 
                                                        |
| 1222 | + default:  | 
                                                        |
| 1223 | +                throw new OCSException('', 113); | 
                                                        |
| 1224 | + }  | 
                                                        |
| 1225 | + return new DataResponse();  | 
                                                        |
| 1226 | + }  | 
                                                        |
| 1227 | +  | 
                                                        |
| 1228 | + /**  | 
                                                        |
| 1229 | + * Wipe all devices of a user  | 
                                                        |
| 1230 | + *  | 
                                                        |
| 1231 | + * @param string $userId ID of the user  | 
                                                        |
| 1232 | + *  | 
                                                        |
| 1233 | +     * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1234 | + *  | 
                                                        |
| 1235 | + * @throws OCSException  | 
                                                        |
| 1236 | + *  | 
                                                        |
| 1237 | + * 200: Wiped all user devices successfully  | 
                                                        |
| 1238 | + */  | 
                                                        |
| 1239 | + #[PasswordConfirmationRequired]  | 
                                                        |
| 1240 | + #[NoAdminRequired]  | 
                                                        |
| 1241 | +    public function wipeUserDevices(string $userId): DataResponse { | 
                                                        |
| 1242 | + /** @var IUser $currentLoggedInUser */  | 
                                                        |
| 1243 | + $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1244 | +  | 
                                                        |
| 1245 | + $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1246 | +  | 
                                                        |
| 1247 | +        if ($targetUser === null) { | 
                                                        |
| 1248 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1249 | + }  | 
                                                        |
| 1250 | +  | 
                                                        |
| 1251 | +        if ($targetUser->getUID() === $currentLoggedInUser->getUID()) { | 
                                                        |
| 1252 | +            throw new OCSException('', 101); | 
                                                        |
| 1253 | + }  | 
                                                        |
| 1254 | +  | 
                                                        |
| 1255 | + // If not permitted  | 
                                                        |
| 1256 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1257 | + $isAdmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1258 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1259 | +        if (!$isAdmin && !($isDelegatedAdmin && !$this->groupManager->isInGroup($targetUser->getUID(), 'admin')) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { | 
                                                        |
| 1260 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1261 | + }  | 
                                                        |
| 1262 | +  | 
                                                        |
| 1263 | + $this->remoteWipe->markAllTokensForWipe($targetUser);  | 
                                                        |
| 1264 | +  | 
                                                        |
| 1265 | + return new DataResponse();  | 
                                                        |
| 1266 | + }  | 
                                                        |
| 1267 | +  | 
                                                        |
| 1268 | + /**  | 
                                                        |
| 1269 | + * Delete a user  | 
                                                        |
| 1270 | + *  | 
                                                        |
| 1271 | + * @param string $userId ID of the user  | 
                                                        |
| 1272 | +     * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1273 | + * @throws OCSException  | 
                                                        |
| 1274 | + *  | 
                                                        |
| 1275 | + * 200: User deleted successfully  | 
                                                        |
| 1276 | + */  | 
                                                        |
| 1277 | + #[PasswordConfirmationRequired]  | 
                                                        |
| 1278 | + #[NoAdminRequired]  | 
                                                        |
| 1279 | +    public function deleteUser(string $userId): DataResponse { | 
                                                        |
| 1280 | + $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1281 | +  | 
                                                        |
| 1282 | + $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1283 | +  | 
                                                        |
| 1284 | +        if ($targetUser === null) { | 
                                                        |
| 1285 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1286 | + }  | 
                                                        |
| 1287 | +  | 
                                                        |
| 1288 | +        if ($targetUser->getUID() === $currentLoggedInUser->getUID()) { | 
                                                        |
| 1289 | +            throw new OCSException('', 101); | 
                                                        |
| 1290 | + }  | 
                                                        |
| 1291 | +  | 
                                                        |
| 1292 | + // If not permitted  | 
                                                        |
| 1293 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1294 | + $isAdmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1295 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1296 | +        if (!$isAdmin && !($isDelegatedAdmin && !$this->groupManager->isInGroup($targetUser->getUID(), 'admin')) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { | 
                                                        |
| 1297 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1298 | + }  | 
                                                        |
| 1299 | +  | 
                                                        |
| 1300 | + // Go ahead with the delete  | 
                                                        |
| 1301 | +        if ($targetUser->delete()) { | 
                                                        |
| 1302 | + return new DataResponse();  | 
                                                        |
| 1303 | +        } else { | 
                                                        |
| 1304 | +            throw new OCSException('', 101); | 
                                                        |
| 1305 | + }  | 
                                                        |
| 1306 | + }  | 
                                                        |
| 1307 | +  | 
                                                        |
| 1308 | + /**  | 
                                                        |
| 1309 | + * Disable a user  | 
                                                        |
| 1310 | + *  | 
                                                        |
| 1311 | + * @param string $userId ID of the user  | 
                                                        |
| 1312 | +     * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1313 | + * @throws OCSException  | 
                                                        |
| 1314 | + *  | 
                                                        |
| 1315 | + * 200: User disabled successfully  | 
                                                        |
| 1316 | + */  | 
                                                        |
| 1317 | + #[PasswordConfirmationRequired]  | 
                                                        |
| 1318 | + #[NoAdminRequired]  | 
                                                        |
| 1319 | +    public function disableUser(string $userId): DataResponse { | 
                                                        |
| 1320 | + return $this->setEnabled($userId, false);  | 
                                                        |
| 1321 | + }  | 
                                                        |
| 1322 | +  | 
                                                        |
| 1323 | + /**  | 
                                                        |
| 1324 | + * Enable a user  | 
                                                        |
| 1325 | + *  | 
                                                        |
| 1326 | + * @param string $userId ID of the user  | 
                                                        |
| 1327 | +     * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1328 | + * @throws OCSException  | 
                                                        |
| 1329 | + *  | 
                                                        |
| 1330 | + * 200: User enabled successfully  | 
                                                        |
| 1331 | + */  | 
                                                        |
| 1332 | + #[PasswordConfirmationRequired]  | 
                                                        |
| 1333 | + #[NoAdminRequired]  | 
                                                        |
| 1334 | +    public function enableUser(string $userId): DataResponse { | 
                                                        |
| 1335 | + return $this->setEnabled($userId, true);  | 
                                                        |
| 1336 | + }  | 
                                                        |
| 1337 | +  | 
                                                        |
| 1338 | + /**  | 
                                                        |
| 1339 | + * @param string $userId  | 
                                                        |
| 1340 | + * @param bool $value  | 
                                                        |
| 1341 | +     * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1342 | + * @throws OCSException  | 
                                                        |
| 1343 | + */  | 
                                                        |
| 1344 | +    private function setEnabled(string $userId, bool $value): DataResponse { | 
                                                        |
| 1345 | + $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1346 | +  | 
                                                        |
| 1347 | + $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1348 | +        if ($targetUser === null || $targetUser->getUID() === $currentLoggedInUser->getUID()) { | 
                                                        |
| 1349 | +            throw new OCSException('', 101); | 
                                                        |
| 1350 | + }  | 
                                                        |
| 1351 | +  | 
                                                        |
| 1352 | + // If not permitted  | 
                                                        |
| 1353 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1354 | + $isAdmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1355 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1356 | +        if (!$isAdmin && !($isDelegatedAdmin && !$this->groupManager->isInGroup($targetUser->getUID(), 'admin')) && !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)) { | 
                                                        |
| 1357 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1358 | + }  | 
                                                        |
| 1359 | +  | 
                                                        |
| 1360 | + // enable/disable the user now  | 
                                                        |
| 1361 | + $targetUser->setEnabled($value);  | 
                                                        |
| 1362 | + return new DataResponse();  | 
                                                        |
| 1363 | + }  | 
                                                        |
| 1364 | +  | 
                                                        |
| 1365 | + /**  | 
                                                        |
| 1366 | + * @NoSubAdminRequired  | 
                                                        |
| 1367 | + *  | 
                                                        |
| 1368 | + * Get a list of groups the user belongs to  | 
                                                        |
| 1369 | + *  | 
                                                        |
| 1370 | + * @param string $userId ID of the user  | 
                                                        |
| 1371 | +     * @return DataResponse<Http::STATUS_OK, array{groups: list<string>}, array{}> | 
                                                        |
| 1372 | + * @throws OCSException  | 
                                                        |
| 1373 | + *  | 
                                                        |
| 1374 | + * 200: Users groups returned  | 
                                                        |
| 1375 | + */  | 
                                                        |
| 1376 | + #[NoAdminRequired]  | 
                                                        |
| 1377 | +    public function getUsersGroups(string $userId): DataResponse { | 
                                                        |
| 1378 | + $loggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1379 | +  | 
                                                        |
| 1380 | + $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1381 | +        if ($targetUser === null) { | 
                                                        |
| 1382 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1383 | + }  | 
                                                        |
| 1384 | +  | 
                                                        |
| 1385 | + $isAdmin = $this->groupManager->isAdmin($loggedInUser->getUID());  | 
                                                        |
| 1386 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($loggedInUser->getUID());  | 
                                                        |
| 1387 | +        if ($targetUser->getUID() === $loggedInUser->getUID() || $isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 1388 | + // Self lookup or admin lookup  | 
                                                        |
| 1389 | + return new DataResponse([  | 
                                                        |
| 1390 | + 'groups' => $this->groupManager->getUserGroupIds($targetUser)  | 
                                                        |
| 1391 | + ]);  | 
                                                        |
| 1392 | +        } else { | 
                                                        |
| 1393 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1394 | +  | 
                                                        |
| 1395 | + // Looking up someone else  | 
                                                        |
| 1396 | +            if ($subAdminManager->isUserAccessible($loggedInUser, $targetUser)) { | 
                                                        |
| 1397 | + // Return the group that the method caller is subadmin of for the user in question  | 
                                                        |
| 1398 | + $groups = array_values(array_intersect(  | 
                                                        |
| 1399 | + array_map(static fn (IGroup $group) => $group->getGID(), $subAdminManager->getSubAdminsGroups($loggedInUser)),  | 
                                                        |
| 1400 | + $this->groupManager->getUserGroupIds($targetUser)  | 
                                                        |
| 1401 | + ));  | 
                                                        |
| 1402 | + return new DataResponse(['groups' => $groups]);  | 
                                                        |
| 1403 | +            } else { | 
                                                        |
| 1404 | + // Not permitted  | 
                                                        |
| 1405 | +                throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1406 | + }  | 
                                                        |
| 1407 | + }  | 
                                                        |
| 1408 | + }  | 
                                                        |
| 1409 | +  | 
                                                        |
| 1410 | + /**  | 
                                                        |
| 1411 | + * @NoSubAdminRequired  | 
                                                        |
| 1412 | + *  | 
                                                        |
| 1413 | + * Get a list of groups with details  | 
                                                        |
| 1414 | + *  | 
                                                        |
| 1415 | + * @param string $userId ID of the user  | 
                                                        |
| 1416 | +     * @return DataResponse<Http::STATUS_OK, array{groups: list<Provisioning_APIGroupDetails>}, array{}> | 
                                                        |
| 1417 | + * @throws OCSException  | 
                                                        |
| 1418 | + *  | 
                                                        |
| 1419 | + * 200: Users groups returned  | 
                                                        |
| 1420 | + */  | 
                                                        |
| 1421 | + #[NoAdminRequired]  | 
                                                        |
| 1422 | +    public function getUsersGroupsDetails(string $userId): DataResponse { | 
                                                        |
| 1423 | + $loggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1424 | +  | 
                                                        |
| 1425 | + $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1426 | +        if ($targetUser === null) { | 
                                                        |
| 1427 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1428 | + }  | 
                                                        |
| 1429 | +  | 
                                                        |
| 1430 | + $isAdmin = $this->groupManager->isAdmin($loggedInUser->getUID());  | 
                                                        |
| 1431 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($loggedInUser->getUID());  | 
                                                        |
| 1432 | +        if ($targetUser->getUID() === $loggedInUser->getUID() || $isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 1433 | + // Self lookup or admin lookup  | 
                                                        |
| 1434 | + $groups = array_map(  | 
                                                        |
| 1435 | +                function (Group $group) { | 
                                                        |
| 1436 | + return [  | 
                                                        |
| 1437 | + 'id' => $group->getGID(),  | 
                                                        |
| 1438 | + 'displayname' => $group->getDisplayName(),  | 
                                                        |
| 1439 | + 'usercount' => $group->count(),  | 
                                                        |
| 1440 | + 'disabled' => $group->countDisabled(),  | 
                                                        |
| 1441 | + 'canAdd' => $group->canAddUser(),  | 
                                                        |
| 1442 | + 'canRemove' => $group->canRemoveUser(),  | 
                                                        |
| 1443 | + ];  | 
                                                        |
| 1444 | + },  | 
                                                        |
| 1445 | + array_values($this->groupManager->getUserGroups($targetUser)),  | 
                                                        |
| 1446 | + );  | 
                                                        |
| 1447 | + return new DataResponse([  | 
                                                        |
| 1448 | + 'groups' => $groups,  | 
                                                        |
| 1449 | + ]);  | 
                                                        |
| 1450 | +        } else { | 
                                                        |
| 1451 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1452 | +  | 
                                                        |
| 1453 | + // Looking up someone else  | 
                                                        |
| 1454 | +            if ($subAdminManager->isUserAccessible($loggedInUser, $targetUser)) { | 
                                                        |
| 1455 | + // Return the group that the method caller is subadmin of for the user in question  | 
                                                        |
| 1456 | + $gids = array_values(array_intersect(  | 
                                                        |
| 1457 | + array_map(  | 
                                                        |
| 1458 | + static fn (IGroup $group) => $group->getGID(),  | 
                                                        |
| 1459 | + $subAdminManager->getSubAdminsGroups($loggedInUser),  | 
                                                        |
| 1460 | + ),  | 
                                                        |
| 1461 | + $this->groupManager->getUserGroupIds($targetUser)  | 
                                                        |
| 1462 | + ));  | 
                                                        |
| 1463 | + $groups = array_map(  | 
                                                        |
| 1464 | +                    function (string $gid) { | 
                                                        |
| 1465 | + $group = $this->groupManager->get($gid);  | 
                                                        |
| 1466 | + return [  | 
                                                        |
| 1467 | + 'id' => $group->getGID(),  | 
                                                        |
| 1468 | + 'displayname' => $group->getDisplayName(),  | 
                                                        |
| 1469 | + 'usercount' => $group->count(),  | 
                                                        |
| 1470 | + 'disabled' => $group->countDisabled(),  | 
                                                        |
| 1471 | + 'canAdd' => $group->canAddUser(),  | 
                                                        |
| 1472 | + 'canRemove' => $group->canRemoveUser(),  | 
                                                        |
| 1473 | + ];  | 
                                                        |
| 1474 | + },  | 
                                                        |
| 1475 | + $gids,  | 
                                                        |
| 1476 | + );  | 
                                                        |
| 1477 | + return new DataResponse([  | 
                                                        |
| 1478 | + 'groups' => $groups,  | 
                                                        |
| 1479 | + ]);  | 
                                                        |
| 1480 | +            } else { | 
                                                        |
| 1481 | + // Not permitted  | 
                                                        |
| 1482 | +                throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1483 | + }  | 
                                                        |
| 1484 | + }  | 
                                                        |
| 1485 | + }  | 
                                                        |
| 1486 | +  | 
                                                        |
| 1487 | + /**  | 
                                                        |
| 1488 | + * @NoSubAdminRequired  | 
                                                        |
| 1489 | + *  | 
                                                        |
| 1490 | + * Get a list of the groups the user is a subadmin of, with details  | 
                                                        |
| 1491 | + *  | 
                                                        |
| 1492 | + * @param string $userId ID of the user  | 
                                                        |
| 1493 | +     * @return DataResponse<Http::STATUS_OK, array{groups: list<Provisioning_APIGroupDetails>}, array{}> | 
                                                        |
| 1494 | + * @throws OCSException  | 
                                                        |
| 1495 | + *  | 
                                                        |
| 1496 | + * 200: Users subadmin groups returned  | 
                                                        |
| 1497 | + */  | 
                                                        |
| 1498 | + #[NoAdminRequired]  | 
                                                        |
| 1499 | +    public function getUserSubAdminGroupsDetails(string $userId): DataResponse { | 
                                                        |
| 1500 | + $loggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1501 | +  | 
                                                        |
| 1502 | + $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1503 | +        if ($targetUser === null) { | 
                                                        |
| 1504 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1505 | + }  | 
                                                        |
| 1506 | +  | 
                                                        |
| 1507 | + $isAdmin = $this->groupManager->isAdmin($loggedInUser->getUID());  | 
                                                        |
| 1508 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($loggedInUser->getUID());  | 
                                                        |
| 1509 | +        if ($targetUser->getUID() === $loggedInUser->getUID() || $isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 1510 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1511 | + $groups = array_map(  | 
                                                        |
| 1512 | +                function (IGroup $group) { | 
                                                        |
| 1513 | + return [  | 
                                                        |
| 1514 | + 'id' => $group->getGID(),  | 
                                                        |
| 1515 | + 'displayname' => $group->getDisplayName(),  | 
                                                        |
| 1516 | + 'usercount' => $group->count(),  | 
                                                        |
| 1517 | + 'disabled' => $group->countDisabled(),  | 
                                                        |
| 1518 | + 'canAdd' => $group->canAddUser(),  | 
                                                        |
| 1519 | + 'canRemove' => $group->canRemoveUser(),  | 
                                                        |
| 1520 | + ];  | 
                                                        |
| 1521 | + },  | 
                                                        |
| 1522 | + array_values($subAdminManager->getSubAdminsGroups($targetUser)),  | 
                                                        |
| 1523 | + );  | 
                                                        |
| 1524 | + return new DataResponse([  | 
                                                        |
| 1525 | + 'groups' => $groups,  | 
                                                        |
| 1526 | + ]);  | 
                                                        |
| 1527 | + }  | 
                                                        |
| 1528 | +        throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1529 | + }  | 
                                                        |
| 1530 | +  | 
                                                        |
| 1531 | + /**  | 
                                                        |
| 1532 | + * Add a user to a group  | 
                                                        |
| 1533 | + *  | 
                                                        |
| 1534 | + * @param string $userId ID of the user  | 
                                                        |
| 1535 | + * @param string $groupid ID of the group  | 
                                                        |
| 1536 | +     * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1537 | + * @throws OCSException  | 
                                                        |
| 1538 | + *  | 
                                                        |
| 1539 | + * 200: User added to group successfully  | 
                                                        |
| 1540 | + */  | 
                                                        |
| 1541 | + #[PasswordConfirmationRequired]  | 
                                                        |
| 1542 | + #[NoAdminRequired]  | 
                                                        |
| 1543 | +    public function addToGroup(string $userId, string $groupid = ''): DataResponse { | 
                                                        |
| 1544 | +        if ($groupid === '') { | 
                                                        |
| 1545 | +            throw new OCSException('', 101); | 
                                                        |
| 1546 | + }  | 
                                                        |
| 1547 | +  | 
                                                        |
| 1548 | + $group = $this->groupManager->get($groupid);  | 
                                                        |
| 1549 | + $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1550 | +        if ($group === null) { | 
                                                        |
| 1551 | +            throw new OCSException('', 102); | 
                                                        |
| 1552 | + }  | 
                                                        |
| 1553 | +        if ($targetUser === null) { | 
                                                        |
| 1554 | +            throw new OCSException('', 103); | 
                                                        |
| 1555 | + }  | 
                                                        |
| 1556 | +  | 
                                                        |
| 1557 | + // If they're not an admin, check they are a subadmin of the group in question  | 
                                                        |
| 1558 | + $loggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1559 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1560 | + $isAdmin = $this->groupManager->isAdmin($loggedInUser->getUID());  | 
                                                        |
| 1561 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($loggedInUser->getUID());  | 
                                                        |
| 1562 | +        if (!$isAdmin && !($isDelegatedAdmin && $groupid !== 'admin') && !$subAdminManager->isSubAdminOfGroup($loggedInUser, $group)) { | 
                                                        |
| 1563 | +            throw new OCSException('', 104); | 
                                                        |
| 1564 | + }  | 
                                                        |
| 1565 | +  | 
                                                        |
| 1566 | + // Add user to group  | 
                                                        |
| 1567 | + $group->addUser($targetUser);  | 
                                                        |
| 1568 | + return new DataResponse();  | 
                                                        |
| 1569 | + }  | 
                                                        |
| 1570 | +  | 
                                                        |
| 1571 | + /**  | 
                                                        |
| 1572 | + * Remove a user from a group  | 
                                                        |
| 1573 | + *  | 
                                                        |
| 1574 | + * @param string $userId ID of the user  | 
                                                        |
| 1575 | + * @param string $groupid ID of the group  | 
                                                        |
| 1576 | +     * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1577 | + * @throws OCSException  | 
                                                        |
| 1578 | + *  | 
                                                        |
| 1579 | + * 200: User removed from group successfully  | 
                                                        |
| 1580 | + */  | 
                                                        |
| 1581 | + #[PasswordConfirmationRequired]  | 
                                                        |
| 1582 | + #[NoAdminRequired]  | 
                                                        |
| 1583 | +    public function removeFromGroup(string $userId, string $groupid): DataResponse { | 
                                                        |
| 1584 | + $loggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1585 | +  | 
                                                        |
| 1586 | +        if ($groupid === null || trim($groupid) === '') { | 
                                                        |
| 1587 | +            throw new OCSException('', 101); | 
                                                        |
| 1588 | + }  | 
                                                        |
| 1589 | +  | 
                                                        |
| 1590 | + $group = $this->groupManager->get($groupid);  | 
                                                        |
| 1591 | +        if ($group === null) { | 
                                                        |
| 1592 | +            throw new OCSException('', 102); | 
                                                        |
| 1593 | + }  | 
                                                        |
| 1594 | +  | 
                                                        |
| 1595 | + $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1596 | +        if ($targetUser === null) { | 
                                                        |
| 1597 | +            throw new OCSException('', 103); | 
                                                        |
| 1598 | + }  | 
                                                        |
| 1599 | +  | 
                                                        |
| 1600 | + // If they're not an admin, check they are a subadmin of the group in question  | 
                                                        |
| 1601 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1602 | + $isAdmin = $this->groupManager->isAdmin($loggedInUser->getUID());  | 
                                                        |
| 1603 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($loggedInUser->getUID());  | 
                                                        |
| 1604 | +        if (!$isAdmin && !($isDelegatedAdmin && $groupid !== 'admin') && !$subAdminManager->isSubAdminOfGroup($loggedInUser, $group)) { | 
                                                        |
| 1605 | +            throw new OCSException('', 104); | 
                                                        |
| 1606 | + }  | 
                                                        |
| 1607 | +  | 
                                                        |
| 1608 | + // Check they aren't removing themselves from 'admin' or their 'subadmin; group  | 
                                                        |
| 1609 | +        if ($targetUser->getUID() === $loggedInUser->getUID()) { | 
                                                        |
| 1610 | +            if ($isAdmin || $isDelegatedAdmin) { | 
                                                        |
| 1611 | +                if ($group->getGID() === 'admin') { | 
                                                        |
| 1612 | +                    throw new OCSException($this->l10n->t('Cannot remove yourself from the admin group'), 105); | 
                                                        |
| 1613 | + }  | 
                                                        |
| 1614 | +            } else { | 
                                                        |
| 1615 | + // Not an admin, so the user must be a subadmin of this group, but that is not allowed.  | 
                                                        |
| 1616 | +                throw new OCSException($this->l10n->t('Cannot remove yourself from this group as you are a sub-admin'), 105); | 
                                                        |
| 1617 | + }  | 
                                                        |
| 1618 | +        } elseif (!($isAdmin || $isDelegatedAdmin)) { | 
                                                        |
| 1619 | + /** @var IGroup[] $subAdminGroups */  | 
                                                        |
| 1620 | + $subAdminGroups = $subAdminManager->getSubAdminsGroups($loggedInUser);  | 
                                                        |
| 1621 | +            $subAdminGroups = array_map(function (IGroup $subAdminGroup) { | 
                                                        |
| 1622 | + return $subAdminGroup->getGID();  | 
                                                        |
| 1623 | + }, $subAdminGroups);  | 
                                                        |
| 1624 | + $userGroups = $this->groupManager->getUserGroupIds($targetUser);  | 
                                                        |
| 1625 | + $userSubAdminGroups = array_intersect($subAdminGroups, $userGroups);  | 
                                                        |
| 1626 | +  | 
                                                        |
| 1627 | +            if (count($userSubAdminGroups) <= 1) { | 
                                                        |
| 1628 | + // Subadmin must not be able to remove a user from all their subadmin groups.  | 
                                                        |
| 1629 | +                throw new OCSException($this->l10n->t('Not viable to remove user from the last group you are sub-admin of'), 105); | 
                                                        |
| 1630 | + }  | 
                                                        |
| 1631 | + }  | 
                                                        |
| 1632 | +  | 
                                                        |
| 1633 | + // Remove user from group  | 
                                                        |
| 1634 | + $group->removeUser($targetUser);  | 
                                                        |
| 1635 | + return new DataResponse();  | 
                                                        |
| 1636 | + }  | 
                                                        |
| 1637 | +  | 
                                                        |
| 1638 | + /**  | 
                                                        |
| 1639 | + * Make a user a subadmin of a group  | 
                                                        |
| 1640 | + *  | 
                                                        |
| 1641 | + * @param string $userId ID of the user  | 
                                                        |
| 1642 | + * @param string $groupid ID of the group  | 
                                                        |
| 1643 | +     * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1644 | + * @throws OCSException  | 
                                                        |
| 1645 | + *  | 
                                                        |
| 1646 | + * 200: User added as group subadmin successfully  | 
                                                        |
| 1647 | + */  | 
                                                        |
| 1648 | + #[AuthorizedAdminSetting(settings:Users::class)]  | 
                                                        |
| 1649 | + #[PasswordConfirmationRequired]  | 
                                                        |
| 1650 | +    public function addSubAdmin(string $userId, string $groupid): DataResponse { | 
                                                        |
| 1651 | + $group = $this->groupManager->get($groupid);  | 
                                                        |
| 1652 | + $user = $this->userManager->get($userId);  | 
                                                        |
| 1653 | +  | 
                                                        |
| 1654 | + // Check if the user exists  | 
                                                        |
| 1655 | +        if ($user === null) { | 
                                                        |
| 1656 | +            throw new OCSException($this->l10n->t('User does not exist'), 101); | 
                                                        |
| 1657 | + }  | 
                                                        |
| 1658 | + // Check if group exists  | 
                                                        |
| 1659 | +        if ($group === null) { | 
                                                        |
| 1660 | +            throw new OCSException($this->l10n->t('Group does not exist'), 102); | 
                                                        |
| 1661 | + }  | 
                                                        |
| 1662 | + // Check if trying to make subadmin of admin group  | 
                                                        |
| 1663 | +        if ($group->getGID() === 'admin') { | 
                                                        |
| 1664 | +            throw new OCSException($this->l10n->t('Cannot create sub-admins for admin group'), 103); | 
                                                        |
| 1665 | + }  | 
                                                        |
| 1666 | +  | 
                                                        |
| 1667 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1668 | +  | 
                                                        |
| 1669 | + // We cannot be subadmin twice  | 
                                                        |
| 1670 | +        if ($subAdminManager->isSubAdminOfGroup($user, $group)) { | 
                                                        |
| 1671 | + return new DataResponse();  | 
                                                        |
| 1672 | + }  | 
                                                        |
| 1673 | + // Go  | 
                                                        |
| 1674 | + $subAdminManager->createSubAdmin($user, $group);  | 
                                                        |
| 1675 | + return new DataResponse();  | 
                                                        |
| 1676 | + }  | 
                                                        |
| 1677 | +  | 
                                                        |
| 1678 | + /**  | 
                                                        |
| 1679 | + * Remove a user from the subadmins of a group  | 
                                                        |
| 1680 | + *  | 
                                                        |
| 1681 | + * @param string $userId ID of the user  | 
                                                        |
| 1682 | + * @param string $groupid ID of the group  | 
                                                        |
| 1683 | +     * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1684 | + * @throws OCSException  | 
                                                        |
| 1685 | + *  | 
                                                        |
| 1686 | + * 200: User removed as group subadmin successfully  | 
                                                        |
| 1687 | + */  | 
                                                        |
| 1688 | + #[AuthorizedAdminSetting(settings:Users::class)]  | 
                                                        |
| 1689 | + #[PasswordConfirmationRequired]  | 
                                                        |
| 1690 | +    public function removeSubAdmin(string $userId, string $groupid): DataResponse { | 
                                                        |
| 1691 | + $group = $this->groupManager->get($groupid);  | 
                                                        |
| 1692 | + $user = $this->userManager->get($userId);  | 
                                                        |
| 1693 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1694 | +  | 
                                                        |
| 1695 | + // Check if the user exists  | 
                                                        |
| 1696 | +        if ($user === null) { | 
                                                        |
| 1697 | +            throw new OCSException($this->l10n->t('User does not exist'), 101); | 
                                                        |
| 1698 | + }  | 
                                                        |
| 1699 | + // Check if the group exists  | 
                                                        |
| 1700 | +        if ($group === null) { | 
                                                        |
| 1701 | +            throw new OCSException($this->l10n->t('Group does not exist'), 101); | 
                                                        |
| 1702 | + }  | 
                                                        |
| 1703 | + // Check if they are a subadmin of this said group  | 
                                                        |
| 1704 | +        if (!$subAdminManager->isSubAdminOfGroup($user, $group)) { | 
                                                        |
| 1705 | +            throw new OCSException($this->l10n->t('User is not a sub-admin of this group'), 102); | 
                                                        |
| 1706 | + }  | 
                                                        |
| 1707 | +  | 
                                                        |
| 1708 | + // Go  | 
                                                        |
| 1709 | + $subAdminManager->deleteSubAdmin($user, $group);  | 
                                                        |
| 1710 | + return new DataResponse();  | 
                                                        |
| 1711 | + }  | 
                                                        |
| 1712 | +  | 
                                                        |
| 1713 | + /**  | 
                                                        |
| 1714 | + * Get the groups a user is a subadmin of  | 
                                                        |
| 1715 | + *  | 
                                                        |
| 1716 | + * @param string $userId ID if the user  | 
                                                        |
| 1717 | +     * @return DataResponse<Http::STATUS_OK, list<string>, array{}> | 
                                                        |
| 1718 | + * @throws OCSException  | 
                                                        |
| 1719 | + *  | 
                                                        |
| 1720 | + * 200: User subadmin groups returned  | 
                                                        |
| 1721 | + */  | 
                                                        |
| 1722 | + #[AuthorizedAdminSetting(settings:Users::class)]  | 
                                                        |
| 1723 | +    public function getUserSubAdminGroups(string $userId): DataResponse { | 
                                                        |
| 1724 | + $groups = $this->getUserSubAdminGroupsData($userId);  | 
                                                        |
| 1725 | + return new DataResponse($groups);  | 
                                                        |
| 1726 | + }  | 
                                                        |
| 1727 | +  | 
                                                        |
| 1728 | + /**  | 
                                                        |
| 1729 | + * Resend the welcome message  | 
                                                        |
| 1730 | + *  | 
                                                        |
| 1731 | + * @param string $userId ID if the user  | 
                                                        |
| 1732 | +     * @return DataResponse<Http::STATUS_OK, list<empty>, array{}> | 
                                                        |
| 1733 | + * @throws OCSException  | 
                                                        |
| 1734 | + *  | 
                                                        |
| 1735 | + * 200: Resent welcome message successfully  | 
                                                        |
| 1736 | + */  | 
                                                        |
| 1737 | + #[PasswordConfirmationRequired]  | 
                                                        |
| 1738 | + #[NoAdminRequired]  | 
                                                        |
| 1739 | +    public function resendWelcomeMessage(string $userId): DataResponse { | 
                                                        |
| 1740 | + $currentLoggedInUser = $this->userSession->getUser();  | 
                                                        |
| 1741 | +  | 
                                                        |
| 1742 | + $targetUser = $this->userManager->get($userId);  | 
                                                        |
| 1743 | +        if ($targetUser === null) { | 
                                                        |
| 1744 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1745 | + }  | 
                                                        |
| 1746 | +  | 
                                                        |
| 1747 | + // Check if admin / subadmin  | 
                                                        |
| 1748 | + $subAdminManager = $this->groupManager->getSubAdmin();  | 
                                                        |
| 1749 | + $isAdmin = $this->groupManager->isAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1750 | + $isDelegatedAdmin = $this->groupManager->isDelegatedAdmin($currentLoggedInUser->getUID());  | 
                                                        |
| 1751 | + if (  | 
                                                        |
| 1752 | + !$subAdminManager->isUserAccessible($currentLoggedInUser, $targetUser)  | 
                                                        |
| 1753 | + && !($isAdmin || $isDelegatedAdmin)  | 
                                                        |
| 1754 | +        ) { | 
                                                        |
| 1755 | + // No rights  | 
                                                        |
| 1756 | +            throw new OCSException('', OCSController::RESPOND_NOT_FOUND); | 
                                                        |
| 1757 | + }  | 
                                                        |
| 1758 | +  | 
                                                        |
| 1759 | + $email = $targetUser->getEMailAddress();  | 
                                                        |
| 1760 | +        if ($email === '' || $email === null) { | 
                                                        |
| 1761 | +            throw new OCSException($this->l10n->t('Email address not available'), 101); | 
                                                        |
| 1762 | + }  | 
                                                        |
| 1763 | +  | 
                                                        |
| 1764 | +        try { | 
                                                        |
| 1765 | +            if ($this->config->getUserValue($targetUser->getUID(), 'core', 'lostpassword')) { | 
                                                        |
| 1766 | + $emailTemplate = $this->newUserMailHelper->generateTemplate($targetUser, true);  | 
                                                        |
| 1767 | +            } else { | 
                                                        |
| 1768 | + $emailTemplate = $this->newUserMailHelper->generateTemplate($targetUser, false);  | 
                                                        |
| 1769 | + }  | 
                                                        |
| 1770 | +  | 
                                                        |
| 1771 | + $this->newUserMailHelper->sendMail($targetUser, $emailTemplate);  | 
                                                        |
| 1772 | +        } catch (\Exception $e) { | 
                                                        |
| 1773 | + $this->logger->error(  | 
                                                        |
| 1774 | + "Can't send new user mail to $email",  | 
                                                        |
| 1775 | + [  | 
                                                        |
| 1776 | + 'app' => 'settings',  | 
                                                        |
| 1777 | + 'exception' => $e,  | 
                                                        |
| 1778 | + ]  | 
                                                        |
| 1779 | + );  | 
                                                        |
| 1780 | +            throw new OCSException($this->l10n->t('Sending email failed'), 102); | 
                                                        |
| 1781 | + }  | 
                                                        |
| 1782 | +  | 
                                                        |
| 1783 | + return new DataResponse();  | 
                                                        |
| 1784 | + }  | 
                                                        |
| 1785 | 1785 | }  | 
                                                        
@@ -13,162 +13,162 @@  | 
                                                    ||
| 13 | 13 | use OCP\UserInterface;  | 
                                                        
| 14 | 14 | |
| 15 | 15 |  class LazyUser implements IUser { | 
                                                        
| 16 | - private ?IUser $user = null;  | 
                                                        |
| 17 | - private string $uid;  | 
                                                        |
| 18 | - private ?string $displayName;  | 
                                                        |
| 19 | - private IUserManager $userManager;  | 
                                                        |
| 20 | - private ?UserInterface $backend;  | 
                                                        |
| 21 | -  | 
                                                        |
| 22 | -	public function __construct(string $uid, IUserManager $userManager, ?string $displayName = null, ?UserInterface $backend = null) { | 
                                                        |
| 23 | - $this->uid = $uid;  | 
                                                        |
| 24 | - $this->userManager = $userManager;  | 
                                                        |
| 25 | - $this->displayName = $displayName;  | 
                                                        |
| 26 | - $this->backend = $backend;  | 
                                                        |
| 27 | - }  | 
                                                        |
| 28 | -  | 
                                                        |
| 29 | -	private function getUser(): IUser { | 
                                                        |
| 30 | -		if ($this->user === null) { | 
                                                        |
| 31 | -			if ($this->backend) { | 
                                                        |
| 32 | - /** @var \OC\User\Manager $manager */  | 
                                                        |
| 33 | - $manager = $this->userManager;  | 
                                                        |
| 34 | - $this->user = $manager->getUserObject($this->uid, $this->backend);  | 
                                                        |
| 35 | -			} else { | 
                                                        |
| 36 | - $this->user = $this->userManager->get($this->uid);  | 
                                                        |
| 37 | - }  | 
                                                        |
| 38 | - }  | 
                                                        |
| 39 | -  | 
                                                        |
| 40 | -		if ($this->user === null) { | 
                                                        |
| 41 | -			throw new NoUserException('User not found in backend'); | 
                                                        |
| 42 | - }  | 
                                                        |
| 43 | -  | 
                                                        |
| 44 | - return $this->user;  | 
                                                        |
| 45 | - }  | 
                                                        |
| 46 | -  | 
                                                        |
| 47 | -	public function getUID() { | 
                                                        |
| 48 | - return $this->uid;  | 
                                                        |
| 49 | - }  | 
                                                        |
| 50 | -  | 
                                                        |
| 51 | -	public function getDisplayName() { | 
                                                        |
| 52 | -		if ($this->displayName) { | 
                                                        |
| 53 | - return $this->displayName;  | 
                                                        |
| 54 | - }  | 
                                                        |
| 55 | -  | 
                                                        |
| 56 | - return $this->userManager->getDisplayName($this->uid) ?? $this->uid;  | 
                                                        |
| 57 | - }  | 
                                                        |
| 58 | -  | 
                                                        |
| 59 | -	public function setDisplayName($displayName) { | 
                                                        |
| 60 | - return $this->getUser()->setDisplayName($displayName);  | 
                                                        |
| 61 | - }  | 
                                                        |
| 62 | -  | 
                                                        |
| 63 | -	public function getLastLogin(): int { | 
                                                        |
| 64 | - return $this->getUser()->getLastLogin();  | 
                                                        |
| 65 | - }  | 
                                                        |
| 66 | -  | 
                                                        |
| 67 | -	public function getFirstLogin(): int { | 
                                                        |
| 68 | - return $this->getUser()->getFirstLogin();  | 
                                                        |
| 69 | - }  | 
                                                        |
| 70 | -  | 
                                                        |
| 71 | -	public function updateLastLoginTimestamp(): bool { | 
                                                        |
| 72 | - return $this->getUser()->updateLastLoginTimestamp();  | 
                                                        |
| 73 | - }  | 
                                                        |
| 74 | -  | 
                                                        |
| 75 | -	public function delete() { | 
                                                        |
| 76 | - return $this->getUser()->delete();  | 
                                                        |
| 77 | - }  | 
                                                        |
| 78 | -  | 
                                                        |
| 79 | -	public function setPassword($password, $recoveryPassword = null) { | 
                                                        |
| 80 | - return $this->getUser()->setPassword($password, $recoveryPassword);  | 
                                                        |
| 81 | - }  | 
                                                        |
| 82 | -  | 
                                                        |
| 83 | -	public function getPasswordHash(): ?string { | 
                                                        |
| 84 | - return $this->getUser()->getPasswordHash();  | 
                                                        |
| 85 | - }  | 
                                                        |
| 86 | -  | 
                                                        |
| 87 | -	public function setPasswordHash(string $passwordHash): bool { | 
                                                        |
| 88 | - return $this->getUser()->setPasswordHash($passwordHash);  | 
                                                        |
| 89 | - }  | 
                                                        |
| 90 | -  | 
                                                        |
| 91 | -	public function getHome() { | 
                                                        |
| 92 | - return $this->getUser()->getHome();  | 
                                                        |
| 93 | - }  | 
                                                        |
| 94 | -  | 
                                                        |
| 95 | -	public function getBackendClassName() { | 
                                                        |
| 96 | - return $this->getUser()->getBackendClassName();  | 
                                                        |
| 97 | - }  | 
                                                        |
| 98 | -  | 
                                                        |
| 99 | -	public function getBackend(): ?UserInterface { | 
                                                        |
| 100 | - return $this->getUser()->getBackend();  | 
                                                        |
| 101 | - }  | 
                                                        |
| 102 | -  | 
                                                        |
| 103 | -	public function canChangeAvatar() { | 
                                                        |
| 104 | - return $this->getUser()->canChangeAvatar();  | 
                                                        |
| 105 | - }  | 
                                                        |
| 106 | -  | 
                                                        |
| 107 | -	public function canChangePassword() { | 
                                                        |
| 108 | - return $this->getUser()->canChangePassword();  | 
                                                        |
| 109 | - }  | 
                                                        |
| 110 | -  | 
                                                        |
| 111 | -	public function canChangeDisplayName() { | 
                                                        |
| 112 | - return $this->getUser()->canChangeDisplayName();  | 
                                                        |
| 113 | - }  | 
                                                        |
| 114 | -  | 
                                                        |
| 115 | -	public function canChangeEmail(): bool { | 
                                                        |
| 116 | - return $this->getUser()->canChangeEmail();  | 
                                                        |
| 117 | - }  | 
                                                        |
| 118 | -  | 
                                                        |
| 119 | -	public function isEnabled() { | 
                                                        |
| 120 | - return $this->getUser()->isEnabled();  | 
                                                        |
| 121 | - }  | 
                                                        |
| 122 | -  | 
                                                        |
| 123 | -	public function setEnabled(bool $enabled = true) { | 
                                                        |
| 124 | - return $this->getUser()->setEnabled($enabled);  | 
                                                        |
| 125 | - }  | 
                                                        |
| 126 | -  | 
                                                        |
| 127 | -	public function getEMailAddress() { | 
                                                        |
| 128 | - return $this->getUser()->getEMailAddress();  | 
                                                        |
| 129 | - }  | 
                                                        |
| 130 | -  | 
                                                        |
| 131 | -	public function getSystemEMailAddress(): ?string { | 
                                                        |
| 132 | - return $this->getUser()->getSystemEMailAddress();  | 
                                                        |
| 133 | - }  | 
                                                        |
| 134 | -  | 
                                                        |
| 135 | -	public function getPrimaryEMailAddress(): ?string { | 
                                                        |
| 136 | - return $this->getUser()->getPrimaryEMailAddress();  | 
                                                        |
| 137 | - }  | 
                                                        |
| 16 | + private ?IUser $user = null;  | 
                                                        |
| 17 | + private string $uid;  | 
                                                        |
| 18 | + private ?string $displayName;  | 
                                                        |
| 19 | + private IUserManager $userManager;  | 
                                                        |
| 20 | + private ?UserInterface $backend;  | 
                                                        |
| 21 | +  | 
                                                        |
| 22 | +    public function __construct(string $uid, IUserManager $userManager, ?string $displayName = null, ?UserInterface $backend = null) { | 
                                                        |
| 23 | + $this->uid = $uid;  | 
                                                        |
| 24 | + $this->userManager = $userManager;  | 
                                                        |
| 25 | + $this->displayName = $displayName;  | 
                                                        |
| 26 | + $this->backend = $backend;  | 
                                                        |
| 27 | + }  | 
                                                        |
| 28 | +  | 
                                                        |
| 29 | +    private function getUser(): IUser { | 
                                                        |
| 30 | +        if ($this->user === null) { | 
                                                        |
| 31 | +            if ($this->backend) { | 
                                                        |
| 32 | + /** @var \OC\User\Manager $manager */  | 
                                                        |
| 33 | + $manager = $this->userManager;  | 
                                                        |
| 34 | + $this->user = $manager->getUserObject($this->uid, $this->backend);  | 
                                                        |
| 35 | +            } else { | 
                                                        |
| 36 | + $this->user = $this->userManager->get($this->uid);  | 
                                                        |
| 37 | + }  | 
                                                        |
| 38 | + }  | 
                                                        |
| 39 | +  | 
                                                        |
| 40 | +        if ($this->user === null) { | 
                                                        |
| 41 | +            throw new NoUserException('User not found in backend'); | 
                                                        |
| 42 | + }  | 
                                                        |
| 43 | +  | 
                                                        |
| 44 | + return $this->user;  | 
                                                        |
| 45 | + }  | 
                                                        |
| 46 | +  | 
                                                        |
| 47 | +    public function getUID() { | 
                                                        |
| 48 | + return $this->uid;  | 
                                                        |
| 49 | + }  | 
                                                        |
| 50 | +  | 
                                                        |
| 51 | +    public function getDisplayName() { | 
                                                        |
| 52 | +        if ($this->displayName) { | 
                                                        |
| 53 | + return $this->displayName;  | 
                                                        |
| 54 | + }  | 
                                                        |
| 55 | +  | 
                                                        |
| 56 | + return $this->userManager->getDisplayName($this->uid) ?? $this->uid;  | 
                                                        |
| 57 | + }  | 
                                                        |
| 58 | +  | 
                                                        |
| 59 | +    public function setDisplayName($displayName) { | 
                                                        |
| 60 | + return $this->getUser()->setDisplayName($displayName);  | 
                                                        |
| 61 | + }  | 
                                                        |
| 62 | +  | 
                                                        |
| 63 | +    public function getLastLogin(): int { | 
                                                        |
| 64 | + return $this->getUser()->getLastLogin();  | 
                                                        |
| 65 | + }  | 
                                                        |
| 66 | +  | 
                                                        |
| 67 | +    public function getFirstLogin(): int { | 
                                                        |
| 68 | + return $this->getUser()->getFirstLogin();  | 
                                                        |
| 69 | + }  | 
                                                        |
| 70 | +  | 
                                                        |
| 71 | +    public function updateLastLoginTimestamp(): bool { | 
                                                        |
| 72 | + return $this->getUser()->updateLastLoginTimestamp();  | 
                                                        |
| 73 | + }  | 
                                                        |
| 74 | +  | 
                                                        |
| 75 | +    public function delete() { | 
                                                        |
| 76 | + return $this->getUser()->delete();  | 
                                                        |
| 77 | + }  | 
                                                        |
| 78 | +  | 
                                                        |
| 79 | +    public function setPassword($password, $recoveryPassword = null) { | 
                                                        |
| 80 | + return $this->getUser()->setPassword($password, $recoveryPassword);  | 
                                                        |
| 81 | + }  | 
                                                        |
| 82 | +  | 
                                                        |
| 83 | +    public function getPasswordHash(): ?string { | 
                                                        |
| 84 | + return $this->getUser()->getPasswordHash();  | 
                                                        |
| 85 | + }  | 
                                                        |
| 86 | +  | 
                                                        |
| 87 | +    public function setPasswordHash(string $passwordHash): bool { | 
                                                        |
| 88 | + return $this->getUser()->setPasswordHash($passwordHash);  | 
                                                        |
| 89 | + }  | 
                                                        |
| 90 | +  | 
                                                        |
| 91 | +    public function getHome() { | 
                                                        |
| 92 | + return $this->getUser()->getHome();  | 
                                                        |
| 93 | + }  | 
                                                        |
| 94 | +  | 
                                                        |
| 95 | +    public function getBackendClassName() { | 
                                                        |
| 96 | + return $this->getUser()->getBackendClassName();  | 
                                                        |
| 97 | + }  | 
                                                        |
| 98 | +  | 
                                                        |
| 99 | +    public function getBackend(): ?UserInterface { | 
                                                        |
| 100 | + return $this->getUser()->getBackend();  | 
                                                        |
| 101 | + }  | 
                                                        |
| 102 | +  | 
                                                        |
| 103 | +    public function canChangeAvatar() { | 
                                                        |
| 104 | + return $this->getUser()->canChangeAvatar();  | 
                                                        |
| 105 | + }  | 
                                                        |
| 106 | +  | 
                                                        |
| 107 | +    public function canChangePassword() { | 
                                                        |
| 108 | + return $this->getUser()->canChangePassword();  | 
                                                        |
| 109 | + }  | 
                                                        |
| 110 | +  | 
                                                        |
| 111 | +    public function canChangeDisplayName() { | 
                                                        |
| 112 | + return $this->getUser()->canChangeDisplayName();  | 
                                                        |
| 113 | + }  | 
                                                        |
| 114 | +  | 
                                                        |
| 115 | +    public function canChangeEmail(): bool { | 
                                                        |
| 116 | + return $this->getUser()->canChangeEmail();  | 
                                                        |
| 117 | + }  | 
                                                        |
| 118 | +  | 
                                                        |
| 119 | +    public function isEnabled() { | 
                                                        |
| 120 | + return $this->getUser()->isEnabled();  | 
                                                        |
| 121 | + }  | 
                                                        |
| 122 | +  | 
                                                        |
| 123 | +    public function setEnabled(bool $enabled = true) { | 
                                                        |
| 124 | + return $this->getUser()->setEnabled($enabled);  | 
                                                        |
| 125 | + }  | 
                                                        |
| 126 | +  | 
                                                        |
| 127 | +    public function getEMailAddress() { | 
                                                        |
| 128 | + return $this->getUser()->getEMailAddress();  | 
                                                        |
| 129 | + }  | 
                                                        |
| 130 | +  | 
                                                        |
| 131 | +    public function getSystemEMailAddress(): ?string { | 
                                                        |
| 132 | + return $this->getUser()->getSystemEMailAddress();  | 
                                                        |
| 133 | + }  | 
                                                        |
| 134 | +  | 
                                                        |
| 135 | +    public function getPrimaryEMailAddress(): ?string { | 
                                                        |
| 136 | + return $this->getUser()->getPrimaryEMailAddress();  | 
                                                        |
| 137 | + }  | 
                                                        |
| 138 | 138 | |
| 139 | -	public function getAvatarImage($size) { | 
                                                        |
| 140 | - return $this->getUser()->getAvatarImage($size);  | 
                                                        |
| 141 | - }  | 
                                                        |
| 139 | +    public function getAvatarImage($size) { | 
                                                        |
| 140 | + return $this->getUser()->getAvatarImage($size);  | 
                                                        |
| 141 | + }  | 
                                                        |
| 142 | 142 | |
| 143 | -	public function getCloudId() { | 
                                                        |
| 144 | - return $this->getUser()->getCloudId();  | 
                                                        |
| 145 | - }  | 
                                                        |
| 143 | +    public function getCloudId() { | 
                                                        |
| 144 | + return $this->getUser()->getCloudId();  | 
                                                        |
| 145 | + }  | 
                                                        |
| 146 | 146 | |
| 147 | -	public function setEMailAddress($mailAddress) { | 
                                                        |
| 148 | - $this->getUser()->setEMailAddress($mailAddress);  | 
                                                        |
| 149 | - }  | 
                                                        |
| 147 | +    public function setEMailAddress($mailAddress) { | 
                                                        |
| 148 | + $this->getUser()->setEMailAddress($mailAddress);  | 
                                                        |
| 149 | + }  | 
                                                        |
| 150 | 150 | |
| 151 | -	public function setSystemEMailAddress(string $mailAddress): void { | 
                                                        |
| 152 | - $this->getUser()->setSystemEMailAddress($mailAddress);  | 
                                                        |
| 153 | - }  | 
                                                        |
| 151 | +    public function setSystemEMailAddress(string $mailAddress): void { | 
                                                        |
| 152 | + $this->getUser()->setSystemEMailAddress($mailAddress);  | 
                                                        |
| 153 | + }  | 
                                                        |
| 154 | 154 | |
| 155 | -	public function setPrimaryEMailAddress(string $mailAddress): void { | 
                                                        |
| 156 | - $this->getUser()->setPrimaryEMailAddress($mailAddress);  | 
                                                        |
| 157 | - }  | 
                                                        |
| 155 | +    public function setPrimaryEMailAddress(string $mailAddress): void { | 
                                                        |
| 156 | + $this->getUser()->setPrimaryEMailAddress($mailAddress);  | 
                                                        |
| 157 | + }  | 
                                                        |
| 158 | 158 | |
| 159 | -	public function getQuota() { | 
                                                        |
| 160 | - return $this->getUser()->getQuota();  | 
                                                        |
| 161 | - }  | 
                                                        |
| 159 | +    public function getQuota() { | 
                                                        |
| 160 | + return $this->getUser()->getQuota();  | 
                                                        |
| 161 | + }  | 
                                                        |
| 162 | 162 | |
| 163 | -	public function setQuota($quota) { | 
                                                        |
| 164 | - $this->getUser()->setQuota($quota);  | 
                                                        |
| 165 | - }  | 
                                                        |
| 163 | +    public function setQuota($quota) { | 
                                                        |
| 164 | + $this->getUser()->setQuota($quota);  | 
                                                        |
| 165 | + }  | 
                                                        |
| 166 | 166 | |
| 167 | -	public function getManagerUids(): array { | 
                                                        |
| 168 | - return $this->getUser()->getManagerUids();  | 
                                                        |
| 169 | - }  | 
                                                        |
| 167 | +    public function getManagerUids(): array { | 
                                                        |
| 168 | + return $this->getUser()->getManagerUids();  | 
                                                        |
| 169 | + }  | 
                                                        |
| 170 | 170 | |
| 171 | -	public function setManagerUids(array $uids): void { | 
                                                        |
| 172 | - $this->getUser()->setManagerUids($uids);  | 
                                                        |
| 173 | - }  | 
                                                        |
| 171 | +    public function setManagerUids(array $uids): void { | 
                                                        |
| 172 | + $this->getUser()->setManagerUids($uids);  | 
                                                        |
| 173 | + }  | 
                                                        |
| 174 | 174 | }  | 
                                                        
@@ -45,614 +45,614 @@  | 
                                                    ||
| 45 | 45 | use function json_encode;  | 
                                                        
| 46 | 46 | |
| 47 | 47 |  class User implements IUser { | 
                                                        
| 48 | - private const CONFIG_KEY_MANAGERS = 'manager';  | 
                                                        |
| 49 | -  | 
                                                        |
| 50 | - private IConfig $config;  | 
                                                        |
| 51 | - private IURLGenerator $urlGenerator;  | 
                                                        |
| 52 | -  | 
                                                        |
| 53 | - /** @var IAccountManager */  | 
                                                        |
| 54 | - protected $accountManager;  | 
                                                        |
| 55 | -  | 
                                                        |
| 56 | - /** @var string|null */  | 
                                                        |
| 57 | - private $displayName;  | 
                                                        |
| 58 | -  | 
                                                        |
| 59 | - /** @var bool|null */  | 
                                                        |
| 60 | - private $enabled;  | 
                                                        |
| 61 | -  | 
                                                        |
| 62 | - /** @var Emitter|Manager|null */  | 
                                                        |
| 63 | - private $emitter;  | 
                                                        |
| 64 | -  | 
                                                        |
| 65 | - /** @var string */  | 
                                                        |
| 66 | - private $home;  | 
                                                        |
| 67 | -  | 
                                                        |
| 68 | - private ?int $lastLogin = null;  | 
                                                        |
| 69 | - private ?int $firstLogin = null;  | 
                                                        |
| 70 | -  | 
                                                        |
| 71 | - /** @var IAvatarManager */  | 
                                                        |
| 72 | - private $avatarManager;  | 
                                                        |
| 73 | -  | 
                                                        |
| 74 | - public function __construct(  | 
                                                        |
| 75 | - private string $uid,  | 
                                                        |
| 76 | - private ?UserInterface $backend,  | 
                                                        |
| 77 | - private IEventDispatcher $dispatcher,  | 
                                                        |
| 78 | - $emitter = null,  | 
                                                        |
| 79 | - ?IConfig $config = null,  | 
                                                        |
| 80 | - $urlGenerator = null,  | 
                                                        |
| 81 | -	) { | 
                                                        |
| 82 | - $this->emitter = $emitter;  | 
                                                        |
| 83 | - $this->config = $config ?? \OCP\Server::get(IConfig::class);  | 
                                                        |
| 84 | - $this->urlGenerator = $urlGenerator ?? \OCP\Server::get(IURLGenerator::class);  | 
                                                        |
| 85 | - }  | 
                                                        |
| 86 | -  | 
                                                        |
| 87 | - /**  | 
                                                        |
| 88 | - * get the user id  | 
                                                        |
| 89 | - *  | 
                                                        |
| 90 | - * @return string  | 
                                                        |
| 91 | - */  | 
                                                        |
| 92 | -	public function getUID() { | 
                                                        |
| 93 | - return $this->uid;  | 
                                                        |
| 94 | - }  | 
                                                        |
| 95 | -  | 
                                                        |
| 96 | - /**  | 
                                                        |
| 97 | - * get the display name for the user, if no specific display name is set it will fallback to the user id  | 
                                                        |
| 98 | - *  | 
                                                        |
| 99 | - * @return string  | 
                                                        |
| 100 | - */  | 
                                                        |
| 101 | -	public function getDisplayName() { | 
                                                        |
| 102 | -		if ($this->displayName === null) { | 
                                                        |
| 103 | - $displayName = '';  | 
                                                        |
| 104 | -			if ($this->backend && $this->backend->implementsActions(Backend::GET_DISPLAYNAME)) { | 
                                                        |
| 105 | - // get display name and strip whitespace from the beginning and end of it  | 
                                                        |
| 106 | - $backendDisplayName = $this->backend->getDisplayName($this->uid);  | 
                                                        |
| 107 | -				if (is_string($backendDisplayName)) { | 
                                                        |
| 108 | - $displayName = trim($backendDisplayName);  | 
                                                        |
| 109 | - }  | 
                                                        |
| 110 | - }  | 
                                                        |
| 111 | -  | 
                                                        |
| 112 | -			if (!empty($displayName)) { | 
                                                        |
| 113 | - $this->displayName = $displayName;  | 
                                                        |
| 114 | -			} else { | 
                                                        |
| 115 | - $this->displayName = $this->uid;  | 
                                                        |
| 116 | - }  | 
                                                        |
| 117 | - }  | 
                                                        |
| 118 | - return $this->displayName;  | 
                                                        |
| 119 | - }  | 
                                                        |
| 120 | -  | 
                                                        |
| 121 | - /**  | 
                                                        |
| 122 | - * set the displayname for the user  | 
                                                        |
| 123 | - *  | 
                                                        |
| 124 | - * @param string $displayName  | 
                                                        |
| 125 | - * @return bool  | 
                                                        |
| 126 | - *  | 
                                                        |
| 127 | - * @since 25.0.0 Throw InvalidArgumentException  | 
                                                        |
| 128 | - * @throws \InvalidArgumentException  | 
                                                        |
| 129 | - */  | 
                                                        |
| 130 | -	public function setDisplayName($displayName) { | 
                                                        |
| 131 | - $displayName = trim($displayName);  | 
                                                        |
| 132 | - $oldDisplayName = $this->getDisplayName();  | 
                                                        |
| 133 | -		if ($this->backend->implementsActions(Backend::SET_DISPLAYNAME) && !empty($displayName) && $displayName !== $oldDisplayName) { | 
                                                        |
| 134 | - /** @var ISetDisplayNameBackend $backend */  | 
                                                        |
| 135 | - $backend = $this->backend;  | 
                                                        |
| 136 | - $result = $backend->setDisplayName($this->uid, $displayName);  | 
                                                        |
| 137 | -			if ($result) { | 
                                                        |
| 138 | - $this->displayName = $displayName;  | 
                                                        |
| 139 | -				$this->triggerChange('displayName', $displayName, $oldDisplayName); | 
                                                        |
| 140 | - }  | 
                                                        |
| 141 | - return $result !== false;  | 
                                                        |
| 142 | - }  | 
                                                        |
| 143 | - return false;  | 
                                                        |
| 144 | - }  | 
                                                        |
| 145 | -  | 
                                                        |
| 146 | - /**  | 
                                                        |
| 147 | - * @inheritDoc  | 
                                                        |
| 148 | - */  | 
                                                        |
| 149 | -	public function setEMailAddress($mailAddress) { | 
                                                        |
| 150 | - $this->setSystemEMailAddress($mailAddress);  | 
                                                        |
| 151 | - }  | 
                                                        |
| 152 | -  | 
                                                        |
| 153 | - /**  | 
                                                        |
| 154 | - * @inheritDoc  | 
                                                        |
| 155 | - */  | 
                                                        |
| 156 | -	public function setSystemEMailAddress(string $mailAddress): void { | 
                                                        |
| 157 | - $oldMailAddress = $this->getSystemEMailAddress();  | 
                                                        |
| 158 | -  | 
                                                        |
| 159 | -		if ($mailAddress === '') { | 
                                                        |
| 160 | - $this->config->deleteUserValue($this->uid, 'settings', 'email');  | 
                                                        |
| 161 | -		} else { | 
                                                        |
| 162 | - $this->config->setUserValue($this->uid, 'settings', 'email', $mailAddress);  | 
                                                        |
| 163 | - }  | 
                                                        |
| 164 | -  | 
                                                        |
| 165 | - $primaryAddress = $this->getPrimaryEMailAddress();  | 
                                                        |
| 166 | -		if ($primaryAddress === $mailAddress) { | 
                                                        |
| 167 | - // on match no dedicated primary settings is necessary  | 
                                                        |
| 168 | -			$this->setPrimaryEMailAddress(''); | 
                                                        |
| 169 | - }  | 
                                                        |
| 170 | -  | 
                                                        |
| 171 | -		if ($oldMailAddress !== strtolower($mailAddress)) { | 
                                                        |
| 172 | -			$this->triggerChange('eMailAddress', $mailAddress, $oldMailAddress); | 
                                                        |
| 173 | - }  | 
                                                        |
| 174 | - }  | 
                                                        |
| 175 | -  | 
                                                        |
| 176 | - /**  | 
                                                        |
| 177 | - * @inheritDoc  | 
                                                        |
| 178 | - */  | 
                                                        |
| 179 | -	public function setPrimaryEMailAddress(string $mailAddress): void { | 
                                                        |
| 180 | -		if ($mailAddress === '') { | 
                                                        |
| 181 | - $this->config->deleteUserValue($this->uid, 'settings', 'primary_email');  | 
                                                        |
| 182 | - return;  | 
                                                        |
| 183 | - }  | 
                                                        |
| 184 | -  | 
                                                        |
| 185 | - $this->ensureAccountManager();  | 
                                                        |
| 186 | - $account = $this->accountManager->getAccount($this);  | 
                                                        |
| 187 | - $property = $account->getPropertyCollection(IAccountManager::COLLECTION_EMAIL)  | 
                                                        |
| 188 | - ->getPropertyByValue($mailAddress);  | 
                                                        |
| 189 | -  | 
                                                        |
| 190 | -		if ($property === null || $property->getLocallyVerified() !== IAccountManager::VERIFIED) { | 
                                                        |
| 191 | -			throw new InvalidArgumentException('Only verified emails can be set as primary'); | 
                                                        |
| 192 | - }  | 
                                                        |
| 193 | - $this->config->setUserValue($this->uid, 'settings', 'primary_email', $mailAddress);  | 
                                                        |
| 194 | - }  | 
                                                        |
| 195 | -  | 
                                                        |
| 196 | -	private function ensureAccountManager() { | 
                                                        |
| 197 | -		if (!$this->accountManager instanceof IAccountManager) { | 
                                                        |
| 198 | - $this->accountManager = \OC::$server->get(IAccountManager::class);  | 
                                                        |
| 199 | - }  | 
                                                        |
| 200 | - }  | 
                                                        |
| 201 | -  | 
                                                        |
| 202 | - /**  | 
                                                        |
| 203 | - * returns the timestamp of the user's last login or 0 if the user did never  | 
                                                        |
| 204 | - * login  | 
                                                        |
| 205 | - */  | 
                                                        |
| 206 | -	public function getLastLogin(): int { | 
                                                        |
| 207 | -		if ($this->lastLogin === null) { | 
                                                        |
| 208 | - $this->lastLogin = (int)$this->config->getUserValue($this->uid, 'login', 'lastLogin', 0);  | 
                                                        |
| 209 | - }  | 
                                                        |
| 210 | - return $this->lastLogin;  | 
                                                        |
| 211 | - }  | 
                                                        |
| 212 | -  | 
                                                        |
| 213 | - /**  | 
                                                        |
| 214 | - * returns the timestamp of the user's last login or 0 if the user did never  | 
                                                        |
| 215 | - * login  | 
                                                        |
| 216 | - */  | 
                                                        |
| 217 | -	public function getFirstLogin(): int { | 
                                                        |
| 218 | -		if ($this->firstLogin === null) { | 
                                                        |
| 219 | - $this->firstLogin = (int)$this->config->getUserValue($this->uid, 'login', 'firstLogin', 0);  | 
                                                        |
| 220 | - }  | 
                                                        |
| 221 | - return $this->firstLogin;  | 
                                                        |
| 222 | - }  | 
                                                        |
| 223 | -  | 
                                                        |
| 224 | - /**  | 
                                                        |
| 225 | - * updates the timestamp of the most recent login of this user  | 
                                                        |
| 226 | - */  | 
                                                        |
| 227 | -	public function updateLastLoginTimestamp(): bool { | 
                                                        |
| 228 | - $previousLogin = $this->getLastLogin();  | 
                                                        |
| 229 | - $firstLogin = $this->getFirstLogin();  | 
                                                        |
| 230 | - $now = time();  | 
                                                        |
| 231 | - $firstTimeLogin = $previousLogin === 0;  | 
                                                        |
| 232 | -  | 
                                                        |
| 233 | -		if ($now - $previousLogin > 60) { | 
                                                        |
| 234 | - $this->lastLogin = $now;  | 
                                                        |
| 235 | - $this->config->setUserValue($this->uid, 'login', 'lastLogin', (string)$this->lastLogin);  | 
                                                        |
| 236 | - }  | 
                                                        |
| 237 | -  | 
                                                        |
| 238 | -		if ($firstLogin === 0) { | 
                                                        |
| 239 | -			if ($firstTimeLogin) { | 
                                                        |
| 240 | - $this->firstLogin = $now;  | 
                                                        |
| 241 | -			} else { | 
                                                        |
| 242 | - /* Unknown first login, most likely was before upgrade to Nextcloud 31 */  | 
                                                        |
| 243 | - $this->firstLogin = -1;  | 
                                                        |
| 244 | - }  | 
                                                        |
| 245 | - $this->config->setUserValue($this->uid, 'login', 'firstLogin', (string)$this->firstLogin);  | 
                                                        |
| 246 | - }  | 
                                                        |
| 247 | -  | 
                                                        |
| 248 | - return $firstTimeLogin;  | 
                                                        |
| 249 | - }  | 
                                                        |
| 250 | -  | 
                                                        |
| 251 | - /**  | 
                                                        |
| 252 | - * Delete the user  | 
                                                        |
| 253 | - *  | 
                                                        |
| 254 | - * @return bool  | 
                                                        |
| 255 | - */  | 
                                                        |
| 256 | -	public function delete() { | 
                                                        |
| 257 | -		if ($this->backend === null) { | 
                                                        |
| 258 | -			\OCP\Server::get(LoggerInterface::class)->error('Cannot delete user: No backend set'); | 
                                                        |
| 259 | - return false;  | 
                                                        |
| 260 | - }  | 
                                                        |
| 261 | -  | 
                                                        |
| 262 | -		if ($this->emitter) { | 
                                                        |
| 263 | - /** @deprecated 21.0.0 use BeforeUserDeletedEvent event with the IEventDispatcher instead */  | 
                                                        |
| 264 | -			$this->emitter->emit('\OC\User', 'preDelete', [$this]); | 
                                                        |
| 265 | - }  | 
                                                        |
| 266 | - $this->dispatcher->dispatchTyped(new BeforeUserDeletedEvent($this));  | 
                                                        |
| 267 | -  | 
                                                        |
| 268 | - // Set delete flag on the user - this is needed to ensure that the user data is removed if there happen any exception in the backend  | 
                                                        |
| 269 | - // because we can not restore the user meaning we could not rollback to any stable state otherwise.  | 
                                                        |
| 270 | - $this->config->setUserValue($this->uid, 'core', 'deleted', 'true');  | 
                                                        |
| 271 | - // We also need to backup the home path as this can not be reconstructed later if the original backend uses custom home paths  | 
                                                        |
| 272 | - $this->config->setUserValue($this->uid, 'core', 'deleted.home-path', $this->getHome());  | 
                                                        |
| 273 | -  | 
                                                        |
| 274 | - // Try to delete the user on the backend  | 
                                                        |
| 275 | - $result = $this->backend->deleteUser($this->uid);  | 
                                                        |
| 276 | -		if ($result === false) { | 
                                                        |
| 277 | - // The deletion was aborted or something else happened, we are in a defined state, so remove the delete flag  | 
                                                        |
| 278 | - $this->config->deleteUserValue($this->uid, 'core', 'deleted');  | 
                                                        |
| 279 | - return false;  | 
                                                        |
| 280 | - }  | 
                                                        |
| 281 | -  | 
                                                        |
| 282 | - // We have to delete the user from all groups  | 
                                                        |
| 283 | - $groupManager = \OCP\Server::get(IGroupManager::class);  | 
                                                        |
| 284 | -		foreach ($groupManager->getUserGroupIds($this) as $groupId) { | 
                                                        |
| 285 | - $group = $groupManager->get($groupId);  | 
                                                        |
| 286 | -			if ($group) { | 
                                                        |
| 287 | - $this->dispatcher->dispatchTyped(new BeforeUserRemovedEvent($group, $this));  | 
                                                        |
| 288 | - $group->removeUser($this);  | 
                                                        |
| 289 | - $this->dispatcher->dispatchTyped(new UserRemovedEvent($group, $this));  | 
                                                        |
| 290 | - }  | 
                                                        |
| 291 | - }  | 
                                                        |
| 292 | -  | 
                                                        |
| 293 | - $commentsManager = \OCP\Server::get(ICommentsManager::class);  | 
                                                        |
| 294 | -		$commentsManager->deleteReferencesOfActor('users', $this->uid); | 
                                                        |
| 295 | - $commentsManager->deleteReadMarksFromUser($this);  | 
                                                        |
| 296 | -  | 
                                                        |
| 297 | - $avatarManager = \OCP\Server::get(AvatarManager::class);  | 
                                                        |
| 298 | - $avatarManager->deleteUserAvatar($this->uid);  | 
                                                        |
| 299 | -  | 
                                                        |
| 300 | - $notificationManager = \OCP\Server::get(INotificationManager::class);  | 
                                                        |
| 301 | - $notification = $notificationManager->createNotification();  | 
                                                        |
| 302 | - $notification->setUser($this->uid);  | 
                                                        |
| 303 | - $notificationManager->markProcessed($notification);  | 
                                                        |
| 304 | -  | 
                                                        |
| 305 | - $accountManager = \OCP\Server::get(AccountManager::class);  | 
                                                        |
| 306 | - $accountManager->deleteUser($this);  | 
                                                        |
| 307 | -  | 
                                                        |
| 308 | - $database = \OCP\Server::get(IDBConnection::class);  | 
                                                        |
| 309 | -		try { | 
                                                        |
| 310 | - // We need to create a transaction to make sure we are in a defined state  | 
                                                        |
| 311 | - // because if all user values are removed also the flag is gone, but if an exception happens (e.g. database lost connection on the set operation)  | 
                                                        |
| 312 | - // exactly here we are in an undefined state as the data is still present but the user does not exist on the system anymore.  | 
                                                        |
| 313 | - $database->beginTransaction();  | 
                                                        |
| 314 | - // Remove all user settings  | 
                                                        |
| 315 | - $this->config->deleteAllUserValues($this->uid);  | 
                                                        |
| 316 | - // But again set flag that this user is about to be deleted  | 
                                                        |
| 317 | - $this->config->setUserValue($this->uid, 'core', 'deleted', 'true');  | 
                                                        |
| 318 | - $this->config->setUserValue($this->uid, 'core', 'deleted.home-path', $this->getHome());  | 
                                                        |
| 319 | - // Commit the transaction so we are in a defined state: either the preferences are removed or an exception occurred but the delete flag is still present  | 
                                                        |
| 320 | - $database->commit();  | 
                                                        |
| 321 | -		} catch (\Throwable $e) { | 
                                                        |
| 322 | - $database->rollback();  | 
                                                        |
| 323 | - throw $e;  | 
                                                        |
| 324 | - }  | 
                                                        |
| 325 | -  | 
                                                        |
| 326 | -		if ($this->emitter !== null) { | 
                                                        |
| 327 | - /** @deprecated 21.0.0 use UserDeletedEvent event with the IEventDispatcher instead */  | 
                                                        |
| 328 | -			$this->emitter->emit('\OC\User', 'postDelete', [$this]); | 
                                                        |
| 329 | - }  | 
                                                        |
| 330 | - $this->dispatcher->dispatchTyped(new UserDeletedEvent($this));  | 
                                                        |
| 331 | -  | 
                                                        |
| 332 | - // Finally we can unset the delete flag and all other states  | 
                                                        |
| 333 | - $this->config->deleteAllUserValues($this->uid);  | 
                                                        |
| 334 | -  | 
                                                        |
| 335 | - return true;  | 
                                                        |
| 336 | - }  | 
                                                        |
| 337 | -  | 
                                                        |
| 338 | - /**  | 
                                                        |
| 339 | - * Set the password of the user  | 
                                                        |
| 340 | - *  | 
                                                        |
| 341 | - * @param string $password  | 
                                                        |
| 342 | - * @param string $recoveryPassword for the encryption app to reset encryption keys  | 
                                                        |
| 343 | - * @return bool  | 
                                                        |
| 344 | - */  | 
                                                        |
| 345 | -	public function setPassword($password, $recoveryPassword = null) { | 
                                                        |
| 346 | - $this->dispatcher->dispatchTyped(new BeforePasswordUpdatedEvent($this, $password, $recoveryPassword));  | 
                                                        |
| 347 | -		if ($this->emitter) { | 
                                                        |
| 348 | -			$this->emitter->emit('\OC\User', 'preSetPassword', [$this, $password, $recoveryPassword]); | 
                                                        |
| 349 | - }  | 
                                                        |
| 350 | -		if ($this->backend->implementsActions(Backend::SET_PASSWORD)) { | 
                                                        |
| 351 | - /** @var ISetPasswordBackend $backend */  | 
                                                        |
| 352 | - $backend = $this->backend;  | 
                                                        |
| 353 | - $result = $backend->setPassword($this->uid, $password);  | 
                                                        |
| 354 | -  | 
                                                        |
| 355 | -			if ($result !== false) { | 
                                                        |
| 356 | - $this->dispatcher->dispatchTyped(new PasswordUpdatedEvent($this, $password, $recoveryPassword));  | 
                                                        |
| 357 | -				if ($this->emitter) { | 
                                                        |
| 358 | -					$this->emitter->emit('\OC\User', 'postSetPassword', [$this, $password, $recoveryPassword]); | 
                                                        |
| 359 | - }  | 
                                                        |
| 360 | - }  | 
                                                        |
| 361 | -  | 
                                                        |
| 362 | - return !($result === false);  | 
                                                        |
| 363 | -		} else { | 
                                                        |
| 364 | - return false;  | 
                                                        |
| 365 | - }  | 
                                                        |
| 366 | - }  | 
                                                        |
| 367 | -  | 
                                                        |
| 368 | -	public function getPasswordHash(): ?string { | 
                                                        |
| 369 | -		if (!($this->backend instanceof IPasswordHashBackend)) { | 
                                                        |
| 370 | - return null;  | 
                                                        |
| 371 | - }  | 
                                                        |
| 372 | - return $this->backend->getPasswordHash($this->uid);  | 
                                                        |
| 373 | - }  | 
                                                        |
| 374 | -  | 
                                                        |
| 375 | -	public function setPasswordHash(string $passwordHash): bool { | 
                                                        |
| 376 | -		if (!($this->backend instanceof IPasswordHashBackend)) { | 
                                                        |
| 377 | - return false;  | 
                                                        |
| 378 | - }  | 
                                                        |
| 379 | - return $this->backend->setPasswordHash($this->uid, $passwordHash);  | 
                                                        |
| 380 | - }  | 
                                                        |
| 381 | -  | 
                                                        |
| 382 | - /**  | 
                                                        |
| 383 | - * get the users home folder to mount  | 
                                                        |
| 384 | - *  | 
                                                        |
| 385 | - * @return string  | 
                                                        |
| 386 | - */  | 
                                                        |
| 387 | -	public function getHome() { | 
                                                        |
| 388 | -		if (!$this->home) { | 
                                                        |
| 389 | - /** @psalm-suppress UndefinedInterfaceMethod Once we get rid of the legacy implementsActions, psalm won't complain anymore */  | 
                                                        |
| 390 | -			if (($this->backend instanceof IGetHomeBackend || $this->backend->implementsActions(Backend::GET_HOME)) && $home = $this->backend->getHome($this->uid)) { | 
                                                        |
| 391 | - $this->home = $home;  | 
                                                        |
| 392 | -			} else { | 
                                                        |
| 393 | -				$this->home = $this->config->getSystemValueString('datadirectory', \OC::$SERVERROOT . '/data') . '/' . $this->uid; | 
                                                        |
| 394 | - }  | 
                                                        |
| 395 | - }  | 
                                                        |
| 396 | - return $this->home;  | 
                                                        |
| 397 | - }  | 
                                                        |
| 398 | -  | 
                                                        |
| 399 | - /**  | 
                                                        |
| 400 | - * Get the name of the backend class the user is connected with  | 
                                                        |
| 401 | - *  | 
                                                        |
| 402 | - * @return string  | 
                                                        |
| 403 | - */  | 
                                                        |
| 404 | -	public function getBackendClassName() { | 
                                                        |
| 405 | -		if ($this->backend instanceof IUserBackend) { | 
                                                        |
| 406 | - return $this->backend->getBackendName();  | 
                                                        |
| 407 | - }  | 
                                                        |
| 408 | - return get_class($this->backend);  | 
                                                        |
| 409 | - }  | 
                                                        |
| 410 | -  | 
                                                        |
| 411 | -	public function getBackend(): ?UserInterface { | 
                                                        |
| 412 | - return $this->backend;  | 
                                                        |
| 413 | - }  | 
                                                        |
| 414 | -  | 
                                                        |
| 415 | - /**  | 
                                                        |
| 416 | - * Check if the backend allows the user to change their avatar on Personal page  | 
                                                        |
| 417 | - *  | 
                                                        |
| 418 | - * @return bool  | 
                                                        |
| 419 | - */  | 
                                                        |
| 420 | -	public function canChangeAvatar() { | 
                                                        |
| 421 | -		if ($this->backend instanceof IProvideAvatarBackend || $this->backend->implementsActions(Backend::PROVIDE_AVATAR)) { | 
                                                        |
| 422 | - /** @var IProvideAvatarBackend $backend */  | 
                                                        |
| 423 | - $backend = $this->backend;  | 
                                                        |
| 424 | - return $backend->canChangeAvatar($this->uid);  | 
                                                        |
| 425 | - }  | 
                                                        |
| 426 | - return true;  | 
                                                        |
| 427 | - }  | 
                                                        |
| 428 | -  | 
                                                        |
| 429 | - /**  | 
                                                        |
| 430 | - * check if the backend supports changing passwords  | 
                                                        |
| 431 | - *  | 
                                                        |
| 432 | - * @return bool  | 
                                                        |
| 433 | - */  | 
                                                        |
| 434 | -	public function canChangePassword() { | 
                                                        |
| 435 | - return $this->backend->implementsActions(Backend::SET_PASSWORD);  | 
                                                        |
| 436 | - }  | 
                                                        |
| 437 | -  | 
                                                        |
| 438 | - /**  | 
                                                        |
| 439 | - * check if the backend supports changing display names  | 
                                                        |
| 440 | - *  | 
                                                        |
| 441 | - * @return bool  | 
                                                        |
| 442 | - */  | 
                                                        |
| 443 | -	public function canChangeDisplayName() { | 
                                                        |
| 444 | -		if (!$this->config->getSystemValueBool('allow_user_to_change_display_name', true)) { | 
                                                        |
| 445 | - return false;  | 
                                                        |
| 446 | - }  | 
                                                        |
| 447 | - return $this->backend->implementsActions(Backend::SET_DISPLAYNAME);  | 
                                                        |
| 448 | - }  | 
                                                        |
| 449 | -  | 
                                                        |
| 450 | -	public function canChangeEmail(): bool { | 
                                                        |
| 451 | -		return $this->config->getSystemValueBool('allow_user_to_change_email', true); | 
                                                        |
| 452 | - }  | 
                                                        |
| 453 | -  | 
                                                        |
| 454 | - /**  | 
                                                        |
| 455 | - * check if the user is enabled  | 
                                                        |
| 456 | - *  | 
                                                        |
| 457 | - * @return bool  | 
                                                        |
| 458 | - */  | 
                                                        |
| 459 | -	public function isEnabled() { | 
                                                        |
| 460 | -		$queryDatabaseValue = function (): bool { | 
                                                        |
| 461 | -			if ($this->enabled === null) { | 
                                                        |
| 462 | - $enabled = $this->config->getUserValue($this->uid, 'core', 'enabled', 'true');  | 
                                                        |
| 463 | - $this->enabled = $enabled === 'true';  | 
                                                        |
| 464 | - }  | 
                                                        |
| 465 | - return $this->enabled;  | 
                                                        |
| 466 | - };  | 
                                                        |
| 467 | -		if ($this->backend instanceof IProvideEnabledStateBackend) { | 
                                                        |
| 468 | - return $this->backend->isUserEnabled($this->uid, $queryDatabaseValue);  | 
                                                        |
| 469 | -		} else { | 
                                                        |
| 470 | - return $queryDatabaseValue();  | 
                                                        |
| 471 | - }  | 
                                                        |
| 472 | - }  | 
                                                        |
| 473 | -  | 
                                                        |
| 474 | - /**  | 
                                                        |
| 475 | - * set the enabled status for the user  | 
                                                        |
| 476 | - *  | 
                                                        |
| 477 | - * @return void  | 
                                                        |
| 478 | - */  | 
                                                        |
| 479 | -	public function setEnabled(bool $enabled = true) { | 
                                                        |
| 480 | - $oldStatus = $this->isEnabled();  | 
                                                        |
| 481 | -		$setDatabaseValue = function (bool $enabled): void { | 
                                                        |
| 482 | - $this->config->setUserValue($this->uid, 'core', 'enabled', $enabled ? 'true' : 'false');  | 
                                                        |
| 483 | - $this->enabled = $enabled;  | 
                                                        |
| 484 | - };  | 
                                                        |
| 485 | -		if ($this->backend instanceof IProvideEnabledStateBackend) { | 
                                                        |
| 486 | -			$queryDatabaseValue = function (): bool { | 
                                                        |
| 487 | -				if ($this->enabled === null) { | 
                                                        |
| 488 | - $enabled = $this->config->getUserValue($this->uid, 'core', 'enabled', 'true');  | 
                                                        |
| 489 | - $this->enabled = $enabled === 'true';  | 
                                                        |
| 490 | - }  | 
                                                        |
| 491 | - return $this->enabled;  | 
                                                        |
| 492 | - };  | 
                                                        |
| 493 | - $enabled = $this->backend->setUserEnabled($this->uid, $enabled, $queryDatabaseValue, $setDatabaseValue);  | 
                                                        |
| 494 | -			if ($oldStatus !== $enabled) { | 
                                                        |
| 495 | -				$this->triggerChange('enabled', $enabled, $oldStatus); | 
                                                        |
| 496 | - }  | 
                                                        |
| 497 | -		} elseif ($oldStatus !== $enabled) { | 
                                                        |
| 498 | - $setDatabaseValue($enabled);  | 
                                                        |
| 499 | -			$this->triggerChange('enabled', $enabled, $oldStatus); | 
                                                        |
| 500 | - }  | 
                                                        |
| 501 | - }  | 
                                                        |
| 502 | -  | 
                                                        |
| 503 | - /**  | 
                                                        |
| 504 | - * get the users email address  | 
                                                        |
| 505 | - *  | 
                                                        |
| 506 | - * @return string|null  | 
                                                        |
| 507 | - * @since 9.0.0  | 
                                                        |
| 508 | - */  | 
                                                        |
| 509 | -	public function getEMailAddress() { | 
                                                        |
| 510 | - return $this->getPrimaryEMailAddress() ?? $this->getSystemEMailAddress();  | 
                                                        |
| 511 | - }  | 
                                                        |
| 512 | -  | 
                                                        |
| 513 | - /**  | 
                                                        |
| 514 | - * @inheritDoc  | 
                                                        |
| 515 | - */  | 
                                                        |
| 516 | -	public function getSystemEMailAddress(): ?string { | 
                                                        |
| 517 | - return $this->config->getUserValue($this->uid, 'settings', 'email', null);  | 
                                                        |
| 518 | - }  | 
                                                        |
| 519 | -  | 
                                                        |
| 520 | - /**  | 
                                                        |
| 521 | - * @inheritDoc  | 
                                                        |
| 522 | - */  | 
                                                        |
| 523 | -	public function getPrimaryEMailAddress(): ?string { | 
                                                        |
| 524 | - return $this->config->getUserValue($this->uid, 'settings', 'primary_email', null);  | 
                                                        |
| 525 | - }  | 
                                                        |
| 526 | -  | 
                                                        |
| 527 | - /**  | 
                                                        |
| 528 | - * get the users' quota  | 
                                                        |
| 529 | - *  | 
                                                        |
| 530 | - * @return string  | 
                                                        |
| 531 | - * @since 9.0.0  | 
                                                        |
| 532 | - */  | 
                                                        |
| 533 | -	public function getQuota() { | 
                                                        |
| 534 | - // allow apps to modify the user quota by hooking into the event  | 
                                                        |
| 535 | - $event = new GetQuotaEvent($this);  | 
                                                        |
| 536 | - $this->dispatcher->dispatchTyped($event);  | 
                                                        |
| 537 | - $overwriteQuota = $event->getQuota();  | 
                                                        |
| 538 | -		if ($overwriteQuota) { | 
                                                        |
| 539 | - $quota = $overwriteQuota;  | 
                                                        |
| 540 | -		} else { | 
                                                        |
| 541 | - $quota = $this->config->getUserValue($this->uid, 'files', 'quota', 'default');  | 
                                                        |
| 542 | - }  | 
                                                        |
| 543 | -		if ($quota === 'default') { | 
                                                        |
| 544 | -			$quota = $this->config->getAppValue('files', 'default_quota', 'none'); | 
                                                        |
| 545 | -  | 
                                                        |
| 546 | - // if unlimited quota is not allowed => avoid getting 'unlimited' as default_quota fallback value  | 
                                                        |
| 547 | - // use the first preset instead  | 
                                                        |
| 548 | -			$allowUnlimitedQuota = $this->config->getAppValue('files', 'allow_unlimited_quota', '1') === '1'; | 
                                                        |
| 549 | -			if (!$allowUnlimitedQuota) { | 
                                                        |
| 550 | -				$presets = $this->config->getAppValue('files', 'quota_preset', '1 GB, 5 GB, 10 GB'); | 
                                                        |
| 551 | -				$presets = array_filter(array_map('trim', explode(',', $presets))); | 
                                                        |
| 552 | - $quotaPreset = array_values(array_diff($presets, ['default', 'none']));  | 
                                                        |
| 553 | -				if (count($quotaPreset) > 0) { | 
                                                        |
| 554 | -					$quota = $this->config->getAppValue('files', 'default_quota', $quotaPreset[0]); | 
                                                        |
| 555 | - }  | 
                                                        |
| 556 | - }  | 
                                                        |
| 557 | - }  | 
                                                        |
| 558 | - return $quota;  | 
                                                        |
| 559 | - }  | 
                                                        |
| 560 | -  | 
                                                        |
| 561 | - /**  | 
                                                        |
| 562 | - * set the users' quota  | 
                                                        |
| 563 | - *  | 
                                                        |
| 564 | - * @param string $quota  | 
                                                        |
| 565 | - * @return void  | 
                                                        |
| 566 | - * @throws InvalidArgumentException  | 
                                                        |
| 567 | - * @since 9.0.0  | 
                                                        |
| 568 | - */  | 
                                                        |
| 569 | -	public function setQuota($quota) { | 
                                                        |
| 570 | - $oldQuota = $this->config->getUserValue($this->uid, 'files', 'quota', '');  | 
                                                        |
| 571 | -		if ($quota !== 'none' and $quota !== 'default') { | 
                                                        |
| 572 | - $bytesQuota = OC_Helper::computerFileSize($quota);  | 
                                                        |
| 573 | -			if ($bytesQuota === false) { | 
                                                        |
| 574 | -				throw new InvalidArgumentException('Failed to set quota to invalid value ' . $quota); | 
                                                        |
| 575 | - }  | 
                                                        |
| 576 | - $quota = OC_Helper::humanFileSize($bytesQuota);  | 
                                                        |
| 577 | - }  | 
                                                        |
| 578 | -		if ($quota !== $oldQuota) { | 
                                                        |
| 579 | - $this->config->setUserValue($this->uid, 'files', 'quota', $quota);  | 
                                                        |
| 580 | -			$this->triggerChange('quota', $quota, $oldQuota); | 
                                                        |
| 581 | - }  | 
                                                        |
| 582 | -		\OC_Helper::clearStorageInfo('/' . $this->uid . '/files'); | 
                                                        |
| 583 | - }  | 
                                                        |
| 584 | -  | 
                                                        |
| 585 | -	public function getManagerUids(): array { | 
                                                        |
| 586 | - $encodedUids = $this->config->getUserValue(  | 
                                                        |
| 587 | - $this->uid,  | 
                                                        |
| 588 | - 'settings',  | 
                                                        |
| 589 | - self::CONFIG_KEY_MANAGERS,  | 
                                                        |
| 590 | - '[]'  | 
                                                        |
| 591 | - );  | 
                                                        |
| 592 | - return json_decode($encodedUids, false, 512, JSON_THROW_ON_ERROR);  | 
                                                        |
| 593 | - }  | 
                                                        |
| 594 | -  | 
                                                        |
| 595 | -	public function setManagerUids(array $uids): void { | 
                                                        |
| 596 | - $oldUids = $this->getManagerUids();  | 
                                                        |
| 597 | - $this->config->setUserValue(  | 
                                                        |
| 598 | - $this->uid,  | 
                                                        |
| 599 | - 'settings',  | 
                                                        |
| 600 | - self::CONFIG_KEY_MANAGERS,  | 
                                                        |
| 601 | - json_encode($uids, JSON_THROW_ON_ERROR)  | 
                                                        |
| 602 | - );  | 
                                                        |
| 603 | -		$this->triggerChange('managers', $uids, $oldUids); | 
                                                        |
| 604 | - }  | 
                                                        |
| 605 | -  | 
                                                        |
| 606 | - /**  | 
                                                        |
| 607 | - * get the avatar image if it exists  | 
                                                        |
| 608 | - *  | 
                                                        |
| 609 | - * @param int $size  | 
                                                        |
| 610 | - * @return IImage|null  | 
                                                        |
| 611 | - * @since 9.0.0  | 
                                                        |
| 612 | - */  | 
                                                        |
| 613 | -	public function getAvatarImage($size) { | 
                                                        |
| 614 | - // delay the initialization  | 
                                                        |
| 615 | -		if (is_null($this->avatarManager)) { | 
                                                        |
| 616 | - $this->avatarManager = \OC::$server->get(IAvatarManager::class);  | 
                                                        |
| 617 | - }  | 
                                                        |
| 618 | -  | 
                                                        |
| 619 | - $avatar = $this->avatarManager->getAvatar($this->uid);  | 
                                                        |
| 620 | - $image = $avatar->get($size);  | 
                                                        |
| 621 | -		if ($image) { | 
                                                        |
| 622 | - return $image;  | 
                                                        |
| 623 | - }  | 
                                                        |
| 624 | -  | 
                                                        |
| 625 | - return null;  | 
                                                        |
| 626 | - }  | 
                                                        |
| 627 | -  | 
                                                        |
| 628 | - /**  | 
                                                        |
| 629 | - * get the federation cloud id  | 
                                                        |
| 630 | - *  | 
                                                        |
| 631 | - * @return string  | 
                                                        |
| 632 | - * @since 9.0.0  | 
                                                        |
| 633 | - */  | 
                                                        |
| 634 | -	public function getCloudId() { | 
                                                        |
| 635 | - $uid = $this->getUID();  | 
                                                        |
| 636 | -		$server = rtrim($this->urlGenerator->getAbsoluteURL('/'), '/'); | 
                                                        |
| 637 | -		if (str_ends_with($server, '/index.php')) { | 
                                                        |
| 638 | - $server = substr($server, 0, -10);  | 
                                                        |
| 639 | - }  | 
                                                        |
| 640 | - $server = $this->removeProtocolFromUrl($server);  | 
                                                        |
| 641 | - return $uid . '@' . $server;  | 
                                                        |
| 642 | - }  | 
                                                        |
| 643 | -  | 
                                                        |
| 644 | -	private function removeProtocolFromUrl(string $url): string { | 
                                                        |
| 645 | -		if (str_starts_with($url, 'https://')) { | 
                                                        |
| 646 | -			return substr($url, strlen('https://')); | 
                                                        |
| 647 | - }  | 
                                                        |
| 648 | -  | 
                                                        |
| 649 | - return $url;  | 
                                                        |
| 650 | - }  | 
                                                        |
| 651 | -  | 
                                                        |
| 652 | -	public function triggerChange($feature, $value = null, $oldValue = null) { | 
                                                        |
| 653 | - $this->dispatcher->dispatchTyped(new UserChangedEvent($this, $feature, $value, $oldValue));  | 
                                                        |
| 654 | -		if ($this->emitter) { | 
                                                        |
| 655 | -			$this->emitter->emit('\OC\User', 'changeUser', [$this, $feature, $value, $oldValue]); | 
                                                        |
| 656 | - }  | 
                                                        |
| 657 | - }  | 
                                                        |
| 48 | + private const CONFIG_KEY_MANAGERS = 'manager';  | 
                                                        |
| 49 | +  | 
                                                        |
| 50 | + private IConfig $config;  | 
                                                        |
| 51 | + private IURLGenerator $urlGenerator;  | 
                                                        |
| 52 | +  | 
                                                        |
| 53 | + /** @var IAccountManager */  | 
                                                        |
| 54 | + protected $accountManager;  | 
                                                        |
| 55 | +  | 
                                                        |
| 56 | + /** @var string|null */  | 
                                                        |
| 57 | + private $displayName;  | 
                                                        |
| 58 | +  | 
                                                        |
| 59 | + /** @var bool|null */  | 
                                                        |
| 60 | + private $enabled;  | 
                                                        |
| 61 | +  | 
                                                        |
| 62 | + /** @var Emitter|Manager|null */  | 
                                                        |
| 63 | + private $emitter;  | 
                                                        |
| 64 | +  | 
                                                        |
| 65 | + /** @var string */  | 
                                                        |
| 66 | + private $home;  | 
                                                        |
| 67 | +  | 
                                                        |
| 68 | + private ?int $lastLogin = null;  | 
                                                        |
| 69 | + private ?int $firstLogin = null;  | 
                                                        |
| 70 | +  | 
                                                        |
| 71 | + /** @var IAvatarManager */  | 
                                                        |
| 72 | + private $avatarManager;  | 
                                                        |
| 73 | +  | 
                                                        |
| 74 | + public function __construct(  | 
                                                        |
| 75 | + private string $uid,  | 
                                                        |
| 76 | + private ?UserInterface $backend,  | 
                                                        |
| 77 | + private IEventDispatcher $dispatcher,  | 
                                                        |
| 78 | + $emitter = null,  | 
                                                        |
| 79 | + ?IConfig $config = null,  | 
                                                        |
| 80 | + $urlGenerator = null,  | 
                                                        |
| 81 | +    ) { | 
                                                        |
| 82 | + $this->emitter = $emitter;  | 
                                                        |
| 83 | + $this->config = $config ?? \OCP\Server::get(IConfig::class);  | 
                                                        |
| 84 | + $this->urlGenerator = $urlGenerator ?? \OCP\Server::get(IURLGenerator::class);  | 
                                                        |
| 85 | + }  | 
                                                        |
| 86 | +  | 
                                                        |
| 87 | + /**  | 
                                                        |
| 88 | + * get the user id  | 
                                                        |
| 89 | + *  | 
                                                        |
| 90 | + * @return string  | 
                                                        |
| 91 | + */  | 
                                                        |
| 92 | +    public function getUID() { | 
                                                        |
| 93 | + return $this->uid;  | 
                                                        |
| 94 | + }  | 
                                                        |
| 95 | +  | 
                                                        |
| 96 | + /**  | 
                                                        |
| 97 | + * get the display name for the user, if no specific display name is set it will fallback to the user id  | 
                                                        |
| 98 | + *  | 
                                                        |
| 99 | + * @return string  | 
                                                        |
| 100 | + */  | 
                                                        |
| 101 | +    public function getDisplayName() { | 
                                                        |
| 102 | +        if ($this->displayName === null) { | 
                                                        |
| 103 | + $displayName = '';  | 
                                                        |
| 104 | +            if ($this->backend && $this->backend->implementsActions(Backend::GET_DISPLAYNAME)) { | 
                                                        |
| 105 | + // get display name and strip whitespace from the beginning and end of it  | 
                                                        |
| 106 | + $backendDisplayName = $this->backend->getDisplayName($this->uid);  | 
                                                        |
| 107 | +                if (is_string($backendDisplayName)) { | 
                                                        |
| 108 | + $displayName = trim($backendDisplayName);  | 
                                                        |
| 109 | + }  | 
                                                        |
| 110 | + }  | 
                                                        |
| 111 | +  | 
                                                        |
| 112 | +            if (!empty($displayName)) { | 
                                                        |
| 113 | + $this->displayName = $displayName;  | 
                                                        |
| 114 | +            } else { | 
                                                        |
| 115 | + $this->displayName = $this->uid;  | 
                                                        |
| 116 | + }  | 
                                                        |
| 117 | + }  | 
                                                        |
| 118 | + return $this->displayName;  | 
                                                        |
| 119 | + }  | 
                                                        |
| 120 | +  | 
                                                        |
| 121 | + /**  | 
                                                        |
| 122 | + * set the displayname for the user  | 
                                                        |
| 123 | + *  | 
                                                        |
| 124 | + * @param string $displayName  | 
                                                        |
| 125 | + * @return bool  | 
                                                        |
| 126 | + *  | 
                                                        |
| 127 | + * @since 25.0.0 Throw InvalidArgumentException  | 
                                                        |
| 128 | + * @throws \InvalidArgumentException  | 
                                                        |
| 129 | + */  | 
                                                        |
| 130 | +    public function setDisplayName($displayName) { | 
                                                        |
| 131 | + $displayName = trim($displayName);  | 
                                                        |
| 132 | + $oldDisplayName = $this->getDisplayName();  | 
                                                        |
| 133 | +        if ($this->backend->implementsActions(Backend::SET_DISPLAYNAME) && !empty($displayName) && $displayName !== $oldDisplayName) { | 
                                                        |
| 134 | + /** @var ISetDisplayNameBackend $backend */  | 
                                                        |
| 135 | + $backend = $this->backend;  | 
                                                        |
| 136 | + $result = $backend->setDisplayName($this->uid, $displayName);  | 
                                                        |
| 137 | +            if ($result) { | 
                                                        |
| 138 | + $this->displayName = $displayName;  | 
                                                        |
| 139 | +                $this->triggerChange('displayName', $displayName, $oldDisplayName); | 
                                                        |
| 140 | + }  | 
                                                        |
| 141 | + return $result !== false;  | 
                                                        |
| 142 | + }  | 
                                                        |
| 143 | + return false;  | 
                                                        |
| 144 | + }  | 
                                                        |
| 145 | +  | 
                                                        |
| 146 | + /**  | 
                                                        |
| 147 | + * @inheritDoc  | 
                                                        |
| 148 | + */  | 
                                                        |
| 149 | +    public function setEMailAddress($mailAddress) { | 
                                                        |
| 150 | + $this->setSystemEMailAddress($mailAddress);  | 
                                                        |
| 151 | + }  | 
                                                        |
| 152 | +  | 
                                                        |
| 153 | + /**  | 
                                                        |
| 154 | + * @inheritDoc  | 
                                                        |
| 155 | + */  | 
                                                        |
| 156 | +    public function setSystemEMailAddress(string $mailAddress): void { | 
                                                        |
| 157 | + $oldMailAddress = $this->getSystemEMailAddress();  | 
                                                        |
| 158 | +  | 
                                                        |
| 159 | +        if ($mailAddress === '') { | 
                                                        |
| 160 | + $this->config->deleteUserValue($this->uid, 'settings', 'email');  | 
                                                        |
| 161 | +        } else { | 
                                                        |
| 162 | + $this->config->setUserValue($this->uid, 'settings', 'email', $mailAddress);  | 
                                                        |
| 163 | + }  | 
                                                        |
| 164 | +  | 
                                                        |
| 165 | + $primaryAddress = $this->getPrimaryEMailAddress();  | 
                                                        |
| 166 | +        if ($primaryAddress === $mailAddress) { | 
                                                        |
| 167 | + // on match no dedicated primary settings is necessary  | 
                                                        |
| 168 | +            $this->setPrimaryEMailAddress(''); | 
                                                        |
| 169 | + }  | 
                                                        |
| 170 | +  | 
                                                        |
| 171 | +        if ($oldMailAddress !== strtolower($mailAddress)) { | 
                                                        |
| 172 | +            $this->triggerChange('eMailAddress', $mailAddress, $oldMailAddress); | 
                                                        |
| 173 | + }  | 
                                                        |
| 174 | + }  | 
                                                        |
| 175 | +  | 
                                                        |
| 176 | + /**  | 
                                                        |
| 177 | + * @inheritDoc  | 
                                                        |
| 178 | + */  | 
                                                        |
| 179 | +    public function setPrimaryEMailAddress(string $mailAddress): void { | 
                                                        |
| 180 | +        if ($mailAddress === '') { | 
                                                        |
| 181 | + $this->config->deleteUserValue($this->uid, 'settings', 'primary_email');  | 
                                                        |
| 182 | + return;  | 
                                                        |
| 183 | + }  | 
                                                        |
| 184 | +  | 
                                                        |
| 185 | + $this->ensureAccountManager();  | 
                                                        |
| 186 | + $account = $this->accountManager->getAccount($this);  | 
                                                        |
| 187 | + $property = $account->getPropertyCollection(IAccountManager::COLLECTION_EMAIL)  | 
                                                        |
| 188 | + ->getPropertyByValue($mailAddress);  | 
                                                        |
| 189 | +  | 
                                                        |
| 190 | +        if ($property === null || $property->getLocallyVerified() !== IAccountManager::VERIFIED) { | 
                                                        |
| 191 | +            throw new InvalidArgumentException('Only verified emails can be set as primary'); | 
                                                        |
| 192 | + }  | 
                                                        |
| 193 | + $this->config->setUserValue($this->uid, 'settings', 'primary_email', $mailAddress);  | 
                                                        |
| 194 | + }  | 
                                                        |
| 195 | +  | 
                                                        |
| 196 | +    private function ensureAccountManager() { | 
                                                        |
| 197 | +        if (!$this->accountManager instanceof IAccountManager) { | 
                                                        |
| 198 | + $this->accountManager = \OC::$server->get(IAccountManager::class);  | 
                                                        |
| 199 | + }  | 
                                                        |
| 200 | + }  | 
                                                        |
| 201 | +  | 
                                                        |
| 202 | + /**  | 
                                                        |
| 203 | + * returns the timestamp of the user's last login or 0 if the user did never  | 
                                                        |
| 204 | + * login  | 
                                                        |
| 205 | + */  | 
                                                        |
| 206 | +    public function getLastLogin(): int { | 
                                                        |
| 207 | +        if ($this->lastLogin === null) { | 
                                                        |
| 208 | + $this->lastLogin = (int)$this->config->getUserValue($this->uid, 'login', 'lastLogin', 0);  | 
                                                        |
| 209 | + }  | 
                                                        |
| 210 | + return $this->lastLogin;  | 
                                                        |
| 211 | + }  | 
                                                        |
| 212 | +  | 
                                                        |
| 213 | + /**  | 
                                                        |
| 214 | + * returns the timestamp of the user's last login or 0 if the user did never  | 
                                                        |
| 215 | + * login  | 
                                                        |
| 216 | + */  | 
                                                        |
| 217 | +    public function getFirstLogin(): int { | 
                                                        |
| 218 | +        if ($this->firstLogin === null) { | 
                                                        |
| 219 | + $this->firstLogin = (int)$this->config->getUserValue($this->uid, 'login', 'firstLogin', 0);  | 
                                                        |
| 220 | + }  | 
                                                        |
| 221 | + return $this->firstLogin;  | 
                                                        |
| 222 | + }  | 
                                                        |
| 223 | +  | 
                                                        |
| 224 | + /**  | 
                                                        |
| 225 | + * updates the timestamp of the most recent login of this user  | 
                                                        |
| 226 | + */  | 
                                                        |
| 227 | +    public function updateLastLoginTimestamp(): bool { | 
                                                        |
| 228 | + $previousLogin = $this->getLastLogin();  | 
                                                        |
| 229 | + $firstLogin = $this->getFirstLogin();  | 
                                                        |
| 230 | + $now = time();  | 
                                                        |
| 231 | + $firstTimeLogin = $previousLogin === 0;  | 
                                                        |
| 232 | +  | 
                                                        |
| 233 | +        if ($now - $previousLogin > 60) { | 
                                                        |
| 234 | + $this->lastLogin = $now;  | 
                                                        |
| 235 | + $this->config->setUserValue($this->uid, 'login', 'lastLogin', (string)$this->lastLogin);  | 
                                                        |
| 236 | + }  | 
                                                        |
| 237 | +  | 
                                                        |
| 238 | +        if ($firstLogin === 0) { | 
                                                        |
| 239 | +            if ($firstTimeLogin) { | 
                                                        |
| 240 | + $this->firstLogin = $now;  | 
                                                        |
| 241 | +            } else { | 
                                                        |
| 242 | + /* Unknown first login, most likely was before upgrade to Nextcloud 31 */  | 
                                                        |
| 243 | + $this->firstLogin = -1;  | 
                                                        |
| 244 | + }  | 
                                                        |
| 245 | + $this->config->setUserValue($this->uid, 'login', 'firstLogin', (string)$this->firstLogin);  | 
                                                        |
| 246 | + }  | 
                                                        |
| 247 | +  | 
                                                        |
| 248 | + return $firstTimeLogin;  | 
                                                        |
| 249 | + }  | 
                                                        |
| 250 | +  | 
                                                        |
| 251 | + /**  | 
                                                        |
| 252 | + * Delete the user  | 
                                                        |
| 253 | + *  | 
                                                        |
| 254 | + * @return bool  | 
                                                        |
| 255 | + */  | 
                                                        |
| 256 | +    public function delete() { | 
                                                        |
| 257 | +        if ($this->backend === null) { | 
                                                        |
| 258 | +            \OCP\Server::get(LoggerInterface::class)->error('Cannot delete user: No backend set'); | 
                                                        |
| 259 | + return false;  | 
                                                        |
| 260 | + }  | 
                                                        |
| 261 | +  | 
                                                        |
| 262 | +        if ($this->emitter) { | 
                                                        |
| 263 | + /** @deprecated 21.0.0 use BeforeUserDeletedEvent event with the IEventDispatcher instead */  | 
                                                        |
| 264 | +            $this->emitter->emit('\OC\User', 'preDelete', [$this]); | 
                                                        |
| 265 | + }  | 
                                                        |
| 266 | + $this->dispatcher->dispatchTyped(new BeforeUserDeletedEvent($this));  | 
                                                        |
| 267 | +  | 
                                                        |
| 268 | + // Set delete flag on the user - this is needed to ensure that the user data is removed if there happen any exception in the backend  | 
                                                        |
| 269 | + // because we can not restore the user meaning we could not rollback to any stable state otherwise.  | 
                                                        |
| 270 | + $this->config->setUserValue($this->uid, 'core', 'deleted', 'true');  | 
                                                        |
| 271 | + // We also need to backup the home path as this can not be reconstructed later if the original backend uses custom home paths  | 
                                                        |
| 272 | + $this->config->setUserValue($this->uid, 'core', 'deleted.home-path', $this->getHome());  | 
                                                        |
| 273 | +  | 
                                                        |
| 274 | + // Try to delete the user on the backend  | 
                                                        |
| 275 | + $result = $this->backend->deleteUser($this->uid);  | 
                                                        |
| 276 | +        if ($result === false) { | 
                                                        |
| 277 | + // The deletion was aborted or something else happened, we are in a defined state, so remove the delete flag  | 
                                                        |
| 278 | + $this->config->deleteUserValue($this->uid, 'core', 'deleted');  | 
                                                        |
| 279 | + return false;  | 
                                                        |
| 280 | + }  | 
                                                        |
| 281 | +  | 
                                                        |
| 282 | + // We have to delete the user from all groups  | 
                                                        |
| 283 | + $groupManager = \OCP\Server::get(IGroupManager::class);  | 
                                                        |
| 284 | +        foreach ($groupManager->getUserGroupIds($this) as $groupId) { | 
                                                        |
| 285 | + $group = $groupManager->get($groupId);  | 
                                                        |
| 286 | +            if ($group) { | 
                                                        |
| 287 | + $this->dispatcher->dispatchTyped(new BeforeUserRemovedEvent($group, $this));  | 
                                                        |
| 288 | + $group->removeUser($this);  | 
                                                        |
| 289 | + $this->dispatcher->dispatchTyped(new UserRemovedEvent($group, $this));  | 
                                                        |
| 290 | + }  | 
                                                        |
| 291 | + }  | 
                                                        |
| 292 | +  | 
                                                        |
| 293 | + $commentsManager = \OCP\Server::get(ICommentsManager::class);  | 
                                                        |
| 294 | +        $commentsManager->deleteReferencesOfActor('users', $this->uid); | 
                                                        |
| 295 | + $commentsManager->deleteReadMarksFromUser($this);  | 
                                                        |
| 296 | +  | 
                                                        |
| 297 | + $avatarManager = \OCP\Server::get(AvatarManager::class);  | 
                                                        |
| 298 | + $avatarManager->deleteUserAvatar($this->uid);  | 
                                                        |
| 299 | +  | 
                                                        |
| 300 | + $notificationManager = \OCP\Server::get(INotificationManager::class);  | 
                                                        |
| 301 | + $notification = $notificationManager->createNotification();  | 
                                                        |
| 302 | + $notification->setUser($this->uid);  | 
                                                        |
| 303 | + $notificationManager->markProcessed($notification);  | 
                                                        |
| 304 | +  | 
                                                        |
| 305 | + $accountManager = \OCP\Server::get(AccountManager::class);  | 
                                                        |
| 306 | + $accountManager->deleteUser($this);  | 
                                                        |
| 307 | +  | 
                                                        |
| 308 | + $database = \OCP\Server::get(IDBConnection::class);  | 
                                                        |
| 309 | +        try { | 
                                                        |
| 310 | + // We need to create a transaction to make sure we are in a defined state  | 
                                                        |
| 311 | + // because if all user values are removed also the flag is gone, but if an exception happens (e.g. database lost connection on the set operation)  | 
                                                        |
| 312 | + // exactly here we are in an undefined state as the data is still present but the user does not exist on the system anymore.  | 
                                                        |
| 313 | + $database->beginTransaction();  | 
                                                        |
| 314 | + // Remove all user settings  | 
                                                        |
| 315 | + $this->config->deleteAllUserValues($this->uid);  | 
                                                        |
| 316 | + // But again set flag that this user is about to be deleted  | 
                                                        |
| 317 | + $this->config->setUserValue($this->uid, 'core', 'deleted', 'true');  | 
                                                        |
| 318 | + $this->config->setUserValue($this->uid, 'core', 'deleted.home-path', $this->getHome());  | 
                                                        |
| 319 | + // Commit the transaction so we are in a defined state: either the preferences are removed or an exception occurred but the delete flag is still present  | 
                                                        |
| 320 | + $database->commit();  | 
                                                        |
| 321 | +        } catch (\Throwable $e) { | 
                                                        |
| 322 | + $database->rollback();  | 
                                                        |
| 323 | + throw $e;  | 
                                                        |
| 324 | + }  | 
                                                        |
| 325 | +  | 
                                                        |
| 326 | +        if ($this->emitter !== null) { | 
                                                        |
| 327 | + /** @deprecated 21.0.0 use UserDeletedEvent event with the IEventDispatcher instead */  | 
                                                        |
| 328 | +            $this->emitter->emit('\OC\User', 'postDelete', [$this]); | 
                                                        |
| 329 | + }  | 
                                                        |
| 330 | + $this->dispatcher->dispatchTyped(new UserDeletedEvent($this));  | 
                                                        |
| 331 | +  | 
                                                        |
| 332 | + // Finally we can unset the delete flag and all other states  | 
                                                        |
| 333 | + $this->config->deleteAllUserValues($this->uid);  | 
                                                        |
| 334 | +  | 
                                                        |
| 335 | + return true;  | 
                                                        |
| 336 | + }  | 
                                                        |
| 337 | +  | 
                                                        |
| 338 | + /**  | 
                                                        |
| 339 | + * Set the password of the user  | 
                                                        |
| 340 | + *  | 
                                                        |
| 341 | + * @param string $password  | 
                                                        |
| 342 | + * @param string $recoveryPassword for the encryption app to reset encryption keys  | 
                                                        |
| 343 | + * @return bool  | 
                                                        |
| 344 | + */  | 
                                                        |
| 345 | +    public function setPassword($password, $recoveryPassword = null) { | 
                                                        |
| 346 | + $this->dispatcher->dispatchTyped(new BeforePasswordUpdatedEvent($this, $password, $recoveryPassword));  | 
                                                        |
| 347 | +        if ($this->emitter) { | 
                                                        |
| 348 | +            $this->emitter->emit('\OC\User', 'preSetPassword', [$this, $password, $recoveryPassword]); | 
                                                        |
| 349 | + }  | 
                                                        |
| 350 | +        if ($this->backend->implementsActions(Backend::SET_PASSWORD)) { | 
                                                        |
| 351 | + /** @var ISetPasswordBackend $backend */  | 
                                                        |
| 352 | + $backend = $this->backend;  | 
                                                        |
| 353 | + $result = $backend->setPassword($this->uid, $password);  | 
                                                        |
| 354 | +  | 
                                                        |
| 355 | +            if ($result !== false) { | 
                                                        |
| 356 | + $this->dispatcher->dispatchTyped(new PasswordUpdatedEvent($this, $password, $recoveryPassword));  | 
                                                        |
| 357 | +                if ($this->emitter) { | 
                                                        |
| 358 | +                    $this->emitter->emit('\OC\User', 'postSetPassword', [$this, $password, $recoveryPassword]); | 
                                                        |
| 359 | + }  | 
                                                        |
| 360 | + }  | 
                                                        |
| 361 | +  | 
                                                        |
| 362 | + return !($result === false);  | 
                                                        |
| 363 | +        } else { | 
                                                        |
| 364 | + return false;  | 
                                                        |
| 365 | + }  | 
                                                        |
| 366 | + }  | 
                                                        |
| 367 | +  | 
                                                        |
| 368 | +    public function getPasswordHash(): ?string { | 
                                                        |
| 369 | +        if (!($this->backend instanceof IPasswordHashBackend)) { | 
                                                        |
| 370 | + return null;  | 
                                                        |
| 371 | + }  | 
                                                        |
| 372 | + return $this->backend->getPasswordHash($this->uid);  | 
                                                        |
| 373 | + }  | 
                                                        |
| 374 | +  | 
                                                        |
| 375 | +    public function setPasswordHash(string $passwordHash): bool { | 
                                                        |
| 376 | +        if (!($this->backend instanceof IPasswordHashBackend)) { | 
                                                        |
| 377 | + return false;  | 
                                                        |
| 378 | + }  | 
                                                        |
| 379 | + return $this->backend->setPasswordHash($this->uid, $passwordHash);  | 
                                                        |
| 380 | + }  | 
                                                        |
| 381 | +  | 
                                                        |
| 382 | + /**  | 
                                                        |
| 383 | + * get the users home folder to mount  | 
                                                        |
| 384 | + *  | 
                                                        |
| 385 | + * @return string  | 
                                                        |
| 386 | + */  | 
                                                        |
| 387 | +    public function getHome() { | 
                                                        |
| 388 | +        if (!$this->home) { | 
                                                        |
| 389 | + /** @psalm-suppress UndefinedInterfaceMethod Once we get rid of the legacy implementsActions, psalm won't complain anymore */  | 
                                                        |
| 390 | +            if (($this->backend instanceof IGetHomeBackend || $this->backend->implementsActions(Backend::GET_HOME)) && $home = $this->backend->getHome($this->uid)) { | 
                                                        |
| 391 | + $this->home = $home;  | 
                                                        |
| 392 | +            } else { | 
                                                        |
| 393 | +                $this->home = $this->config->getSystemValueString('datadirectory', \OC::$SERVERROOT . '/data') . '/' . $this->uid; | 
                                                        |
| 394 | + }  | 
                                                        |
| 395 | + }  | 
                                                        |
| 396 | + return $this->home;  | 
                                                        |
| 397 | + }  | 
                                                        |
| 398 | +  | 
                                                        |
| 399 | + /**  | 
                                                        |
| 400 | + * Get the name of the backend class the user is connected with  | 
                                                        |
| 401 | + *  | 
                                                        |
| 402 | + * @return string  | 
                                                        |
| 403 | + */  | 
                                                        |
| 404 | +    public function getBackendClassName() { | 
                                                        |
| 405 | +        if ($this->backend instanceof IUserBackend) { | 
                                                        |
| 406 | + return $this->backend->getBackendName();  | 
                                                        |
| 407 | + }  | 
                                                        |
| 408 | + return get_class($this->backend);  | 
                                                        |
| 409 | + }  | 
                                                        |
| 410 | +  | 
                                                        |
| 411 | +    public function getBackend(): ?UserInterface { | 
                                                        |
| 412 | + return $this->backend;  | 
                                                        |
| 413 | + }  | 
                                                        |
| 414 | +  | 
                                                        |
| 415 | + /**  | 
                                                        |
| 416 | + * Check if the backend allows the user to change their avatar on Personal page  | 
                                                        |
| 417 | + *  | 
                                                        |
| 418 | + * @return bool  | 
                                                        |
| 419 | + */  | 
                                                        |
| 420 | +    public function canChangeAvatar() { | 
                                                        |
| 421 | +        if ($this->backend instanceof IProvideAvatarBackend || $this->backend->implementsActions(Backend::PROVIDE_AVATAR)) { | 
                                                        |
| 422 | + /** @var IProvideAvatarBackend $backend */  | 
                                                        |
| 423 | + $backend = $this->backend;  | 
                                                        |
| 424 | + return $backend->canChangeAvatar($this->uid);  | 
                                                        |
| 425 | + }  | 
                                                        |
| 426 | + return true;  | 
                                                        |
| 427 | + }  | 
                                                        |
| 428 | +  | 
                                                        |
| 429 | + /**  | 
                                                        |
| 430 | + * check if the backend supports changing passwords  | 
                                                        |
| 431 | + *  | 
                                                        |
| 432 | + * @return bool  | 
                                                        |
| 433 | + */  | 
                                                        |
| 434 | +    public function canChangePassword() { | 
                                                        |
| 435 | + return $this->backend->implementsActions(Backend::SET_PASSWORD);  | 
                                                        |
| 436 | + }  | 
                                                        |
| 437 | +  | 
                                                        |
| 438 | + /**  | 
                                                        |
| 439 | + * check if the backend supports changing display names  | 
                                                        |
| 440 | + *  | 
                                                        |
| 441 | + * @return bool  | 
                                                        |
| 442 | + */  | 
                                                        |
| 443 | +    public function canChangeDisplayName() { | 
                                                        |
| 444 | +        if (!$this->config->getSystemValueBool('allow_user_to_change_display_name', true)) { | 
                                                        |
| 445 | + return false;  | 
                                                        |
| 446 | + }  | 
                                                        |
| 447 | + return $this->backend->implementsActions(Backend::SET_DISPLAYNAME);  | 
                                                        |
| 448 | + }  | 
                                                        |
| 449 | +  | 
                                                        |
| 450 | +    public function canChangeEmail(): bool { | 
                                                        |
| 451 | +        return $this->config->getSystemValueBool('allow_user_to_change_email', true); | 
                                                        |
| 452 | + }  | 
                                                        |
| 453 | +  | 
                                                        |
| 454 | + /**  | 
                                                        |
| 455 | + * check if the user is enabled  | 
                                                        |
| 456 | + *  | 
                                                        |
| 457 | + * @return bool  | 
                                                        |
| 458 | + */  | 
                                                        |
| 459 | +    public function isEnabled() { | 
                                                        |
| 460 | +        $queryDatabaseValue = function (): bool { | 
                                                        |
| 461 | +            if ($this->enabled === null) { | 
                                                        |
| 462 | + $enabled = $this->config->getUserValue($this->uid, 'core', 'enabled', 'true');  | 
                                                        |
| 463 | + $this->enabled = $enabled === 'true';  | 
                                                        |
| 464 | + }  | 
                                                        |
| 465 | + return $this->enabled;  | 
                                                        |
| 466 | + };  | 
                                                        |
| 467 | +        if ($this->backend instanceof IProvideEnabledStateBackend) { | 
                                                        |
| 468 | + return $this->backend->isUserEnabled($this->uid, $queryDatabaseValue);  | 
                                                        |
| 469 | +        } else { | 
                                                        |
| 470 | + return $queryDatabaseValue();  | 
                                                        |
| 471 | + }  | 
                                                        |
| 472 | + }  | 
                                                        |
| 473 | +  | 
                                                        |
| 474 | + /**  | 
                                                        |
| 475 | + * set the enabled status for the user  | 
                                                        |
| 476 | + *  | 
                                                        |
| 477 | + * @return void  | 
                                                        |
| 478 | + */  | 
                                                        |
| 479 | +    public function setEnabled(bool $enabled = true) { | 
                                                        |
| 480 | + $oldStatus = $this->isEnabled();  | 
                                                        |
| 481 | +        $setDatabaseValue = function (bool $enabled): void { | 
                                                        |
| 482 | + $this->config->setUserValue($this->uid, 'core', 'enabled', $enabled ? 'true' : 'false');  | 
                                                        |
| 483 | + $this->enabled = $enabled;  | 
                                                        |
| 484 | + };  | 
                                                        |
| 485 | +        if ($this->backend instanceof IProvideEnabledStateBackend) { | 
                                                        |
| 486 | +            $queryDatabaseValue = function (): bool { | 
                                                        |
| 487 | +                if ($this->enabled === null) { | 
                                                        |
| 488 | + $enabled = $this->config->getUserValue($this->uid, 'core', 'enabled', 'true');  | 
                                                        |
| 489 | + $this->enabled = $enabled === 'true';  | 
                                                        |
| 490 | + }  | 
                                                        |
| 491 | + return $this->enabled;  | 
                                                        |
| 492 | + };  | 
                                                        |
| 493 | + $enabled = $this->backend->setUserEnabled($this->uid, $enabled, $queryDatabaseValue, $setDatabaseValue);  | 
                                                        |
| 494 | +            if ($oldStatus !== $enabled) { | 
                                                        |
| 495 | +                $this->triggerChange('enabled', $enabled, $oldStatus); | 
                                                        |
| 496 | + }  | 
                                                        |
| 497 | +        } elseif ($oldStatus !== $enabled) { | 
                                                        |
| 498 | + $setDatabaseValue($enabled);  | 
                                                        |
| 499 | +            $this->triggerChange('enabled', $enabled, $oldStatus); | 
                                                        |
| 500 | + }  | 
                                                        |
| 501 | + }  | 
                                                        |
| 502 | +  | 
                                                        |
| 503 | + /**  | 
                                                        |
| 504 | + * get the users email address  | 
                                                        |
| 505 | + *  | 
                                                        |
| 506 | + * @return string|null  | 
                                                        |
| 507 | + * @since 9.0.0  | 
                                                        |
| 508 | + */  | 
                                                        |
| 509 | +    public function getEMailAddress() { | 
                                                        |
| 510 | + return $this->getPrimaryEMailAddress() ?? $this->getSystemEMailAddress();  | 
                                                        |
| 511 | + }  | 
                                                        |
| 512 | +  | 
                                                        |
| 513 | + /**  | 
                                                        |
| 514 | + * @inheritDoc  | 
                                                        |
| 515 | + */  | 
                                                        |
| 516 | +    public function getSystemEMailAddress(): ?string { | 
                                                        |
| 517 | + return $this->config->getUserValue($this->uid, 'settings', 'email', null);  | 
                                                        |
| 518 | + }  | 
                                                        |
| 519 | +  | 
                                                        |
| 520 | + /**  | 
                                                        |
| 521 | + * @inheritDoc  | 
                                                        |
| 522 | + */  | 
                                                        |
| 523 | +    public function getPrimaryEMailAddress(): ?string { | 
                                                        |
| 524 | + return $this->config->getUserValue($this->uid, 'settings', 'primary_email', null);  | 
                                                        |
| 525 | + }  | 
                                                        |
| 526 | +  | 
                                                        |
| 527 | + /**  | 
                                                        |
| 528 | + * get the users' quota  | 
                                                        |
| 529 | + *  | 
                                                        |
| 530 | + * @return string  | 
                                                        |
| 531 | + * @since 9.0.0  | 
                                                        |
| 532 | + */  | 
                                                        |
| 533 | +    public function getQuota() { | 
                                                        |
| 534 | + // allow apps to modify the user quota by hooking into the event  | 
                                                        |
| 535 | + $event = new GetQuotaEvent($this);  | 
                                                        |
| 536 | + $this->dispatcher->dispatchTyped($event);  | 
                                                        |
| 537 | + $overwriteQuota = $event->getQuota();  | 
                                                        |
| 538 | +        if ($overwriteQuota) { | 
                                                        |
| 539 | + $quota = $overwriteQuota;  | 
                                                        |
| 540 | +        } else { | 
                                                        |
| 541 | + $quota = $this->config->getUserValue($this->uid, 'files', 'quota', 'default');  | 
                                                        |
| 542 | + }  | 
                                                        |
| 543 | +        if ($quota === 'default') { | 
                                                        |
| 544 | +            $quota = $this->config->getAppValue('files', 'default_quota', 'none'); | 
                                                        |
| 545 | +  | 
                                                        |
| 546 | + // if unlimited quota is not allowed => avoid getting 'unlimited' as default_quota fallback value  | 
                                                        |
| 547 | + // use the first preset instead  | 
                                                        |
| 548 | +            $allowUnlimitedQuota = $this->config->getAppValue('files', 'allow_unlimited_quota', '1') === '1'; | 
                                                        |
| 549 | +            if (!$allowUnlimitedQuota) { | 
                                                        |
| 550 | +                $presets = $this->config->getAppValue('files', 'quota_preset', '1 GB, 5 GB, 10 GB'); | 
                                                        |
| 551 | +                $presets = array_filter(array_map('trim', explode(',', $presets))); | 
                                                        |
| 552 | + $quotaPreset = array_values(array_diff($presets, ['default', 'none']));  | 
                                                        |
| 553 | +                if (count($quotaPreset) > 0) { | 
                                                        |
| 554 | +                    $quota = $this->config->getAppValue('files', 'default_quota', $quotaPreset[0]); | 
                                                        |
| 555 | + }  | 
                                                        |
| 556 | + }  | 
                                                        |
| 557 | + }  | 
                                                        |
| 558 | + return $quota;  | 
                                                        |
| 559 | + }  | 
                                                        |
| 560 | +  | 
                                                        |
| 561 | + /**  | 
                                                        |
| 562 | + * set the users' quota  | 
                                                        |
| 563 | + *  | 
                                                        |
| 564 | + * @param string $quota  | 
                                                        |
| 565 | + * @return void  | 
                                                        |
| 566 | + * @throws InvalidArgumentException  | 
                                                        |
| 567 | + * @since 9.0.0  | 
                                                        |
| 568 | + */  | 
                                                        |
| 569 | +    public function setQuota($quota) { | 
                                                        |
| 570 | + $oldQuota = $this->config->getUserValue($this->uid, 'files', 'quota', '');  | 
                                                        |
| 571 | +        if ($quota !== 'none' and $quota !== 'default') { | 
                                                        |
| 572 | + $bytesQuota = OC_Helper::computerFileSize($quota);  | 
                                                        |
| 573 | +            if ($bytesQuota === false) { | 
                                                        |
| 574 | +                throw new InvalidArgumentException('Failed to set quota to invalid value ' . $quota); | 
                                                        |
| 575 | + }  | 
                                                        |
| 576 | + $quota = OC_Helper::humanFileSize($bytesQuota);  | 
                                                        |
| 577 | + }  | 
                                                        |
| 578 | +        if ($quota !== $oldQuota) { | 
                                                        |
| 579 | + $this->config->setUserValue($this->uid, 'files', 'quota', $quota);  | 
                                                        |
| 580 | +            $this->triggerChange('quota', $quota, $oldQuota); | 
                                                        |
| 581 | + }  | 
                                                        |
| 582 | +        \OC_Helper::clearStorageInfo('/' . $this->uid . '/files'); | 
                                                        |
| 583 | + }  | 
                                                        |
| 584 | +  | 
                                                        |
| 585 | +    public function getManagerUids(): array { | 
                                                        |
| 586 | + $encodedUids = $this->config->getUserValue(  | 
                                                        |
| 587 | + $this->uid,  | 
                                                        |
| 588 | + 'settings',  | 
                                                        |
| 589 | + self::CONFIG_KEY_MANAGERS,  | 
                                                        |
| 590 | + '[]'  | 
                                                        |
| 591 | + );  | 
                                                        |
| 592 | + return json_decode($encodedUids, false, 512, JSON_THROW_ON_ERROR);  | 
                                                        |
| 593 | + }  | 
                                                        |
| 594 | +  | 
                                                        |
| 595 | +    public function setManagerUids(array $uids): void { | 
                                                        |
| 596 | + $oldUids = $this->getManagerUids();  | 
                                                        |
| 597 | + $this->config->setUserValue(  | 
                                                        |
| 598 | + $this->uid,  | 
                                                        |
| 599 | + 'settings',  | 
                                                        |
| 600 | + self::CONFIG_KEY_MANAGERS,  | 
                                                        |
| 601 | + json_encode($uids, JSON_THROW_ON_ERROR)  | 
                                                        |
| 602 | + );  | 
                                                        |
| 603 | +        $this->triggerChange('managers', $uids, $oldUids); | 
                                                        |
| 604 | + }  | 
                                                        |
| 605 | +  | 
                                                        |
| 606 | + /**  | 
                                                        |
| 607 | + * get the avatar image if it exists  | 
                                                        |
| 608 | + *  | 
                                                        |
| 609 | + * @param int $size  | 
                                                        |
| 610 | + * @return IImage|null  | 
                                                        |
| 611 | + * @since 9.0.0  | 
                                                        |
| 612 | + */  | 
                                                        |
| 613 | +    public function getAvatarImage($size) { | 
                                                        |
| 614 | + // delay the initialization  | 
                                                        |
| 615 | +        if (is_null($this->avatarManager)) { | 
                                                        |
| 616 | + $this->avatarManager = \OC::$server->get(IAvatarManager::class);  | 
                                                        |
| 617 | + }  | 
                                                        |
| 618 | +  | 
                                                        |
| 619 | + $avatar = $this->avatarManager->getAvatar($this->uid);  | 
                                                        |
| 620 | + $image = $avatar->get($size);  | 
                                                        |
| 621 | +        if ($image) { | 
                                                        |
| 622 | + return $image;  | 
                                                        |
| 623 | + }  | 
                                                        |
| 624 | +  | 
                                                        |
| 625 | + return null;  | 
                                                        |
| 626 | + }  | 
                                                        |
| 627 | +  | 
                                                        |
| 628 | + /**  | 
                                                        |
| 629 | + * get the federation cloud id  | 
                                                        |
| 630 | + *  | 
                                                        |
| 631 | + * @return string  | 
                                                        |
| 632 | + * @since 9.0.0  | 
                                                        |
| 633 | + */  | 
                                                        |
| 634 | +    public function getCloudId() { | 
                                                        |
| 635 | + $uid = $this->getUID();  | 
                                                        |
| 636 | +        $server = rtrim($this->urlGenerator->getAbsoluteURL('/'), '/'); | 
                                                        |
| 637 | +        if (str_ends_with($server, '/index.php')) { | 
                                                        |
| 638 | + $server = substr($server, 0, -10);  | 
                                                        |
| 639 | + }  | 
                                                        |
| 640 | + $server = $this->removeProtocolFromUrl($server);  | 
                                                        |
| 641 | + return $uid . '@' . $server;  | 
                                                        |
| 642 | + }  | 
                                                        |
| 643 | +  | 
                                                        |
| 644 | +    private function removeProtocolFromUrl(string $url): string { | 
                                                        |
| 645 | +        if (str_starts_with($url, 'https://')) { | 
                                                        |
| 646 | +            return substr($url, strlen('https://')); | 
                                                        |
| 647 | + }  | 
                                                        |
| 648 | +  | 
                                                        |
| 649 | + return $url;  | 
                                                        |
| 650 | + }  | 
                                                        |
| 651 | +  | 
                                                        |
| 652 | +    public function triggerChange($feature, $value = null, $oldValue = null) { | 
                                                        |
| 653 | + $this->dispatcher->dispatchTyped(new UserChangedEvent($this, $feature, $value, $oldValue));  | 
                                                        |
| 654 | +        if ($this->emitter) { | 
                                                        |
| 655 | +            $this->emitter->emit('\OC\User', 'changeUser', [$this, $feature, $value, $oldValue]); | 
                                                        |
| 656 | + }  | 
                                                        |
| 657 | + }  | 
                                                        |
| 658 | 658 | }  | 
                                                        
@@ -6,2157 +6,2157 @@  | 
                                                    ||
| 6 | 6 | |
| 7 | 7 | class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2  | 
                                                        
| 8 | 8 |  { | 
                                                        
| 9 | - public static $files = array (  | 
                                                        |
| 10 | - '03ae51fe9694f2f597f918142c49ff7a' => __DIR__ . '/../../..' . '/lib/public/Log/functions.php',  | 
                                                        |
| 9 | + public static $files = array(  | 
                                                        |
| 10 | + '03ae51fe9694f2f597f918142c49ff7a' => __DIR__.'/../../..'.'/lib/public/Log/functions.php',  | 
                                                        |
| 11 | 11 | );  | 
                                                        
| 12 | 12 | |
| 13 | - public static $prefixLengthsPsr4 = array (  | 
                                                        |
| 13 | + public static $prefixLengthsPsr4 = array(  | 
                                                        |
| 14 | 14 | 'O' =>  | 
                                                        
| 15 | - array (  | 
                                                        |
| 15 | + array(  | 
                                                        |
| 16 | 16 | 'OC\\Core\\' => 8,  | 
                                                        
| 17 | 17 | 'OC\\' => 3,  | 
                                                        
| 18 | 18 | 'OCP\\' => 4,  | 
                                                        
| 19 | 19 | ),  | 
                                                        
| 20 | 20 | 'N' =>  | 
                                                        
| 21 | - array (  | 
                                                        |
| 21 | + array(  | 
                                                        |
| 22 | 22 | 'NCU\\' => 4,  | 
                                                        
| 23 | 23 | ),  | 
                                                        
| 24 | 24 | 'B' =>  | 
                                                        
| 25 | - array (  | 
                                                        |
| 25 | + array(  | 
                                                        |
| 26 | 26 | 'Bamarni\\Composer\\Bin\\' => 21,  | 
                                                        
| 27 | 27 | ),  | 
                                                        
| 28 | 28 | );  | 
                                                        
| 29 | 29 | |
| 30 | - public static $prefixDirsPsr4 = array (  | 
                                                        |
| 30 | + public static $prefixDirsPsr4 = array(  | 
                                                        |
| 31 | 31 | 'OC\\Core\\' =>  | 
                                                        
| 32 | - array (  | 
                                                        |
| 33 | - 0 => __DIR__ . '/../../..' . '/core',  | 
                                                        |
| 32 | + array(  | 
                                                        |
| 33 | + 0 => __DIR__.'/../../..'.'/core',  | 
                                                        |
| 34 | 34 | ),  | 
                                                        
| 35 | 35 | 'OC\\' =>  | 
                                                        
| 36 | - array (  | 
                                                        |
| 37 | - 0 => __DIR__ . '/../../..' . '/lib/private',  | 
                                                        |
| 36 | + array(  | 
                                                        |
| 37 | + 0 => __DIR__.'/../../..'.'/lib/private',  | 
                                                        |
| 38 | 38 | ),  | 
                                                        
| 39 | 39 | 'OCP\\' =>  | 
                                                        
| 40 | - array (  | 
                                                        |
| 41 | - 0 => __DIR__ . '/../../..' . '/lib/public',  | 
                                                        |
| 40 | + array(  | 
                                                        |
| 41 | + 0 => __DIR__.'/../../..'.'/lib/public',  | 
                                                        |
| 42 | 42 | ),  | 
                                                        
| 43 | 43 | 'NCU\\' =>  | 
                                                        
| 44 | - array (  | 
                                                        |
| 45 | - 0 => __DIR__ . '/../../..' . '/lib/unstable',  | 
                                                        |
| 44 | + array(  | 
                                                        |
| 45 | + 0 => __DIR__.'/../../..'.'/lib/unstable',  | 
                                                        |
| 46 | 46 | ),  | 
                                                        
| 47 | 47 | 'Bamarni\\Composer\\Bin\\' =>  | 
                                                        
| 48 | - array (  | 
                                                        |
| 49 | - 0 => __DIR__ . '/..' . '/bamarni/composer-bin-plugin/src',  | 
                                                        |
| 48 | + array(  | 
                                                        |
| 49 | + 0 => __DIR__.'/..'.'/bamarni/composer-bin-plugin/src',  | 
                                                        |
| 50 | 50 | ),  | 
                                                        
| 51 | 51 | );  | 
                                                        
| 52 | 52 | |
| 53 | - public static $fallbackDirsPsr4 = array (  | 
                                                        |
| 54 | - 0 => __DIR__ . '/../../..' . '/lib/private/legacy',  | 
                                                        |
| 53 | + public static $fallbackDirsPsr4 = array(  | 
                                                        |
| 54 | + 0 => __DIR__.'/../../..'.'/lib/private/legacy',  | 
                                                        |
| 55 | 55 | );  | 
                                                        
| 56 | 56 | |
| 57 | - public static $classMap = array (  | 
                                                        |
| 58 | - 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',  | 
                                                        |
| 59 | - 'NCU\\Config\\Exceptions\\IncorrectTypeException' => __DIR__ . '/../../..' . '/lib/unstable/Config/Exceptions/IncorrectTypeException.php',  | 
                                                        |
| 60 | - 'NCU\\Config\\Exceptions\\TypeConflictException' => __DIR__ . '/../../..' . '/lib/unstable/Config/Exceptions/TypeConflictException.php',  | 
                                                        |
| 61 | - 'NCU\\Config\\Exceptions\\UnknownKeyException' => __DIR__ . '/../../..' . '/lib/unstable/Config/Exceptions/UnknownKeyException.php',  | 
                                                        |
| 62 | - 'NCU\\Config\\IUserConfig' => __DIR__ . '/../../..' . '/lib/unstable/Config/IUserConfig.php',  | 
                                                        |
| 63 | - 'NCU\\Config\\Lexicon\\ConfigLexiconEntry' => __DIR__ . '/../../..' . '/lib/unstable/Config/Lexicon/ConfigLexiconEntry.php',  | 
                                                        |
| 64 | - 'NCU\\Config\\Lexicon\\ConfigLexiconStrictness' => __DIR__ . '/../../..' . '/lib/unstable/Config/Lexicon/ConfigLexiconStrictness.php',  | 
                                                        |
| 65 | - 'NCU\\Config\\Lexicon\\IConfigLexicon' => __DIR__ . '/../../..' . '/lib/unstable/Config/Lexicon/IConfigLexicon.php',  | 
                                                        |
| 66 | - 'NCU\\Config\\ValueType' => __DIR__ . '/../../..' . '/lib/unstable/Config/ValueType.php',  | 
                                                        |
| 67 | - 'NCU\\Federation\\ISignedCloudFederationProvider' => __DIR__ . '/../../..' . '/lib/unstable/Federation/ISignedCloudFederationProvider.php',  | 
                                                        |
| 68 | - 'NCU\\Security\\Signature\\Enum\\DigestAlgorithm' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Enum/DigestAlgorithm.php',  | 
                                                        |
| 69 | - 'NCU\\Security\\Signature\\Enum\\SignatoryStatus' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Enum/SignatoryStatus.php',  | 
                                                        |
| 70 | - 'NCU\\Security\\Signature\\Enum\\SignatoryType' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Enum/SignatoryType.php',  | 
                                                        |
| 71 | - 'NCU\\Security\\Signature\\Enum\\SignatureAlgorithm' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Enum/SignatureAlgorithm.php',  | 
                                                        |
| 72 | - 'NCU\\Security\\Signature\\Exceptions\\IdentityNotFoundException' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Exceptions/IdentityNotFoundException.php',  | 
                                                        |
| 73 | - 'NCU\\Security\\Signature\\Exceptions\\IncomingRequestException' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Exceptions/IncomingRequestException.php',  | 
                                                        |
| 74 | - 'NCU\\Security\\Signature\\Exceptions\\InvalidKeyOriginException' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Exceptions/InvalidKeyOriginException.php',  | 
                                                        |
| 75 | - 'NCU\\Security\\Signature\\Exceptions\\InvalidSignatureException' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Exceptions/InvalidSignatureException.php',  | 
                                                        |
| 76 | - 'NCU\\Security\\Signature\\Exceptions\\SignatoryConflictException' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Exceptions/SignatoryConflictException.php',  | 
                                                        |
| 77 | - 'NCU\\Security\\Signature\\Exceptions\\SignatoryException' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Exceptions/SignatoryException.php',  | 
                                                        |
| 78 | - 'NCU\\Security\\Signature\\Exceptions\\SignatoryNotFoundException' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Exceptions/SignatoryNotFoundException.php',  | 
                                                        |
| 79 | - 'NCU\\Security\\Signature\\Exceptions\\SignatureElementNotFoundException' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Exceptions/SignatureElementNotFoundException.php',  | 
                                                        |
| 80 | - 'NCU\\Security\\Signature\\Exceptions\\SignatureException' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Exceptions/SignatureException.php',  | 
                                                        |
| 81 | - 'NCU\\Security\\Signature\\Exceptions\\SignatureNotFoundException' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Exceptions/SignatureNotFoundException.php',  | 
                                                        |
| 82 | - 'NCU\\Security\\Signature\\IIncomingSignedRequest' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/IIncomingSignedRequest.php',  | 
                                                        |
| 83 | - 'NCU\\Security\\Signature\\IOutgoingSignedRequest' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/IOutgoingSignedRequest.php',  | 
                                                        |
| 84 | - 'NCU\\Security\\Signature\\ISignatoryManager' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/ISignatoryManager.php',  | 
                                                        |
| 85 | - 'NCU\\Security\\Signature\\ISignatureManager' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/ISignatureManager.php',  | 
                                                        |
| 86 | - 'NCU\\Security\\Signature\\ISignedRequest' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/ISignedRequest.php',  | 
                                                        |
| 87 | - 'NCU\\Security\\Signature\\Model\\Signatory' => __DIR__ . '/../../..' . '/lib/unstable/Security/Signature/Model/Signatory.php',  | 
                                                        |
| 88 | - 'OCP\\Accounts\\IAccount' => __DIR__ . '/../../..' . '/lib/public/Accounts/IAccount.php',  | 
                                                        |
| 89 | - 'OCP\\Accounts\\IAccountManager' => __DIR__ . '/../../..' . '/lib/public/Accounts/IAccountManager.php',  | 
                                                        |
| 90 | - 'OCP\\Accounts\\IAccountProperty' => __DIR__ . '/../../..' . '/lib/public/Accounts/IAccountProperty.php',  | 
                                                        |
| 91 | - 'OCP\\Accounts\\IAccountPropertyCollection' => __DIR__ . '/../../..' . '/lib/public/Accounts/IAccountPropertyCollection.php',  | 
                                                        |
| 92 | - 'OCP\\Accounts\\PropertyDoesNotExistException' => __DIR__ . '/../../..' . '/lib/public/Accounts/PropertyDoesNotExistException.php',  | 
                                                        |
| 93 | - 'OCP\\Accounts\\UserUpdatedEvent' => __DIR__ . '/../../..' . '/lib/public/Accounts/UserUpdatedEvent.php',  | 
                                                        |
| 94 | - 'OCP\\Activity\\ActivitySettings' => __DIR__ . '/../../..' . '/lib/public/Activity/ActivitySettings.php',  | 
                                                        |
| 95 | - 'OCP\\Activity\\Exceptions\\FilterNotFoundException' => __DIR__ . '/../../..' . '/lib/public/Activity/Exceptions/FilterNotFoundException.php',  | 
                                                        |
| 96 | - 'OCP\\Activity\\Exceptions\\IncompleteActivityException' => __DIR__ . '/../../..' . '/lib/public/Activity/Exceptions/IncompleteActivityException.php',  | 
                                                        |
| 97 | - 'OCP\\Activity\\Exceptions\\InvalidValueException' => __DIR__ . '/../../..' . '/lib/public/Activity/Exceptions/InvalidValueException.php',  | 
                                                        |
| 98 | - 'OCP\\Activity\\Exceptions\\SettingNotFoundException' => __DIR__ . '/../../..' . '/lib/public/Activity/Exceptions/SettingNotFoundException.php',  | 
                                                        |
| 99 | - 'OCP\\Activity\\Exceptions\\UnknownActivityException' => __DIR__ . '/../../..' . '/lib/public/Activity/Exceptions/UnknownActivityException.php',  | 
                                                        |
| 100 | - 'OCP\\Activity\\IConsumer' => __DIR__ . '/../../..' . '/lib/public/Activity/IConsumer.php',  | 
                                                        |
| 101 | - 'OCP\\Activity\\IEvent' => __DIR__ . '/../../..' . '/lib/public/Activity/IEvent.php',  | 
                                                        |
| 102 | - 'OCP\\Activity\\IEventMerger' => __DIR__ . '/../../..' . '/lib/public/Activity/IEventMerger.php',  | 
                                                        |
| 103 | - 'OCP\\Activity\\IExtension' => __DIR__ . '/../../..' . '/lib/public/Activity/IExtension.php',  | 
                                                        |
| 104 | - 'OCP\\Activity\\IFilter' => __DIR__ . '/../../..' . '/lib/public/Activity/IFilter.php',  | 
                                                        |
| 105 | - 'OCP\\Activity\\IManager' => __DIR__ . '/../../..' . '/lib/public/Activity/IManager.php',  | 
                                                        |
| 106 | - 'OCP\\Activity\\IProvider' => __DIR__ . '/../../..' . '/lib/public/Activity/IProvider.php',  | 
                                                        |
| 107 | - 'OCP\\Activity\\ISetting' => __DIR__ . '/../../..' . '/lib/public/Activity/ISetting.php',  | 
                                                        |
| 108 | - 'OCP\\AppFramework\\ApiController' => __DIR__ . '/../../..' . '/lib/public/AppFramework/ApiController.php',  | 
                                                        |
| 109 | - 'OCP\\AppFramework\\App' => __DIR__ . '/../../..' . '/lib/public/AppFramework/App.php',  | 
                                                        |
| 110 | - 'OCP\\AppFramework\\AuthPublicShareController' => __DIR__ . '/../../..' . '/lib/public/AppFramework/AuthPublicShareController.php',  | 
                                                        |
| 111 | - 'OCP\\AppFramework\\Bootstrap\\IBootContext' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Bootstrap/IBootContext.php',  | 
                                                        |
| 112 | - 'OCP\\AppFramework\\Bootstrap\\IBootstrap' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Bootstrap/IBootstrap.php',  | 
                                                        |
| 113 | - 'OCP\\AppFramework\\Bootstrap\\IRegistrationContext' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Bootstrap/IRegistrationContext.php',  | 
                                                        |
| 114 | - 'OCP\\AppFramework\\Controller' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Controller.php',  | 
                                                        |
| 115 | - 'OCP\\AppFramework\\Db\\DoesNotExistException' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Db/DoesNotExistException.php',  | 
                                                        |
| 116 | - 'OCP\\AppFramework\\Db\\Entity' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Db/Entity.php',  | 
                                                        |
| 117 | - 'OCP\\AppFramework\\Db\\IMapperException' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Db/IMapperException.php',  | 
                                                        |
| 118 | - 'OCP\\AppFramework\\Db\\MultipleObjectsReturnedException' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Db/MultipleObjectsReturnedException.php',  | 
                                                        |
| 119 | - 'OCP\\AppFramework\\Db\\QBMapper' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Db/QBMapper.php',  | 
                                                        |
| 120 | - 'OCP\\AppFramework\\Db\\TTransactional' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Db/TTransactional.php',  | 
                                                        |
| 121 | - 'OCP\\AppFramework\\Http' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http.php',  | 
                                                        |
| 122 | - 'OCP\\AppFramework\\Http\\Attribute\\ARateLimit' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/ARateLimit.php',  | 
                                                        |
| 123 | - 'OCP\\AppFramework\\Http\\Attribute\\AnonRateLimit' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/AnonRateLimit.php',  | 
                                                        |
| 124 | - 'OCP\\AppFramework\\Http\\Attribute\\ApiRoute' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/ApiRoute.php',  | 
                                                        |
| 125 | - 'OCP\\AppFramework\\Http\\Attribute\\AppApiAdminAccessWithoutUser' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/AppApiAdminAccessWithoutUser.php',  | 
                                                        |
| 126 | - 'OCP\\AppFramework\\Http\\Attribute\\AuthorizedAdminSetting' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/AuthorizedAdminSetting.php',  | 
                                                        |
| 127 | - 'OCP\\AppFramework\\Http\\Attribute\\BruteForceProtection' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/BruteForceProtection.php',  | 
                                                        |
| 128 | - 'OCP\\AppFramework\\Http\\Attribute\\CORS' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/CORS.php',  | 
                                                        |
| 129 | - 'OCP\\AppFramework\\Http\\Attribute\\ExAppRequired' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/ExAppRequired.php',  | 
                                                        |
| 130 | - 'OCP\\AppFramework\\Http\\Attribute\\FrontpageRoute' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/FrontpageRoute.php',  | 
                                                        |
| 131 | - 'OCP\\AppFramework\\Http\\Attribute\\IgnoreOpenAPI' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/IgnoreOpenAPI.php',  | 
                                                        |
| 132 | - 'OCP\\AppFramework\\Http\\Attribute\\NoAdminRequired' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/NoAdminRequired.php',  | 
                                                        |
| 133 | - 'OCP\\AppFramework\\Http\\Attribute\\NoCSRFRequired' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/NoCSRFRequired.php',  | 
                                                        |
| 134 | - 'OCP\\AppFramework\\Http\\Attribute\\OpenAPI' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/OpenAPI.php',  | 
                                                        |
| 135 | - 'OCP\\AppFramework\\Http\\Attribute\\PasswordConfirmationRequired' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/PasswordConfirmationRequired.php',  | 
                                                        |
| 136 | - 'OCP\\AppFramework\\Http\\Attribute\\PublicPage' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/PublicPage.php',  | 
                                                        |
| 137 | - 'OCP\\AppFramework\\Http\\Attribute\\Route' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/Route.php',  | 
                                                        |
| 138 | - 'OCP\\AppFramework\\Http\\Attribute\\StrictCookiesRequired' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/StrictCookiesRequired.php',  | 
                                                        |
| 139 | - 'OCP\\AppFramework\\Http\\Attribute\\SubAdminRequired' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/SubAdminRequired.php',  | 
                                                        |
| 140 | - 'OCP\\AppFramework\\Http\\Attribute\\UseSession' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/UseSession.php',  | 
                                                        |
| 141 | - 'OCP\\AppFramework\\Http\\Attribute\\UserRateLimit' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Attribute/UserRateLimit.php',  | 
                                                        |
| 142 | - 'OCP\\AppFramework\\Http\\ContentSecurityPolicy' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/ContentSecurityPolicy.php',  | 
                                                        |
| 143 | - 'OCP\\AppFramework\\Http\\DataDisplayResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/DataDisplayResponse.php',  | 
                                                        |
| 144 | - 'OCP\\AppFramework\\Http\\DataDownloadResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/DataDownloadResponse.php',  | 
                                                        |
| 145 | - 'OCP\\AppFramework\\Http\\DataResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/DataResponse.php',  | 
                                                        |
| 146 | - 'OCP\\AppFramework\\Http\\DownloadResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/DownloadResponse.php',  | 
                                                        |
| 147 | - 'OCP\\AppFramework\\Http\\EmptyContentSecurityPolicy' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/EmptyContentSecurityPolicy.php',  | 
                                                        |
| 148 | - 'OCP\\AppFramework\\Http\\EmptyFeaturePolicy' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/EmptyFeaturePolicy.php',  | 
                                                        |
| 149 | - 'OCP\\AppFramework\\Http\\Events\\BeforeLoginTemplateRenderedEvent' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Events/BeforeLoginTemplateRenderedEvent.php',  | 
                                                        |
| 150 | - 'OCP\\AppFramework\\Http\\Events\\BeforeTemplateRenderedEvent' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Events/BeforeTemplateRenderedEvent.php',  | 
                                                        |
| 151 | - 'OCP\\AppFramework\\Http\\FeaturePolicy' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/FeaturePolicy.php',  | 
                                                        |
| 152 | - 'OCP\\AppFramework\\Http\\FileDisplayResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/FileDisplayResponse.php',  | 
                                                        |
| 153 | - 'OCP\\AppFramework\\Http\\ICallbackResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/ICallbackResponse.php',  | 
                                                        |
| 154 | - 'OCP\\AppFramework\\Http\\IOutput' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/IOutput.php',  | 
                                                        |
| 155 | - 'OCP\\AppFramework\\Http\\JSONResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/JSONResponse.php',  | 
                                                        |
| 156 | - 'OCP\\AppFramework\\Http\\NotFoundResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/NotFoundResponse.php',  | 
                                                        |
| 157 | - 'OCP\\AppFramework\\Http\\ParameterOutOfRangeException' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/ParameterOutOfRangeException.php',  | 
                                                        |
| 158 | - 'OCP\\AppFramework\\Http\\RedirectResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/RedirectResponse.php',  | 
                                                        |
| 159 | - 'OCP\\AppFramework\\Http\\RedirectToDefaultAppResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/RedirectToDefaultAppResponse.php',  | 
                                                        |
| 160 | - 'OCP\\AppFramework\\Http\\Response' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Response.php',  | 
                                                        |
| 161 | - 'OCP\\AppFramework\\Http\\StandaloneTemplateResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/StandaloneTemplateResponse.php',  | 
                                                        |
| 162 | - 'OCP\\AppFramework\\Http\\StreamResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/StreamResponse.php',  | 
                                                        |
| 163 | - 'OCP\\AppFramework\\Http\\StrictContentSecurityPolicy' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/StrictContentSecurityPolicy.php',  | 
                                                        |
| 164 | - 'OCP\\AppFramework\\Http\\StrictEvalContentSecurityPolicy' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/StrictEvalContentSecurityPolicy.php',  | 
                                                        |
| 165 | - 'OCP\\AppFramework\\Http\\StrictInlineContentSecurityPolicy' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/StrictInlineContentSecurityPolicy.php',  | 
                                                        |
| 166 | - 'OCP\\AppFramework\\Http\\TemplateResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/TemplateResponse.php',  | 
                                                        |
| 167 | - 'OCP\\AppFramework\\Http\\Template\\ExternalShareMenuAction' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Template/ExternalShareMenuAction.php',  | 
                                                        |
| 168 | - 'OCP\\AppFramework\\Http\\Template\\IMenuAction' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Template/IMenuAction.php',  | 
                                                        |
| 169 | - 'OCP\\AppFramework\\Http\\Template\\LinkMenuAction' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Template/LinkMenuAction.php',  | 
                                                        |
| 170 | - 'OCP\\AppFramework\\Http\\Template\\PublicTemplateResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Template/PublicTemplateResponse.php',  | 
                                                        |
| 171 | - 'OCP\\AppFramework\\Http\\Template\\SimpleMenuAction' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/Template/SimpleMenuAction.php',  | 
                                                        |
| 172 | - 'OCP\\AppFramework\\Http\\TextPlainResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/TextPlainResponse.php',  | 
                                                        |
| 173 | - 'OCP\\AppFramework\\Http\\TooManyRequestsResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/TooManyRequestsResponse.php',  | 
                                                        |
| 174 | - 'OCP\\AppFramework\\Http\\ZipResponse' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Http/ZipResponse.php',  | 
                                                        |
| 175 | - 'OCP\\AppFramework\\IAppContainer' => __DIR__ . '/../../..' . '/lib/public/AppFramework/IAppContainer.php',  | 
                                                        |
| 176 | - 'OCP\\AppFramework\\Middleware' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Middleware.php',  | 
                                                        |
| 177 | - 'OCP\\AppFramework\\OCSController' => __DIR__ . '/../../..' . '/lib/public/AppFramework/OCSController.php',  | 
                                                        |
| 178 | - 'OCP\\AppFramework\\OCS\\OCSBadRequestException' => __DIR__ . '/../../..' . '/lib/public/AppFramework/OCS/OCSBadRequestException.php',  | 
                                                        |
| 179 | - 'OCP\\AppFramework\\OCS\\OCSException' => __DIR__ . '/../../..' . '/lib/public/AppFramework/OCS/OCSException.php',  | 
                                                        |
| 180 | - 'OCP\\AppFramework\\OCS\\OCSForbiddenException' => __DIR__ . '/../../..' . '/lib/public/AppFramework/OCS/OCSForbiddenException.php',  | 
                                                        |
| 181 | - 'OCP\\AppFramework\\OCS\\OCSNotFoundException' => __DIR__ . '/../../..' . '/lib/public/AppFramework/OCS/OCSNotFoundException.php',  | 
                                                        |
| 182 | - 'OCP\\AppFramework\\OCS\\OCSPreconditionFailedException' => __DIR__ . '/../../..' . '/lib/public/AppFramework/OCS/OCSPreconditionFailedException.php',  | 
                                                        |
| 183 | - 'OCP\\AppFramework\\PublicShareController' => __DIR__ . '/../../..' . '/lib/public/AppFramework/PublicShareController.php',  | 
                                                        |
| 184 | - 'OCP\\AppFramework\\QueryException' => __DIR__ . '/../../..' . '/lib/public/AppFramework/QueryException.php',  | 
                                                        |
| 185 | - 'OCP\\AppFramework\\Services\\IAppConfig' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Services/IAppConfig.php',  | 
                                                        |
| 186 | - 'OCP\\AppFramework\\Services\\IInitialState' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Services/IInitialState.php',  | 
                                                        |
| 187 | - 'OCP\\AppFramework\\Services\\InitialStateProvider' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Services/InitialStateProvider.php',  | 
                                                        |
| 188 | - 'OCP\\AppFramework\\Utility\\IControllerMethodReflector' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Utility/IControllerMethodReflector.php',  | 
                                                        |
| 189 | - 'OCP\\AppFramework\\Utility\\ITimeFactory' => __DIR__ . '/../../..' . '/lib/public/AppFramework/Utility/ITimeFactory.php',  | 
                                                        |
| 190 | - 'OCP\\App\\AppPathNotFoundException' => __DIR__ . '/../../..' . '/lib/public/App/AppPathNotFoundException.php',  | 
                                                        |
| 191 | - 'OCP\\App\\Events\\AppDisableEvent' => __DIR__ . '/../../..' . '/lib/public/App/Events/AppDisableEvent.php',  | 
                                                        |
| 192 | - 'OCP\\App\\Events\\AppEnableEvent' => __DIR__ . '/../../..' . '/lib/public/App/Events/AppEnableEvent.php',  | 
                                                        |
| 193 | - 'OCP\\App\\Events\\AppUpdateEvent' => __DIR__ . '/../../..' . '/lib/public/App/Events/AppUpdateEvent.php',  | 
                                                        |
| 194 | - 'OCP\\App\\IAppManager' => __DIR__ . '/../../..' . '/lib/public/App/IAppManager.php',  | 
                                                        |
| 195 | - 'OCP\\App\\ManagerEvent' => __DIR__ . '/../../..' . '/lib/public/App/ManagerEvent.php',  | 
                                                        |
| 196 | - 'OCP\\Authentication\\Events\\AnyLoginFailedEvent' => __DIR__ . '/../../..' . '/lib/public/Authentication/Events/AnyLoginFailedEvent.php',  | 
                                                        |
| 197 | - 'OCP\\Authentication\\Events\\LoginFailedEvent' => __DIR__ . '/../../..' . '/lib/public/Authentication/Events/LoginFailedEvent.php',  | 
                                                        |
| 198 | - 'OCP\\Authentication\\Exceptions\\CredentialsUnavailableException' => __DIR__ . '/../../..' . '/lib/public/Authentication/Exceptions/CredentialsUnavailableException.php',  | 
                                                        |
| 199 | - 'OCP\\Authentication\\Exceptions\\ExpiredTokenException' => __DIR__ . '/../../..' . '/lib/public/Authentication/Exceptions/ExpiredTokenException.php',  | 
                                                        |
| 200 | - 'OCP\\Authentication\\Exceptions\\InvalidTokenException' => __DIR__ . '/../../..' . '/lib/public/Authentication/Exceptions/InvalidTokenException.php',  | 
                                                        |
| 201 | - 'OCP\\Authentication\\Exceptions\\PasswordUnavailableException' => __DIR__ . '/../../..' . '/lib/public/Authentication/Exceptions/PasswordUnavailableException.php',  | 
                                                        |
| 202 | - 'OCP\\Authentication\\Exceptions\\WipeTokenException' => __DIR__ . '/../../..' . '/lib/public/Authentication/Exceptions/WipeTokenException.php',  | 
                                                        |
| 203 | - 'OCP\\Authentication\\IAlternativeLogin' => __DIR__ . '/../../..' . '/lib/public/Authentication/IAlternativeLogin.php',  | 
                                                        |
| 204 | - 'OCP\\Authentication\\IApacheBackend' => __DIR__ . '/../../..' . '/lib/public/Authentication/IApacheBackend.php',  | 
                                                        |
| 205 | - 'OCP\\Authentication\\IProvideUserSecretBackend' => __DIR__ . '/../../..' . '/lib/public/Authentication/IProvideUserSecretBackend.php',  | 
                                                        |
| 206 | - 'OCP\\Authentication\\LoginCredentials\\ICredentials' => __DIR__ . '/../../..' . '/lib/public/Authentication/LoginCredentials/ICredentials.php',  | 
                                                        |
| 207 | - 'OCP\\Authentication\\LoginCredentials\\IStore' => __DIR__ . '/../../..' . '/lib/public/Authentication/LoginCredentials/IStore.php',  | 
                                                        |
| 208 | - 'OCP\\Authentication\\Token\\IProvider' => __DIR__ . '/../../..' . '/lib/public/Authentication/Token/IProvider.php',  | 
                                                        |
| 209 | - 'OCP\\Authentication\\Token\\IToken' => __DIR__ . '/../../..' . '/lib/public/Authentication/Token/IToken.php',  | 
                                                        |
| 210 | - 'OCP\\Authentication\\TwoFactorAuth\\ALoginSetupController' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/ALoginSetupController.php',  | 
                                                        |
| 211 | - 'OCP\\Authentication\\TwoFactorAuth\\IActivatableAtLogin' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/IActivatableAtLogin.php',  | 
                                                        |
| 212 | - 'OCP\\Authentication\\TwoFactorAuth\\IActivatableByAdmin' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/IActivatableByAdmin.php',  | 
                                                        |
| 213 | - 'OCP\\Authentication\\TwoFactorAuth\\IDeactivatableByAdmin' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/IDeactivatableByAdmin.php',  | 
                                                        |
| 214 | - 'OCP\\Authentication\\TwoFactorAuth\\ILoginSetupProvider' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/ILoginSetupProvider.php',  | 
                                                        |
| 215 | - 'OCP\\Authentication\\TwoFactorAuth\\IPersonalProviderSettings' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/IPersonalProviderSettings.php',  | 
                                                        |
| 216 | - 'OCP\\Authentication\\TwoFactorAuth\\IProvider' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/IProvider.php',  | 
                                                        |
| 217 | - 'OCP\\Authentication\\TwoFactorAuth\\IProvidesCustomCSP' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/IProvidesCustomCSP.php',  | 
                                                        |
| 218 | - 'OCP\\Authentication\\TwoFactorAuth\\IProvidesIcons' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/IProvidesIcons.php',  | 
                                                        |
| 219 | - 'OCP\\Authentication\\TwoFactorAuth\\IProvidesPersonalSettings' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/IProvidesPersonalSettings.php',  | 
                                                        |
| 220 | - 'OCP\\Authentication\\TwoFactorAuth\\IRegistry' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/IRegistry.php',  | 
                                                        |
| 221 | - 'OCP\\Authentication\\TwoFactorAuth\\RegistryEvent' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/RegistryEvent.php',  | 
                                                        |
| 222 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorException' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/TwoFactorException.php',  | 
                                                        |
| 223 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderChallengeFailed' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderChallengeFailed.php',  | 
                                                        |
| 224 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderChallengePassed' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderChallengePassed.php',  | 
                                                        |
| 225 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderDisabled' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderDisabled.php',  | 
                                                        |
| 226 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserDisabled' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserDisabled.php',  | 
                                                        |
| 227 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserEnabled' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserEnabled.php',  | 
                                                        |
| 228 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserRegistered' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserRegistered.php',  | 
                                                        |
| 229 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserUnregistered' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserUnregistered.php',  | 
                                                        |
| 230 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderUserDeleted' => __DIR__ . '/../../..' . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderUserDeleted.php',  | 
                                                        |
| 231 | - 'OCP\\AutoloadNotAllowedException' => __DIR__ . '/../../..' . '/lib/public/AutoloadNotAllowedException.php',  | 
                                                        |
| 232 | - 'OCP\\BackgroundJob\\IJob' => __DIR__ . '/../../..' . '/lib/public/BackgroundJob/IJob.php',  | 
                                                        |
| 233 | - 'OCP\\BackgroundJob\\IJobList' => __DIR__ . '/../../..' . '/lib/public/BackgroundJob/IJobList.php',  | 
                                                        |
| 234 | - 'OCP\\BackgroundJob\\IParallelAwareJob' => __DIR__ . '/../../..' . '/lib/public/BackgroundJob/IParallelAwareJob.php',  | 
                                                        |
| 235 | - 'OCP\\BackgroundJob\\Job' => __DIR__ . '/../../..' . '/lib/public/BackgroundJob/Job.php',  | 
                                                        |
| 236 | - 'OCP\\BackgroundJob\\QueuedJob' => __DIR__ . '/../../..' . '/lib/public/BackgroundJob/QueuedJob.php',  | 
                                                        |
| 237 | - 'OCP\\BackgroundJob\\TimedJob' => __DIR__ . '/../../..' . '/lib/public/BackgroundJob/TimedJob.php',  | 
                                                        |
| 238 | - 'OCP\\BeforeSabrePubliclyLoadedEvent' => __DIR__ . '/../../..' . '/lib/public/BeforeSabrePubliclyLoadedEvent.php',  | 
                                                        |
| 239 | - 'OCP\\Broadcast\\Events\\IBroadcastEvent' => __DIR__ . '/../../..' . '/lib/public/Broadcast/Events/IBroadcastEvent.php',  | 
                                                        |
| 240 | - 'OCP\\Cache\\CappedMemoryCache' => __DIR__ . '/../../..' . '/lib/public/Cache/CappedMemoryCache.php',  | 
                                                        |
| 241 | - 'OCP\\Calendar\\BackendTemporarilyUnavailableException' => __DIR__ . '/../../..' . '/lib/public/Calendar/BackendTemporarilyUnavailableException.php',  | 
                                                        |
| 242 | - 'OCP\\Calendar\\CalendarEventStatus' => __DIR__ . '/../../..' . '/lib/public/Calendar/CalendarEventStatus.php',  | 
                                                        |
| 243 | - 'OCP\\Calendar\\Events\\AbstractCalendarObjectEvent' => __DIR__ . '/../../..' . '/lib/public/Calendar/Events/AbstractCalendarObjectEvent.php',  | 
                                                        |
| 244 | - 'OCP\\Calendar\\Events\\CalendarObjectCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/Calendar/Events/CalendarObjectCreatedEvent.php',  | 
                                                        |
| 245 | - 'OCP\\Calendar\\Events\\CalendarObjectDeletedEvent' => __DIR__ . '/../../..' . '/lib/public/Calendar/Events/CalendarObjectDeletedEvent.php',  | 
                                                        |
| 246 | - 'OCP\\Calendar\\Events\\CalendarObjectMovedEvent' => __DIR__ . '/../../..' . '/lib/public/Calendar/Events/CalendarObjectMovedEvent.php',  | 
                                                        |
| 247 | - 'OCP\\Calendar\\Events\\CalendarObjectMovedToTrashEvent' => __DIR__ . '/../../..' . '/lib/public/Calendar/Events/CalendarObjectMovedToTrashEvent.php',  | 
                                                        |
| 248 | - 'OCP\\Calendar\\Events\\CalendarObjectRestoredEvent' => __DIR__ . '/../../..' . '/lib/public/Calendar/Events/CalendarObjectRestoredEvent.php',  | 
                                                        |
| 249 | - 'OCP\\Calendar\\Events\\CalendarObjectUpdatedEvent' => __DIR__ . '/../../..' . '/lib/public/Calendar/Events/CalendarObjectUpdatedEvent.php',  | 
                                                        |
| 250 | - 'OCP\\Calendar\\Exceptions\\CalendarException' => __DIR__ . '/../../..' . '/lib/public/Calendar/Exceptions/CalendarException.php',  | 
                                                        |
| 251 | - 'OCP\\Calendar\\IAvailabilityResult' => __DIR__ . '/../../..' . '/lib/public/Calendar/IAvailabilityResult.php',  | 
                                                        |
| 252 | - 'OCP\\Calendar\\ICalendar' => __DIR__ . '/../../..' . '/lib/public/Calendar/ICalendar.php',  | 
                                                        |
| 253 | - 'OCP\\Calendar\\ICalendarEventBuilder' => __DIR__ . '/../../..' . '/lib/public/Calendar/ICalendarEventBuilder.php',  | 
                                                        |
| 254 | - 'OCP\\Calendar\\ICalendarIsShared' => __DIR__ . '/../../..' . '/lib/public/Calendar/ICalendarIsShared.php',  | 
                                                        |
| 255 | - 'OCP\\Calendar\\ICalendarIsWritable' => __DIR__ . '/../../..' . '/lib/public/Calendar/ICalendarIsWritable.php',  | 
                                                        |
| 256 | - 'OCP\\Calendar\\ICalendarProvider' => __DIR__ . '/../../..' . '/lib/public/Calendar/ICalendarProvider.php',  | 
                                                        |
| 257 | - 'OCP\\Calendar\\ICalendarQuery' => __DIR__ . '/../../..' . '/lib/public/Calendar/ICalendarQuery.php',  | 
                                                        |
| 258 | - 'OCP\\Calendar\\ICreateFromString' => __DIR__ . '/../../..' . '/lib/public/Calendar/ICreateFromString.php',  | 
                                                        |
| 259 | - 'OCP\\Calendar\\IHandleImipMessage' => __DIR__ . '/../../..' . '/lib/public/Calendar/IHandleImipMessage.php',  | 
                                                        |
| 260 | - 'OCP\\Calendar\\IManager' => __DIR__ . '/../../..' . '/lib/public/Calendar/IManager.php',  | 
                                                        |
| 261 | - 'OCP\\Calendar\\IMetadataProvider' => __DIR__ . '/../../..' . '/lib/public/Calendar/IMetadataProvider.php',  | 
                                                        |
| 262 | - 'OCP\\Calendar\\Resource\\IBackend' => __DIR__ . '/../../..' . '/lib/public/Calendar/Resource/IBackend.php',  | 
                                                        |
| 263 | - 'OCP\\Calendar\\Resource\\IManager' => __DIR__ . '/../../..' . '/lib/public/Calendar/Resource/IManager.php',  | 
                                                        |
| 264 | - 'OCP\\Calendar\\Resource\\IResource' => __DIR__ . '/../../..' . '/lib/public/Calendar/Resource/IResource.php',  | 
                                                        |
| 265 | - 'OCP\\Calendar\\Resource\\IResourceMetadata' => __DIR__ . '/../../..' . '/lib/public/Calendar/Resource/IResourceMetadata.php',  | 
                                                        |
| 266 | - 'OCP\\Calendar\\Room\\IBackend' => __DIR__ . '/../../..' . '/lib/public/Calendar/Room/IBackend.php',  | 
                                                        |
| 267 | - 'OCP\\Calendar\\Room\\IManager' => __DIR__ . '/../../..' . '/lib/public/Calendar/Room/IManager.php',  | 
                                                        |
| 268 | - 'OCP\\Calendar\\Room\\IRoom' => __DIR__ . '/../../..' . '/lib/public/Calendar/Room/IRoom.php',  | 
                                                        |
| 269 | - 'OCP\\Calendar\\Room\\IRoomMetadata' => __DIR__ . '/../../..' . '/lib/public/Calendar/Room/IRoomMetadata.php',  | 
                                                        |
| 270 | - 'OCP\\Capabilities\\ICapability' => __DIR__ . '/../../..' . '/lib/public/Capabilities/ICapability.php',  | 
                                                        |
| 271 | - 'OCP\\Capabilities\\IInitialStateExcludedCapability' => __DIR__ . '/../../..' . '/lib/public/Capabilities/IInitialStateExcludedCapability.php',  | 
                                                        |
| 272 | - 'OCP\\Capabilities\\IPublicCapability' => __DIR__ . '/../../..' . '/lib/public/Capabilities/IPublicCapability.php',  | 
                                                        |
| 273 | - 'OCP\\Collaboration\\AutoComplete\\AutoCompleteEvent' => __DIR__ . '/../../..' . '/lib/public/Collaboration/AutoComplete/AutoCompleteEvent.php',  | 
                                                        |
| 274 | - 'OCP\\Collaboration\\AutoComplete\\AutoCompleteFilterEvent' => __DIR__ . '/../../..' . '/lib/public/Collaboration/AutoComplete/AutoCompleteFilterEvent.php',  | 
                                                        |
| 275 | - 'OCP\\Collaboration\\AutoComplete\\IManager' => __DIR__ . '/../../..' . '/lib/public/Collaboration/AutoComplete/IManager.php',  | 
                                                        |
| 276 | - 'OCP\\Collaboration\\AutoComplete\\ISorter' => __DIR__ . '/../../..' . '/lib/public/Collaboration/AutoComplete/ISorter.php',  | 
                                                        |
| 277 | - 'OCP\\Collaboration\\Collaborators\\ISearch' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Collaborators/ISearch.php',  | 
                                                        |
| 278 | - 'OCP\\Collaboration\\Collaborators\\ISearchPlugin' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Collaborators/ISearchPlugin.php',  | 
                                                        |
| 279 | - 'OCP\\Collaboration\\Collaborators\\ISearchResult' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Collaborators/ISearchResult.php',  | 
                                                        |
| 280 | - 'OCP\\Collaboration\\Collaborators\\SearchResultType' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Collaborators/SearchResultType.php',  | 
                                                        |
| 281 | - 'OCP\\Collaboration\\Reference\\ADiscoverableReferenceProvider' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/ADiscoverableReferenceProvider.php',  | 
                                                        |
| 282 | - 'OCP\\Collaboration\\Reference\\IDiscoverableReferenceProvider' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/IDiscoverableReferenceProvider.php',  | 
                                                        |
| 283 | - 'OCP\\Collaboration\\Reference\\IPublicReferenceProvider' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/IPublicReferenceProvider.php',  | 
                                                        |
| 284 | - 'OCP\\Collaboration\\Reference\\IReference' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/IReference.php',  | 
                                                        |
| 285 | - 'OCP\\Collaboration\\Reference\\IReferenceManager' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/IReferenceManager.php',  | 
                                                        |
| 286 | - 'OCP\\Collaboration\\Reference\\IReferenceProvider' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/IReferenceProvider.php',  | 
                                                        |
| 287 | - 'OCP\\Collaboration\\Reference\\ISearchableReferenceProvider' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/ISearchableReferenceProvider.php',  | 
                                                        |
| 288 | - 'OCP\\Collaboration\\Reference\\LinkReferenceProvider' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/LinkReferenceProvider.php',  | 
                                                        |
| 289 | - 'OCP\\Collaboration\\Reference\\Reference' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/Reference.php',  | 
                                                        |
| 290 | - 'OCP\\Collaboration\\Reference\\RenderReferenceEvent' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Reference/RenderReferenceEvent.php',  | 
                                                        |
| 291 | - 'OCP\\Collaboration\\Resources\\CollectionException' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Resources/CollectionException.php',  | 
                                                        |
| 292 | - 'OCP\\Collaboration\\Resources\\ICollection' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Resources/ICollection.php',  | 
                                                        |
| 293 | - 'OCP\\Collaboration\\Resources\\IManager' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Resources/IManager.php',  | 
                                                        |
| 294 | - 'OCP\\Collaboration\\Resources\\IProvider' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Resources/IProvider.php',  | 
                                                        |
| 295 | - 'OCP\\Collaboration\\Resources\\IProviderManager' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Resources/IProviderManager.php',  | 
                                                        |
| 296 | - 'OCP\\Collaboration\\Resources\\IResource' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Resources/IResource.php',  | 
                                                        |
| 297 | - 'OCP\\Collaboration\\Resources\\LoadAdditionalScriptsEvent' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Resources/LoadAdditionalScriptsEvent.php',  | 
                                                        |
| 298 | - 'OCP\\Collaboration\\Resources\\ResourceException' => __DIR__ . '/../../..' . '/lib/public/Collaboration/Resources/ResourceException.php',  | 
                                                        |
| 299 | - 'OCP\\Color' => __DIR__ . '/../../..' . '/lib/public/Color.php',  | 
                                                        |
| 300 | - 'OCP\\Command\\IBus' => __DIR__ . '/../../..' . '/lib/public/Command/IBus.php',  | 
                                                        |
| 301 | - 'OCP\\Command\\ICommand' => __DIR__ . '/../../..' . '/lib/public/Command/ICommand.php',  | 
                                                        |
| 302 | - 'OCP\\Comments\\CommentsEntityEvent' => __DIR__ . '/../../..' . '/lib/public/Comments/CommentsEntityEvent.php',  | 
                                                        |
| 303 | - 'OCP\\Comments\\CommentsEvent' => __DIR__ . '/../../..' . '/lib/public/Comments/CommentsEvent.php',  | 
                                                        |
| 304 | - 'OCP\\Comments\\IComment' => __DIR__ . '/../../..' . '/lib/public/Comments/IComment.php',  | 
                                                        |
| 305 | - 'OCP\\Comments\\ICommentsEventHandler' => __DIR__ . '/../../..' . '/lib/public/Comments/ICommentsEventHandler.php',  | 
                                                        |
| 306 | - 'OCP\\Comments\\ICommentsManager' => __DIR__ . '/../../..' . '/lib/public/Comments/ICommentsManager.php',  | 
                                                        |
| 307 | - 'OCP\\Comments\\ICommentsManagerFactory' => __DIR__ . '/../../..' . '/lib/public/Comments/ICommentsManagerFactory.php',  | 
                                                        |
| 308 | - 'OCP\\Comments\\IllegalIDChangeException' => __DIR__ . '/../../..' . '/lib/public/Comments/IllegalIDChangeException.php',  | 
                                                        |
| 309 | - 'OCP\\Comments\\MessageTooLongException' => __DIR__ . '/../../..' . '/lib/public/Comments/MessageTooLongException.php',  | 
                                                        |
| 310 | - 'OCP\\Comments\\NotFoundException' => __DIR__ . '/../../..' . '/lib/public/Comments/NotFoundException.php',  | 
                                                        |
| 311 | - 'OCP\\Common\\Exception\\NotFoundException' => __DIR__ . '/../../..' . '/lib/public/Common/Exception/NotFoundException.php',  | 
                                                        |
| 312 | - 'OCP\\Config\\BeforePreferenceDeletedEvent' => __DIR__ . '/../../..' . '/lib/public/Config/BeforePreferenceDeletedEvent.php',  | 
                                                        |
| 313 | - 'OCP\\Config\\BeforePreferenceSetEvent' => __DIR__ . '/../../..' . '/lib/public/Config/BeforePreferenceSetEvent.php',  | 
                                                        |
| 314 | - 'OCP\\Console\\ConsoleEvent' => __DIR__ . '/../../..' . '/lib/public/Console/ConsoleEvent.php',  | 
                                                        |
| 315 | - 'OCP\\Console\\ReservedOptions' => __DIR__ . '/../../..' . '/lib/public/Console/ReservedOptions.php',  | 
                                                        |
| 316 | - 'OCP\\Constants' => __DIR__ . '/../../..' . '/lib/public/Constants.php',  | 
                                                        |
| 317 | - 'OCP\\Contacts\\ContactsMenu\\IAction' => __DIR__ . '/../../..' . '/lib/public/Contacts/ContactsMenu/IAction.php',  | 
                                                        |
| 318 | - 'OCP\\Contacts\\ContactsMenu\\IActionFactory' => __DIR__ . '/../../..' . '/lib/public/Contacts/ContactsMenu/IActionFactory.php',  | 
                                                        |
| 319 | - 'OCP\\Contacts\\ContactsMenu\\IBulkProvider' => __DIR__ . '/../../..' . '/lib/public/Contacts/ContactsMenu/IBulkProvider.php',  | 
                                                        |
| 320 | - 'OCP\\Contacts\\ContactsMenu\\IContactsStore' => __DIR__ . '/../../..' . '/lib/public/Contacts/ContactsMenu/IContactsStore.php',  | 
                                                        |
| 321 | - 'OCP\\Contacts\\ContactsMenu\\IEntry' => __DIR__ . '/../../..' . '/lib/public/Contacts/ContactsMenu/IEntry.php',  | 
                                                        |
| 322 | - 'OCP\\Contacts\\ContactsMenu\\ILinkAction' => __DIR__ . '/../../..' . '/lib/public/Contacts/ContactsMenu/ILinkAction.php',  | 
                                                        |
| 323 | - 'OCP\\Contacts\\ContactsMenu\\IProvider' => __DIR__ . '/../../..' . '/lib/public/Contacts/ContactsMenu/IProvider.php',  | 
                                                        |
| 324 | - 'OCP\\Contacts\\Events\\ContactInteractedWithEvent' => __DIR__ . '/../../..' . '/lib/public/Contacts/Events/ContactInteractedWithEvent.php',  | 
                                                        |
| 325 | - 'OCP\\Contacts\\IManager' => __DIR__ . '/../../..' . '/lib/public/Contacts/IManager.php',  | 
                                                        |
| 326 | - 'OCP\\DB\\Events\\AddMissingColumnsEvent' => __DIR__ . '/../../..' . '/lib/public/DB/Events/AddMissingColumnsEvent.php',  | 
                                                        |
| 327 | - 'OCP\\DB\\Events\\AddMissingIndicesEvent' => __DIR__ . '/../../..' . '/lib/public/DB/Events/AddMissingIndicesEvent.php',  | 
                                                        |
| 328 | - 'OCP\\DB\\Events\\AddMissingPrimaryKeyEvent' => __DIR__ . '/../../..' . '/lib/public/DB/Events/AddMissingPrimaryKeyEvent.php',  | 
                                                        |
| 329 | - 'OCP\\DB\\Exception' => __DIR__ . '/../../..' . '/lib/public/DB/Exception.php',  | 
                                                        |
| 330 | - 'OCP\\DB\\IPreparedStatement' => __DIR__ . '/../../..' . '/lib/public/DB/IPreparedStatement.php',  | 
                                                        |
| 331 | - 'OCP\\DB\\IResult' => __DIR__ . '/../../..' . '/lib/public/DB/IResult.php',  | 
                                                        |
| 332 | - 'OCP\\DB\\ISchemaWrapper' => __DIR__ . '/../../..' . '/lib/public/DB/ISchemaWrapper.php',  | 
                                                        |
| 333 | - 'OCP\\DB\\QueryBuilder\\ICompositeExpression' => __DIR__ . '/../../..' . '/lib/public/DB/QueryBuilder/ICompositeExpression.php',  | 
                                                        |
| 334 | - 'OCP\\DB\\QueryBuilder\\IExpressionBuilder' => __DIR__ . '/../../..' . '/lib/public/DB/QueryBuilder/IExpressionBuilder.php',  | 
                                                        |
| 335 | - 'OCP\\DB\\QueryBuilder\\IFunctionBuilder' => __DIR__ . '/../../..' . '/lib/public/DB/QueryBuilder/IFunctionBuilder.php',  | 
                                                        |
| 336 | - 'OCP\\DB\\QueryBuilder\\ILiteral' => __DIR__ . '/../../..' . '/lib/public/DB/QueryBuilder/ILiteral.php',  | 
                                                        |
| 337 | - 'OCP\\DB\\QueryBuilder\\IParameter' => __DIR__ . '/../../..' . '/lib/public/DB/QueryBuilder/IParameter.php',  | 
                                                        |
| 338 | - 'OCP\\DB\\QueryBuilder\\IQueryBuilder' => __DIR__ . '/../../..' . '/lib/public/DB/QueryBuilder/IQueryBuilder.php',  | 
                                                        |
| 339 | - 'OCP\\DB\\QueryBuilder\\IQueryFunction' => __DIR__ . '/../../..' . '/lib/public/DB/QueryBuilder/IQueryFunction.php',  | 
                                                        |
| 340 | - 'OCP\\DB\\QueryBuilder\\Sharded\\IShardMapper' => __DIR__ . '/../../..' . '/lib/public/DB/QueryBuilder/Sharded/IShardMapper.php',  | 
                                                        |
| 341 | - 'OCP\\DB\\Types' => __DIR__ . '/../../..' . '/lib/public/DB/Types.php',  | 
                                                        |
| 342 | - 'OCP\\Dashboard\\IAPIWidget' => __DIR__ . '/../../..' . '/lib/public/Dashboard/IAPIWidget.php',  | 
                                                        |
| 343 | - 'OCP\\Dashboard\\IAPIWidgetV2' => __DIR__ . '/../../..' . '/lib/public/Dashboard/IAPIWidgetV2.php',  | 
                                                        |
| 344 | - 'OCP\\Dashboard\\IButtonWidget' => __DIR__ . '/../../..' . '/lib/public/Dashboard/IButtonWidget.php',  | 
                                                        |
| 345 | - 'OCP\\Dashboard\\IConditionalWidget' => __DIR__ . '/../../..' . '/lib/public/Dashboard/IConditionalWidget.php',  | 
                                                        |
| 346 | - 'OCP\\Dashboard\\IIconWidget' => __DIR__ . '/../../..' . '/lib/public/Dashboard/IIconWidget.php',  | 
                                                        |
| 347 | - 'OCP\\Dashboard\\IManager' => __DIR__ . '/../../..' . '/lib/public/Dashboard/IManager.php',  | 
                                                        |
| 348 | - 'OCP\\Dashboard\\IOptionWidget' => __DIR__ . '/../../..' . '/lib/public/Dashboard/IOptionWidget.php',  | 
                                                        |
| 349 | - 'OCP\\Dashboard\\IReloadableWidget' => __DIR__ . '/../../..' . '/lib/public/Dashboard/IReloadableWidget.php',  | 
                                                        |
| 350 | - 'OCP\\Dashboard\\IWidget' => __DIR__ . '/../../..' . '/lib/public/Dashboard/IWidget.php',  | 
                                                        |
| 351 | - 'OCP\\Dashboard\\Model\\WidgetButton' => __DIR__ . '/../../..' . '/lib/public/Dashboard/Model/WidgetButton.php',  | 
                                                        |
| 352 | - 'OCP\\Dashboard\\Model\\WidgetItem' => __DIR__ . '/../../..' . '/lib/public/Dashboard/Model/WidgetItem.php',  | 
                                                        |
| 353 | - 'OCP\\Dashboard\\Model\\WidgetItems' => __DIR__ . '/../../..' . '/lib/public/Dashboard/Model/WidgetItems.php',  | 
                                                        |
| 354 | - 'OCP\\Dashboard\\Model\\WidgetOptions' => __DIR__ . '/../../..' . '/lib/public/Dashboard/Model/WidgetOptions.php',  | 
                                                        |
| 355 | - 'OCP\\DataCollector\\AbstractDataCollector' => __DIR__ . '/../../..' . '/lib/public/DataCollector/AbstractDataCollector.php',  | 
                                                        |
| 356 | - 'OCP\\DataCollector\\IDataCollector' => __DIR__ . '/../../..' . '/lib/public/DataCollector/IDataCollector.php',  | 
                                                        |
| 357 | - 'OCP\\Defaults' => __DIR__ . '/../../..' . '/lib/public/Defaults.php',  | 
                                                        |
| 358 | - 'OCP\\Diagnostics\\IEvent' => __DIR__ . '/../../..' . '/lib/public/Diagnostics/IEvent.php',  | 
                                                        |
| 359 | - 'OCP\\Diagnostics\\IEventLogger' => __DIR__ . '/../../..' . '/lib/public/Diagnostics/IEventLogger.php',  | 
                                                        |
| 360 | - 'OCP\\Diagnostics\\IQuery' => __DIR__ . '/../../..' . '/lib/public/Diagnostics/IQuery.php',  | 
                                                        |
| 361 | - 'OCP\\Diagnostics\\IQueryLogger' => __DIR__ . '/../../..' . '/lib/public/Diagnostics/IQueryLogger.php',  | 
                                                        |
| 362 | - 'OCP\\DirectEditing\\ACreateEmpty' => __DIR__ . '/../../..' . '/lib/public/DirectEditing/ACreateEmpty.php',  | 
                                                        |
| 363 | - 'OCP\\DirectEditing\\ACreateFromTemplate' => __DIR__ . '/../../..' . '/lib/public/DirectEditing/ACreateFromTemplate.php',  | 
                                                        |
| 364 | - 'OCP\\DirectEditing\\ATemplate' => __DIR__ . '/../../..' . '/lib/public/DirectEditing/ATemplate.php',  | 
                                                        |
| 365 | - 'OCP\\DirectEditing\\IEditor' => __DIR__ . '/../../..' . '/lib/public/DirectEditing/IEditor.php',  | 
                                                        |
| 366 | - 'OCP\\DirectEditing\\IManager' => __DIR__ . '/../../..' . '/lib/public/DirectEditing/IManager.php',  | 
                                                        |
| 367 | - 'OCP\\DirectEditing\\IToken' => __DIR__ . '/../../..' . '/lib/public/DirectEditing/IToken.php',  | 
                                                        |
| 368 | - 'OCP\\DirectEditing\\RegisterDirectEditorEvent' => __DIR__ . '/../../..' . '/lib/public/DirectEditing/RegisterDirectEditorEvent.php',  | 
                                                        |
| 369 | - 'OCP\\Encryption\\Exceptions\\GenericEncryptionException' => __DIR__ . '/../../..' . '/lib/public/Encryption/Exceptions/GenericEncryptionException.php',  | 
                                                        |
| 370 | - 'OCP\\Encryption\\IEncryptionModule' => __DIR__ . '/../../..' . '/lib/public/Encryption/IEncryptionModule.php',  | 
                                                        |
| 371 | - 'OCP\\Encryption\\IFile' => __DIR__ . '/../../..' . '/lib/public/Encryption/IFile.php',  | 
                                                        |
| 372 | - 'OCP\\Encryption\\IManager' => __DIR__ . '/../../..' . '/lib/public/Encryption/IManager.php',  | 
                                                        |
| 373 | - 'OCP\\Encryption\\Keys\\IStorage' => __DIR__ . '/../../..' . '/lib/public/Encryption/Keys/IStorage.php',  | 
                                                        |
| 374 | - 'OCP\\EventDispatcher\\ABroadcastedEvent' => __DIR__ . '/../../..' . '/lib/public/EventDispatcher/ABroadcastedEvent.php',  | 
                                                        |
| 375 | - 'OCP\\EventDispatcher\\Event' => __DIR__ . '/../../..' . '/lib/public/EventDispatcher/Event.php',  | 
                                                        |
| 376 | - 'OCP\\EventDispatcher\\GenericEvent' => __DIR__ . '/../../..' . '/lib/public/EventDispatcher/GenericEvent.php',  | 
                                                        |
| 377 | - 'OCP\\EventDispatcher\\IEventDispatcher' => __DIR__ . '/../../..' . '/lib/public/EventDispatcher/IEventDispatcher.php',  | 
                                                        |
| 378 | - 'OCP\\EventDispatcher\\IEventListener' => __DIR__ . '/../../..' . '/lib/public/EventDispatcher/IEventListener.php',  | 
                                                        |
| 379 | - 'OCP\\EventDispatcher\\IWebhookCompatibleEvent' => __DIR__ . '/../../..' . '/lib/public/EventDispatcher/IWebhookCompatibleEvent.php',  | 
                                                        |
| 380 | - 'OCP\\EventDispatcher\\JsonSerializer' => __DIR__ . '/../../..' . '/lib/public/EventDispatcher/JsonSerializer.php',  | 
                                                        |
| 381 | - 'OCP\\Exceptions\\AbortedEventException' => __DIR__ . '/../../..' . '/lib/public/Exceptions/AbortedEventException.php',  | 
                                                        |
| 382 | - 'OCP\\Exceptions\\AppConfigException' => __DIR__ . '/../../..' . '/lib/public/Exceptions/AppConfigException.php',  | 
                                                        |
| 383 | - 'OCP\\Exceptions\\AppConfigIncorrectTypeException' => __DIR__ . '/../../..' . '/lib/public/Exceptions/AppConfigIncorrectTypeException.php',  | 
                                                        |
| 384 | - 'OCP\\Exceptions\\AppConfigTypeConflictException' => __DIR__ . '/../../..' . '/lib/public/Exceptions/AppConfigTypeConflictException.php',  | 
                                                        |
| 385 | - 'OCP\\Exceptions\\AppConfigUnknownKeyException' => __DIR__ . '/../../..' . '/lib/public/Exceptions/AppConfigUnknownKeyException.php',  | 
                                                        |
| 386 | - 'OCP\\Federation\\Events\\TrustedServerRemovedEvent' => __DIR__ . '/../../..' . '/lib/public/Federation/Events/TrustedServerRemovedEvent.php',  | 
                                                        |
| 387 | - 'OCP\\Federation\\Exceptions\\ActionNotSupportedException' => __DIR__ . '/../../..' . '/lib/public/Federation/Exceptions/ActionNotSupportedException.php',  | 
                                                        |
| 388 | - 'OCP\\Federation\\Exceptions\\AuthenticationFailedException' => __DIR__ . '/../../..' . '/lib/public/Federation/Exceptions/AuthenticationFailedException.php',  | 
                                                        |
| 389 | - 'OCP\\Federation\\Exceptions\\BadRequestException' => __DIR__ . '/../../..' . '/lib/public/Federation/Exceptions/BadRequestException.php',  | 
                                                        |
| 390 | - 'OCP\\Federation\\Exceptions\\ProviderAlreadyExistsException' => __DIR__ . '/../../..' . '/lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php',  | 
                                                        |
| 391 | - 'OCP\\Federation\\Exceptions\\ProviderCouldNotAddShareException' => __DIR__ . '/../../..' . '/lib/public/Federation/Exceptions/ProviderCouldNotAddShareException.php',  | 
                                                        |
| 392 | - 'OCP\\Federation\\Exceptions\\ProviderDoesNotExistsException' => __DIR__ . '/../../..' . '/lib/public/Federation/Exceptions/ProviderDoesNotExistsException.php',  | 
                                                        |
| 393 | - 'OCP\\Federation\\ICloudFederationFactory' => __DIR__ . '/../../..' . '/lib/public/Federation/ICloudFederationFactory.php',  | 
                                                        |
| 394 | - 'OCP\\Federation\\ICloudFederationNotification' => __DIR__ . '/../../..' . '/lib/public/Federation/ICloudFederationNotification.php',  | 
                                                        |
| 395 | - 'OCP\\Federation\\ICloudFederationProvider' => __DIR__ . '/../../..' . '/lib/public/Federation/ICloudFederationProvider.php',  | 
                                                        |
| 396 | - 'OCP\\Federation\\ICloudFederationProviderManager' => __DIR__ . '/../../..' . '/lib/public/Federation/ICloudFederationProviderManager.php',  | 
                                                        |
| 397 | - 'OCP\\Federation\\ICloudFederationShare' => __DIR__ . '/../../..' . '/lib/public/Federation/ICloudFederationShare.php',  | 
                                                        |
| 398 | - 'OCP\\Federation\\ICloudId' => __DIR__ . '/../../..' . '/lib/public/Federation/ICloudId.php',  | 
                                                        |
| 399 | - 'OCP\\Federation\\ICloudIdManager' => __DIR__ . '/../../..' . '/lib/public/Federation/ICloudIdManager.php',  | 
                                                        |
| 400 | - 'OCP\\Files' => __DIR__ . '/../../..' . '/lib/public/Files.php',  | 
                                                        |
| 401 | - 'OCP\\FilesMetadata\\AMetadataEvent' => __DIR__ . '/../../..' . '/lib/public/FilesMetadata/AMetadataEvent.php',  | 
                                                        |
| 402 | - 'OCP\\FilesMetadata\\Event\\MetadataBackgroundEvent' => __DIR__ . '/../../..' . '/lib/public/FilesMetadata/Event/MetadataBackgroundEvent.php',  | 
                                                        |
| 403 | - 'OCP\\FilesMetadata\\Event\\MetadataLiveEvent' => __DIR__ . '/../../..' . '/lib/public/FilesMetadata/Event/MetadataLiveEvent.php',  | 
                                                        |
| 404 | - 'OCP\\FilesMetadata\\Event\\MetadataNamedEvent' => __DIR__ . '/../../..' . '/lib/public/FilesMetadata/Event/MetadataNamedEvent.php',  | 
                                                        |
| 405 | - 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataException' => __DIR__ . '/../../..' . '/lib/public/FilesMetadata/Exceptions/FilesMetadataException.php',  | 
                                                        |
| 406 | - 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataKeyFormatException' => __DIR__ . '/../../..' . '/lib/public/FilesMetadata/Exceptions/FilesMetadataKeyFormatException.php',  | 
                                                        |
| 407 | - 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataNotFoundException' => __DIR__ . '/../../..' . '/lib/public/FilesMetadata/Exceptions/FilesMetadataNotFoundException.php',  | 
                                                        |
| 408 | - 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataTypeException' => __DIR__ . '/../../..' . '/lib/public/FilesMetadata/Exceptions/FilesMetadataTypeException.php',  | 
                                                        |
| 409 | - 'OCP\\FilesMetadata\\IFilesMetadataManager' => __DIR__ . '/../../..' . '/lib/public/FilesMetadata/IFilesMetadataManager.php',  | 
                                                        |
| 410 | - 'OCP\\FilesMetadata\\IMetadataQuery' => __DIR__ . '/../../..' . '/lib/public/FilesMetadata/IMetadataQuery.php',  | 
                                                        |
| 411 | - 'OCP\\FilesMetadata\\Model\\IFilesMetadata' => __DIR__ . '/../../..' . '/lib/public/FilesMetadata/Model/IFilesMetadata.php',  | 
                                                        |
| 412 | - 'OCP\\FilesMetadata\\Model\\IMetadataValueWrapper' => __DIR__ . '/../../..' . '/lib/public/FilesMetadata/Model/IMetadataValueWrapper.php',  | 
                                                        |
| 413 | - 'OCP\\Files\\AlreadyExistsException' => __DIR__ . '/../../..' . '/lib/public/Files/AlreadyExistsException.php',  | 
                                                        |
| 414 | - 'OCP\\Files\\AppData\\IAppDataFactory' => __DIR__ . '/../../..' . '/lib/public/Files/AppData/IAppDataFactory.php',  | 
                                                        |
| 415 | - 'OCP\\Files\\Cache\\AbstractCacheEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/AbstractCacheEvent.php',  | 
                                                        |
| 416 | - 'OCP\\Files\\Cache\\CacheEntryInsertedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/CacheEntryInsertedEvent.php',  | 
                                                        |
| 417 | - 'OCP\\Files\\Cache\\CacheEntryRemovedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/CacheEntryRemovedEvent.php',  | 
                                                        |
| 418 | - 'OCP\\Files\\Cache\\CacheEntryUpdatedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/CacheEntryUpdatedEvent.php',  | 
                                                        |
| 419 | - 'OCP\\Files\\Cache\\CacheInsertEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/CacheInsertEvent.php',  | 
                                                        |
| 420 | - 'OCP\\Files\\Cache\\CacheUpdateEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/CacheUpdateEvent.php',  | 
                                                        |
| 421 | - 'OCP\\Files\\Cache\\ICache' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/ICache.php',  | 
                                                        |
| 422 | - 'OCP\\Files\\Cache\\ICacheEntry' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/ICacheEntry.php',  | 
                                                        |
| 423 | - 'OCP\\Files\\Cache\\ICacheEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/ICacheEvent.php',  | 
                                                        |
| 424 | - 'OCP\\Files\\Cache\\IFileAccess' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/IFileAccess.php',  | 
                                                        |
| 425 | - 'OCP\\Files\\Cache\\IPropagator' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/IPropagator.php',  | 
                                                        |
| 426 | - 'OCP\\Files\\Cache\\IScanner' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/IScanner.php',  | 
                                                        |
| 427 | - 'OCP\\Files\\Cache\\IUpdater' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/IUpdater.php',  | 
                                                        |
| 428 | - 'OCP\\Files\\Cache\\IWatcher' => __DIR__ . '/../../..' . '/lib/public/Files/Cache/IWatcher.php',  | 
                                                        |
| 429 | - 'OCP\\Files\\Config\\ICachedMountFileInfo' => __DIR__ . '/../../..' . '/lib/public/Files/Config/ICachedMountFileInfo.php',  | 
                                                        |
| 430 | - 'OCP\\Files\\Config\\ICachedMountInfo' => __DIR__ . '/../../..' . '/lib/public/Files/Config/ICachedMountInfo.php',  | 
                                                        |
| 431 | - 'OCP\\Files\\Config\\IHomeMountProvider' => __DIR__ . '/../../..' . '/lib/public/Files/Config/IHomeMountProvider.php',  | 
                                                        |
| 432 | - 'OCP\\Files\\Config\\IMountProvider' => __DIR__ . '/../../..' . '/lib/public/Files/Config/IMountProvider.php',  | 
                                                        |
| 433 | - 'OCP\\Files\\Config\\IMountProviderCollection' => __DIR__ . '/../../..' . '/lib/public/Files/Config/IMountProviderCollection.php',  | 
                                                        |
| 434 | - 'OCP\\Files\\Config\\IRootMountProvider' => __DIR__ . '/../../..' . '/lib/public/Files/Config/IRootMountProvider.php',  | 
                                                        |
| 435 | - 'OCP\\Files\\Config\\IUserMountCache' => __DIR__ . '/../../..' . '/lib/public/Files/Config/IUserMountCache.php',  | 
                                                        |
| 436 | - 'OCP\\Files\\ConnectionLostException' => __DIR__ . '/../../..' . '/lib/public/Files/ConnectionLostException.php',  | 
                                                        |
| 437 | - 'OCP\\Files\\Conversion\\ConversionMimeProvider' => __DIR__ . '/../../..' . '/lib/public/Files/Conversion/ConversionMimeProvider.php',  | 
                                                        |
| 438 | - 'OCP\\Files\\Conversion\\IConversionManager' => __DIR__ . '/../../..' . '/lib/public/Files/Conversion/IConversionManager.php',  | 
                                                        |
| 439 | - 'OCP\\Files\\Conversion\\IConversionProvider' => __DIR__ . '/../../..' . '/lib/public/Files/Conversion/IConversionProvider.php',  | 
                                                        |
| 440 | - 'OCP\\Files\\DavUtil' => __DIR__ . '/../../..' . '/lib/public/Files/DavUtil.php',  | 
                                                        |
| 441 | - 'OCP\\Files\\EmptyFileNameException' => __DIR__ . '/../../..' . '/lib/public/Files/EmptyFileNameException.php',  | 
                                                        |
| 442 | - 'OCP\\Files\\EntityTooLargeException' => __DIR__ . '/../../..' . '/lib/public/Files/EntityTooLargeException.php',  | 
                                                        |
| 443 | - 'OCP\\Files\\Events\\BeforeDirectFileDownloadEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/BeforeDirectFileDownloadEvent.php',  | 
                                                        |
| 444 | - 'OCP\\Files\\Events\\BeforeFileScannedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/BeforeFileScannedEvent.php',  | 
                                                        |
| 445 | - 'OCP\\Files\\Events\\BeforeFileSystemSetupEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/BeforeFileSystemSetupEvent.php',  | 
                                                        |
| 446 | - 'OCP\\Files\\Events\\BeforeFolderScannedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/BeforeFolderScannedEvent.php',  | 
                                                        |
| 447 | - 'OCP\\Files\\Events\\BeforeZipCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/BeforeZipCreatedEvent.php',  | 
                                                        |
| 448 | - 'OCP\\Files\\Events\\FileCacheUpdated' => __DIR__ . '/../../..' . '/lib/public/Files/Events/FileCacheUpdated.php',  | 
                                                        |
| 449 | - 'OCP\\Files\\Events\\FileScannedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/FileScannedEvent.php',  | 
                                                        |
| 450 | - 'OCP\\Files\\Events\\FolderScannedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/FolderScannedEvent.php',  | 
                                                        |
| 451 | - 'OCP\\Files\\Events\\InvalidateMountCacheEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/InvalidateMountCacheEvent.php',  | 
                                                        |
| 452 | - 'OCP\\Files\\Events\\NodeAddedToCache' => __DIR__ . '/../../..' . '/lib/public/Files/Events/NodeAddedToCache.php',  | 
                                                        |
| 453 | - 'OCP\\Files\\Events\\NodeAddedToFavorite' => __DIR__ . '/../../..' . '/lib/public/Files/Events/NodeAddedToFavorite.php',  | 
                                                        |
| 454 | - 'OCP\\Files\\Events\\NodeRemovedFromCache' => __DIR__ . '/../../..' . '/lib/public/Files/Events/NodeRemovedFromCache.php',  | 
                                                        |
| 455 | - 'OCP\\Files\\Events\\NodeRemovedFromFavorite' => __DIR__ . '/../../..' . '/lib/public/Files/Events/NodeRemovedFromFavorite.php',  | 
                                                        |
| 456 | - 'OCP\\Files\\Events\\Node\\AbstractNodeEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/AbstractNodeEvent.php',  | 
                                                        |
| 457 | - 'OCP\\Files\\Events\\Node\\AbstractNodesEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/AbstractNodesEvent.php',  | 
                                                        |
| 458 | - 'OCP\\Files\\Events\\Node\\BeforeNodeCopiedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/BeforeNodeCopiedEvent.php',  | 
                                                        |
| 459 | - 'OCP\\Files\\Events\\Node\\BeforeNodeCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/BeforeNodeCreatedEvent.php',  | 
                                                        |
| 460 | - 'OCP\\Files\\Events\\Node\\BeforeNodeDeletedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/BeforeNodeDeletedEvent.php',  | 
                                                        |
| 461 | - 'OCP\\Files\\Events\\Node\\BeforeNodeReadEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/BeforeNodeReadEvent.php',  | 
                                                        |
| 462 | - 'OCP\\Files\\Events\\Node\\BeforeNodeRenamedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/BeforeNodeRenamedEvent.php',  | 
                                                        |
| 463 | - 'OCP\\Files\\Events\\Node\\BeforeNodeTouchedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/BeforeNodeTouchedEvent.php',  | 
                                                        |
| 464 | - 'OCP\\Files\\Events\\Node\\BeforeNodeWrittenEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/BeforeNodeWrittenEvent.php',  | 
                                                        |
| 465 | - 'OCP\\Files\\Events\\Node\\FilesystemTornDownEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/FilesystemTornDownEvent.php',  | 
                                                        |
| 466 | - 'OCP\\Files\\Events\\Node\\NodeCopiedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/NodeCopiedEvent.php',  | 
                                                        |
| 467 | - 'OCP\\Files\\Events\\Node\\NodeCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/NodeCreatedEvent.php',  | 
                                                        |
| 468 | - 'OCP\\Files\\Events\\Node\\NodeDeletedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/NodeDeletedEvent.php',  | 
                                                        |
| 469 | - 'OCP\\Files\\Events\\Node\\NodeRenamedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/NodeRenamedEvent.php',  | 
                                                        |
| 470 | - 'OCP\\Files\\Events\\Node\\NodeTouchedEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/NodeTouchedEvent.php',  | 
                                                        |
| 471 | - 'OCP\\Files\\Events\\Node\\NodeWrittenEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Events/Node/NodeWrittenEvent.php',  | 
                                                        |
| 472 | - 'OCP\\Files\\File' => __DIR__ . '/../../..' . '/lib/public/Files/File.php',  | 
                                                        |
| 473 | - 'OCP\\Files\\FileInfo' => __DIR__ . '/../../..' . '/lib/public/Files/FileInfo.php',  | 
                                                        |
| 474 | - 'OCP\\Files\\FileNameTooLongException' => __DIR__ . '/../../..' . '/lib/public/Files/FileNameTooLongException.php',  | 
                                                        |
| 475 | - 'OCP\\Files\\Folder' => __DIR__ . '/../../..' . '/lib/public/Files/Folder.php',  | 
                                                        |
| 476 | - 'OCP\\Files\\ForbiddenException' => __DIR__ . '/../../..' . '/lib/public/Files/ForbiddenException.php',  | 
                                                        |
| 477 | - 'OCP\\Files\\GenericFileException' => __DIR__ . '/../../..' . '/lib/public/Files/GenericFileException.php',  | 
                                                        |
| 478 | - 'OCP\\Files\\IAppData' => __DIR__ . '/../../..' . '/lib/public/Files/IAppData.php',  | 
                                                        |
| 479 | - 'OCP\\Files\\IFilenameValidator' => __DIR__ . '/../../..' . '/lib/public/Files/IFilenameValidator.php',  | 
                                                        |
| 480 | - 'OCP\\Files\\IHomeStorage' => __DIR__ . '/../../..' . '/lib/public/Files/IHomeStorage.php',  | 
                                                        |
| 481 | - 'OCP\\Files\\IMimeTypeDetector' => __DIR__ . '/../../..' . '/lib/public/Files/IMimeTypeDetector.php',  | 
                                                        |
| 482 | - 'OCP\\Files\\IMimeTypeLoader' => __DIR__ . '/../../..' . '/lib/public/Files/IMimeTypeLoader.php',  | 
                                                        |
| 483 | - 'OCP\\Files\\IRootFolder' => __DIR__ . '/../../..' . '/lib/public/Files/IRootFolder.php',  | 
                                                        |
| 484 | - 'OCP\\Files\\InvalidCharacterInPathException' => __DIR__ . '/../../..' . '/lib/public/Files/InvalidCharacterInPathException.php',  | 
                                                        |
| 485 | - 'OCP\\Files\\InvalidContentException' => __DIR__ . '/../../..' . '/lib/public/Files/InvalidContentException.php',  | 
                                                        |
| 486 | - 'OCP\\Files\\InvalidDirectoryException' => __DIR__ . '/../../..' . '/lib/public/Files/InvalidDirectoryException.php',  | 
                                                        |
| 487 | - 'OCP\\Files\\InvalidPathException' => __DIR__ . '/../../..' . '/lib/public/Files/InvalidPathException.php',  | 
                                                        |
| 488 | - 'OCP\\Files\\LockNotAcquiredException' => __DIR__ . '/../../..' . '/lib/public/Files/LockNotAcquiredException.php',  | 
                                                        |
| 489 | - 'OCP\\Files\\Lock\\ILock' => __DIR__ . '/../../..' . '/lib/public/Files/Lock/ILock.php',  | 
                                                        |
| 490 | - 'OCP\\Files\\Lock\\ILockManager' => __DIR__ . '/../../..' . '/lib/public/Files/Lock/ILockManager.php',  | 
                                                        |
| 491 | - 'OCP\\Files\\Lock\\ILockProvider' => __DIR__ . '/../../..' . '/lib/public/Files/Lock/ILockProvider.php',  | 
                                                        |
| 492 | - 'OCP\\Files\\Lock\\LockContext' => __DIR__ . '/../../..' . '/lib/public/Files/Lock/LockContext.php',  | 
                                                        |
| 493 | - 'OCP\\Files\\Lock\\NoLockProviderException' => __DIR__ . '/../../..' . '/lib/public/Files/Lock/NoLockProviderException.php',  | 
                                                        |
| 494 | - 'OCP\\Files\\Lock\\OwnerLockedException' => __DIR__ . '/../../..' . '/lib/public/Files/Lock/OwnerLockedException.php',  | 
                                                        |
| 495 | - 'OCP\\Files\\Mount\\IMountManager' => __DIR__ . '/../../..' . '/lib/public/Files/Mount/IMountManager.php',  | 
                                                        |
| 496 | - 'OCP\\Files\\Mount\\IMountPoint' => __DIR__ . '/../../..' . '/lib/public/Files/Mount/IMountPoint.php',  | 
                                                        |
| 497 | - 'OCP\\Files\\Mount\\IMovableMount' => __DIR__ . '/../../..' . '/lib/public/Files/Mount/IMovableMount.php',  | 
                                                        |
| 498 | - 'OCP\\Files\\Mount\\IShareOwnerlessMount' => __DIR__ . '/../../..' . '/lib/public/Files/Mount/IShareOwnerlessMount.php',  | 
                                                        |
| 499 | - 'OCP\\Files\\Mount\\ISystemMountPoint' => __DIR__ . '/../../..' . '/lib/public/Files/Mount/ISystemMountPoint.php',  | 
                                                        |
| 500 | - 'OCP\\Files\\Node' => __DIR__ . '/../../..' . '/lib/public/Files/Node.php',  | 
                                                        |
| 501 | - 'OCP\\Files\\NotEnoughSpaceException' => __DIR__ . '/../../..' . '/lib/public/Files/NotEnoughSpaceException.php',  | 
                                                        |
| 502 | - 'OCP\\Files\\NotFoundException' => __DIR__ . '/../../..' . '/lib/public/Files/NotFoundException.php',  | 
                                                        |
| 503 | - 'OCP\\Files\\NotPermittedException' => __DIR__ . '/../../..' . '/lib/public/Files/NotPermittedException.php',  | 
                                                        |
| 504 | - 'OCP\\Files\\Notify\\IChange' => __DIR__ . '/../../..' . '/lib/public/Files/Notify/IChange.php',  | 
                                                        |
| 505 | - 'OCP\\Files\\Notify\\INotifyHandler' => __DIR__ . '/../../..' . '/lib/public/Files/Notify/INotifyHandler.php',  | 
                                                        |
| 506 | - 'OCP\\Files\\Notify\\IRenameChange' => __DIR__ . '/../../..' . '/lib/public/Files/Notify/IRenameChange.php',  | 
                                                        |
| 507 | - 'OCP\\Files\\ObjectStore\\IObjectStore' => __DIR__ . '/../../..' . '/lib/public/Files/ObjectStore/IObjectStore.php',  | 
                                                        |
| 508 | - 'OCP\\Files\\ObjectStore\\IObjectStoreMetaData' => __DIR__ . '/../../..' . '/lib/public/Files/ObjectStore/IObjectStoreMetaData.php',  | 
                                                        |
| 509 | - 'OCP\\Files\\ObjectStore\\IObjectStoreMultiPartUpload' => __DIR__ . '/../../..' . '/lib/public/Files/ObjectStore/IObjectStoreMultiPartUpload.php',  | 
                                                        |
| 510 | - 'OCP\\Files\\ReservedWordException' => __DIR__ . '/../../..' . '/lib/public/Files/ReservedWordException.php',  | 
                                                        |
| 511 | - 'OCP\\Files\\Search\\ISearchBinaryOperator' => __DIR__ . '/../../..' . '/lib/public/Files/Search/ISearchBinaryOperator.php',  | 
                                                        |
| 512 | - 'OCP\\Files\\Search\\ISearchComparison' => __DIR__ . '/../../..' . '/lib/public/Files/Search/ISearchComparison.php',  | 
                                                        |
| 513 | - 'OCP\\Files\\Search\\ISearchOperator' => __DIR__ . '/../../..' . '/lib/public/Files/Search/ISearchOperator.php',  | 
                                                        |
| 514 | - 'OCP\\Files\\Search\\ISearchOrder' => __DIR__ . '/../../..' . '/lib/public/Files/Search/ISearchOrder.php',  | 
                                                        |
| 515 | - 'OCP\\Files\\Search\\ISearchQuery' => __DIR__ . '/../../..' . '/lib/public/Files/Search/ISearchQuery.php',  | 
                                                        |
| 516 | - 'OCP\\Files\\SimpleFS\\ISimpleFile' => __DIR__ . '/../../..' . '/lib/public/Files/SimpleFS/ISimpleFile.php',  | 
                                                        |
| 517 | - 'OCP\\Files\\SimpleFS\\ISimpleFolder' => __DIR__ . '/../../..' . '/lib/public/Files/SimpleFS/ISimpleFolder.php',  | 
                                                        |
| 518 | - 'OCP\\Files\\SimpleFS\\ISimpleRoot' => __DIR__ . '/../../..' . '/lib/public/Files/SimpleFS/ISimpleRoot.php',  | 
                                                        |
| 519 | - 'OCP\\Files\\SimpleFS\\InMemoryFile' => __DIR__ . '/../../..' . '/lib/public/Files/SimpleFS/InMemoryFile.php',  | 
                                                        |
| 520 | - 'OCP\\Files\\StorageAuthException' => __DIR__ . '/../../..' . '/lib/public/Files/StorageAuthException.php',  | 
                                                        |
| 521 | - 'OCP\\Files\\StorageBadConfigException' => __DIR__ . '/../../..' . '/lib/public/Files/StorageBadConfigException.php',  | 
                                                        |
| 522 | - 'OCP\\Files\\StorageConnectionException' => __DIR__ . '/../../..' . '/lib/public/Files/StorageConnectionException.php',  | 
                                                        |
| 523 | - 'OCP\\Files\\StorageInvalidException' => __DIR__ . '/../../..' . '/lib/public/Files/StorageInvalidException.php',  | 
                                                        |
| 524 | - 'OCP\\Files\\StorageNotAvailableException' => __DIR__ . '/../../..' . '/lib/public/Files/StorageNotAvailableException.php',  | 
                                                        |
| 525 | - 'OCP\\Files\\StorageTimeoutException' => __DIR__ . '/../../..' . '/lib/public/Files/StorageTimeoutException.php',  | 
                                                        |
| 526 | - 'OCP\\Files\\Storage\\IChunkedFileWrite' => __DIR__ . '/../../..' . '/lib/public/Files/Storage/IChunkedFileWrite.php',  | 
                                                        |
| 527 | - 'OCP\\Files\\Storage\\IConstructableStorage' => __DIR__ . '/../../..' . '/lib/public/Files/Storage/IConstructableStorage.php',  | 
                                                        |
| 528 | - 'OCP\\Files\\Storage\\IDisableEncryptionStorage' => __DIR__ . '/../../..' . '/lib/public/Files/Storage/IDisableEncryptionStorage.php',  | 
                                                        |
| 529 | - 'OCP\\Files\\Storage\\ILockingStorage' => __DIR__ . '/../../..' . '/lib/public/Files/Storage/ILockingStorage.php',  | 
                                                        |
| 530 | - 'OCP\\Files\\Storage\\INotifyStorage' => __DIR__ . '/../../..' . '/lib/public/Files/Storage/INotifyStorage.php',  | 
                                                        |
| 531 | - 'OCP\\Files\\Storage\\IReliableEtagStorage' => __DIR__ . '/../../..' . '/lib/public/Files/Storage/IReliableEtagStorage.php',  | 
                                                        |
| 532 | - 'OCP\\Files\\Storage\\ISharedStorage' => __DIR__ . '/../../..' . '/lib/public/Files/Storage/ISharedStorage.php',  | 
                                                        |
| 533 | - 'OCP\\Files\\Storage\\IStorage' => __DIR__ . '/../../..' . '/lib/public/Files/Storage/IStorage.php',  | 
                                                        |
| 534 | - 'OCP\\Files\\Storage\\IStorageFactory' => __DIR__ . '/../../..' . '/lib/public/Files/Storage/IStorageFactory.php',  | 
                                                        |
| 535 | - 'OCP\\Files\\Storage\\IWriteStreamStorage' => __DIR__ . '/../../..' . '/lib/public/Files/Storage/IWriteStreamStorage.php',  | 
                                                        |
| 536 | - 'OCP\\Files\\Template\\BeforeGetTemplatesEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Template/BeforeGetTemplatesEvent.php',  | 
                                                        |
| 537 | - 'OCP\\Files\\Template\\Field' => __DIR__ . '/../../..' . '/lib/public/Files/Template/Field.php',  | 
                                                        |
| 538 | - 'OCP\\Files\\Template\\FieldFactory' => __DIR__ . '/../../..' . '/lib/public/Files/Template/FieldFactory.php',  | 
                                                        |
| 539 | - 'OCP\\Files\\Template\\FieldType' => __DIR__ . '/../../..' . '/lib/public/Files/Template/FieldType.php',  | 
                                                        |
| 540 | - 'OCP\\Files\\Template\\Fields\\CheckBoxField' => __DIR__ . '/../../..' . '/lib/public/Files/Template/Fields/CheckBoxField.php',  | 
                                                        |
| 541 | - 'OCP\\Files\\Template\\Fields\\RichTextField' => __DIR__ . '/../../..' . '/lib/public/Files/Template/Fields/RichTextField.php',  | 
                                                        |
| 542 | - 'OCP\\Files\\Template\\FileCreatedFromTemplateEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Template/FileCreatedFromTemplateEvent.php',  | 
                                                        |
| 543 | - 'OCP\\Files\\Template\\ICustomTemplateProvider' => __DIR__ . '/../../..' . '/lib/public/Files/Template/ICustomTemplateProvider.php',  | 
                                                        |
| 544 | - 'OCP\\Files\\Template\\ITemplateManager' => __DIR__ . '/../../..' . '/lib/public/Files/Template/ITemplateManager.php',  | 
                                                        |
| 545 | - 'OCP\\Files\\Template\\InvalidFieldTypeException' => __DIR__ . '/../../..' . '/lib/public/Files/Template/InvalidFieldTypeException.php',  | 
                                                        |
| 546 | - 'OCP\\Files\\Template\\RegisterTemplateCreatorEvent' => __DIR__ . '/../../..' . '/lib/public/Files/Template/RegisterTemplateCreatorEvent.php',  | 
                                                        |
| 547 | - 'OCP\\Files\\Template\\Template' => __DIR__ . '/../../..' . '/lib/public/Files/Template/Template.php',  | 
                                                        |
| 548 | - 'OCP\\Files\\Template\\TemplateFileCreator' => __DIR__ . '/../../..' . '/lib/public/Files/Template/TemplateFileCreator.php',  | 
                                                        |
| 549 | - 'OCP\\Files\\UnseekableException' => __DIR__ . '/../../..' . '/lib/public/Files/UnseekableException.php',  | 
                                                        |
| 550 | - 'OCP\\Files_FullTextSearch\\Model\\AFilesDocument' => __DIR__ . '/../../..' . '/lib/public/Files_FullTextSearch/Model/AFilesDocument.php',  | 
                                                        |
| 551 | - 'OCP\\FullTextSearch\\Exceptions\\FullTextSearchAppNotAvailableException' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Exceptions/FullTextSearchAppNotAvailableException.php',  | 
                                                        |
| 552 | - 'OCP\\FullTextSearch\\Exceptions\\FullTextSearchIndexNotAvailableException' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Exceptions/FullTextSearchIndexNotAvailableException.php',  | 
                                                        |
| 553 | - 'OCP\\FullTextSearch\\IFullTextSearchManager' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/IFullTextSearchManager.php',  | 
                                                        |
| 554 | - 'OCP\\FullTextSearch\\IFullTextSearchPlatform' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/IFullTextSearchPlatform.php',  | 
                                                        |
| 555 | - 'OCP\\FullTextSearch\\IFullTextSearchProvider' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/IFullTextSearchProvider.php',  | 
                                                        |
| 556 | - 'OCP\\FullTextSearch\\Model\\IDocumentAccess' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Model/IDocumentAccess.php',  | 
                                                        |
| 557 | - 'OCP\\FullTextSearch\\Model\\IIndex' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Model/IIndex.php',  | 
                                                        |
| 558 | - 'OCP\\FullTextSearch\\Model\\IIndexDocument' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Model/IIndexDocument.php',  | 
                                                        |
| 559 | - 'OCP\\FullTextSearch\\Model\\IIndexOptions' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Model/IIndexOptions.php',  | 
                                                        |
| 560 | - 'OCP\\FullTextSearch\\Model\\IRunner' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Model/IRunner.php',  | 
                                                        |
| 561 | - 'OCP\\FullTextSearch\\Model\\ISearchOption' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Model/ISearchOption.php',  | 
                                                        |
| 562 | - 'OCP\\FullTextSearch\\Model\\ISearchRequest' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Model/ISearchRequest.php',  | 
                                                        |
| 563 | - 'OCP\\FullTextSearch\\Model\\ISearchRequestSimpleQuery' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Model/ISearchRequestSimpleQuery.php',  | 
                                                        |
| 564 | - 'OCP\\FullTextSearch\\Model\\ISearchResult' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Model/ISearchResult.php',  | 
                                                        |
| 565 | - 'OCP\\FullTextSearch\\Model\\ISearchTemplate' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Model/ISearchTemplate.php',  | 
                                                        |
| 566 | - 'OCP\\FullTextSearch\\Service\\IIndexService' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Service/IIndexService.php',  | 
                                                        |
| 567 | - 'OCP\\FullTextSearch\\Service\\IProviderService' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Service/IProviderService.php',  | 
                                                        |
| 568 | - 'OCP\\FullTextSearch\\Service\\ISearchService' => __DIR__ . '/../../..' . '/lib/public/FullTextSearch/Service/ISearchService.php',  | 
                                                        |
| 569 | - 'OCP\\GlobalScale\\IConfig' => __DIR__ . '/../../..' . '/lib/public/GlobalScale/IConfig.php',  | 
                                                        |
| 570 | - 'OCP\\GroupInterface' => __DIR__ . '/../../..' . '/lib/public/GroupInterface.php',  | 
                                                        |
| 571 | - 'OCP\\Group\\Backend\\ABackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/ABackend.php',  | 
                                                        |
| 572 | - 'OCP\\Group\\Backend\\IAddToGroupBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IAddToGroupBackend.php',  | 
                                                        |
| 573 | - 'OCP\\Group\\Backend\\IBatchMethodsBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IBatchMethodsBackend.php',  | 
                                                        |
| 574 | - 'OCP\\Group\\Backend\\ICountDisabledInGroup' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/ICountDisabledInGroup.php',  | 
                                                        |
| 575 | - 'OCP\\Group\\Backend\\ICountUsersBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/ICountUsersBackend.php',  | 
                                                        |
| 576 | - 'OCP\\Group\\Backend\\ICreateGroupBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/ICreateGroupBackend.php',  | 
                                                        |
| 577 | - 'OCP\\Group\\Backend\\ICreateNamedGroupBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/ICreateNamedGroupBackend.php',  | 
                                                        |
| 578 | - 'OCP\\Group\\Backend\\IDeleteGroupBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IDeleteGroupBackend.php',  | 
                                                        |
| 579 | - 'OCP\\Group\\Backend\\IGetDisplayNameBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IGetDisplayNameBackend.php',  | 
                                                        |
| 580 | - 'OCP\\Group\\Backend\\IGroupDetailsBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IGroupDetailsBackend.php',  | 
                                                        |
| 581 | - 'OCP\\Group\\Backend\\IHideFromCollaborationBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IHideFromCollaborationBackend.php',  | 
                                                        |
| 582 | - 'OCP\\Group\\Backend\\IIsAdminBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IIsAdminBackend.php',  | 
                                                        |
| 583 | - 'OCP\\Group\\Backend\\INamedBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/INamedBackend.php',  | 
                                                        |
| 584 | - 'OCP\\Group\\Backend\\IRemoveFromGroupBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IRemoveFromGroupBackend.php',  | 
                                                        |
| 585 | - 'OCP\\Group\\Backend\\ISearchableGroupBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/ISearchableGroupBackend.php',  | 
                                                        |
| 586 | - 'OCP\\Group\\Backend\\ISetDisplayNameBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/ISetDisplayNameBackend.php',  | 
                                                        |
| 587 | - 'OCP\\Group\\Events\\BeforeGroupChangedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/BeforeGroupChangedEvent.php',  | 
                                                        |
| 588 | - 'OCP\\Group\\Events\\BeforeGroupCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/BeforeGroupCreatedEvent.php',  | 
                                                        |
| 589 | - 'OCP\\Group\\Events\\BeforeGroupDeletedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/BeforeGroupDeletedEvent.php',  | 
                                                        |
| 590 | - 'OCP\\Group\\Events\\BeforeUserAddedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/BeforeUserAddedEvent.php',  | 
                                                        |
| 591 | - 'OCP\\Group\\Events\\BeforeUserRemovedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/BeforeUserRemovedEvent.php',  | 
                                                        |
| 592 | - 'OCP\\Group\\Events\\GroupChangedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/GroupChangedEvent.php',  | 
                                                        |
| 593 | - 'OCP\\Group\\Events\\GroupCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/GroupCreatedEvent.php',  | 
                                                        |
| 594 | - 'OCP\\Group\\Events\\GroupDeletedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/GroupDeletedEvent.php',  | 
                                                        |
| 595 | - 'OCP\\Group\\Events\\SubAdminAddedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/SubAdminAddedEvent.php',  | 
                                                        |
| 596 | - 'OCP\\Group\\Events\\SubAdminRemovedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/SubAdminRemovedEvent.php',  | 
                                                        |
| 597 | - 'OCP\\Group\\Events\\UserAddedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/UserAddedEvent.php',  | 
                                                        |
| 598 | - 'OCP\\Group\\Events\\UserRemovedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/UserRemovedEvent.php',  | 
                                                        |
| 599 | - 'OCP\\Group\\ISubAdmin' => __DIR__ . '/../../..' . '/lib/public/Group/ISubAdmin.php',  | 
                                                        |
| 600 | - 'OCP\\HintException' => __DIR__ . '/../../..' . '/lib/public/HintException.php',  | 
                                                        |
| 601 | - 'OCP\\Http\\Client\\IClient' => __DIR__ . '/../../..' . '/lib/public/Http/Client/IClient.php',  | 
                                                        |
| 602 | - 'OCP\\Http\\Client\\IClientService' => __DIR__ . '/../../..' . '/lib/public/Http/Client/IClientService.php',  | 
                                                        |
| 603 | - 'OCP\\Http\\Client\\IPromise' => __DIR__ . '/../../..' . '/lib/public/Http/Client/IPromise.php',  | 
                                                        |
| 604 | - 'OCP\\Http\\Client\\IResponse' => __DIR__ . '/../../..' . '/lib/public/Http/Client/IResponse.php',  | 
                                                        |
| 605 | - 'OCP\\Http\\Client\\LocalServerException' => __DIR__ . '/../../..' . '/lib/public/Http/Client/LocalServerException.php',  | 
                                                        |
| 606 | - 'OCP\\Http\\WellKnown\\GenericResponse' => __DIR__ . '/../../..' . '/lib/public/Http/WellKnown/GenericResponse.php',  | 
                                                        |
| 607 | - 'OCP\\Http\\WellKnown\\IHandler' => __DIR__ . '/../../..' . '/lib/public/Http/WellKnown/IHandler.php',  | 
                                                        |
| 608 | - 'OCP\\Http\\WellKnown\\IRequestContext' => __DIR__ . '/../../..' . '/lib/public/Http/WellKnown/IRequestContext.php',  | 
                                                        |
| 609 | - 'OCP\\Http\\WellKnown\\IResponse' => __DIR__ . '/../../..' . '/lib/public/Http/WellKnown/IResponse.php',  | 
                                                        |
| 610 | - 'OCP\\Http\\WellKnown\\JrdResponse' => __DIR__ . '/../../..' . '/lib/public/Http/WellKnown/JrdResponse.php',  | 
                                                        |
| 611 | - 'OCP\\IAddressBook' => __DIR__ . '/../../..' . '/lib/public/IAddressBook.php',  | 
                                                        |
| 612 | - 'OCP\\IAddressBookEnabled' => __DIR__ . '/../../..' . '/lib/public/IAddressBookEnabled.php',  | 
                                                        |
| 613 | - 'OCP\\IAppConfig' => __DIR__ . '/../../..' . '/lib/public/IAppConfig.php',  | 
                                                        |
| 614 | - 'OCP\\IAvatar' => __DIR__ . '/../../..' . '/lib/public/IAvatar.php',  | 
                                                        |
| 615 | - 'OCP\\IAvatarManager' => __DIR__ . '/../../..' . '/lib/public/IAvatarManager.php',  | 
                                                        |
| 616 | - 'OCP\\IBinaryFinder' => __DIR__ . '/../../..' . '/lib/public/IBinaryFinder.php',  | 
                                                        |
| 617 | - 'OCP\\ICache' => __DIR__ . '/../../..' . '/lib/public/ICache.php',  | 
                                                        |
| 618 | - 'OCP\\ICacheFactory' => __DIR__ . '/../../..' . '/lib/public/ICacheFactory.php',  | 
                                                        |
| 619 | - 'OCP\\ICertificate' => __DIR__ . '/../../..' . '/lib/public/ICertificate.php',  | 
                                                        |
| 620 | - 'OCP\\ICertificateManager' => __DIR__ . '/../../..' . '/lib/public/ICertificateManager.php',  | 
                                                        |
| 621 | - 'OCP\\IConfig' => __DIR__ . '/../../..' . '/lib/public/IConfig.php',  | 
                                                        |
| 622 | - 'OCP\\IContainer' => __DIR__ . '/../../..' . '/lib/public/IContainer.php',  | 
                                                        |
| 623 | - 'OCP\\IDBConnection' => __DIR__ . '/../../..' . '/lib/public/IDBConnection.php',  | 
                                                        |
| 624 | - 'OCP\\IDateTimeFormatter' => __DIR__ . '/../../..' . '/lib/public/IDateTimeFormatter.php',  | 
                                                        |
| 625 | - 'OCP\\IDateTimeZone' => __DIR__ . '/../../..' . '/lib/public/IDateTimeZone.php',  | 
                                                        |
| 626 | - 'OCP\\IEmojiHelper' => __DIR__ . '/../../..' . '/lib/public/IEmojiHelper.php',  | 
                                                        |
| 627 | - 'OCP\\IEventSource' => __DIR__ . '/../../..' . '/lib/public/IEventSource.php',  | 
                                                        |
| 628 | - 'OCP\\IEventSourceFactory' => __DIR__ . '/../../..' . '/lib/public/IEventSourceFactory.php',  | 
                                                        |
| 629 | - 'OCP\\IGroup' => __DIR__ . '/../../..' . '/lib/public/IGroup.php',  | 
                                                        |
| 630 | - 'OCP\\IGroupManager' => __DIR__ . '/../../..' . '/lib/public/IGroupManager.php',  | 
                                                        |
| 631 | - 'OCP\\IImage' => __DIR__ . '/../../..' . '/lib/public/IImage.php',  | 
                                                        |
| 632 | - 'OCP\\IInitialStateService' => __DIR__ . '/../../..' . '/lib/public/IInitialStateService.php',  | 
                                                        |
| 633 | - 'OCP\\IL10N' => __DIR__ . '/../../..' . '/lib/public/IL10N.php',  | 
                                                        |
| 634 | - 'OCP\\ILogger' => __DIR__ . '/../../..' . '/lib/public/ILogger.php',  | 
                                                        |
| 635 | - 'OCP\\IMemcache' => __DIR__ . '/../../..' . '/lib/public/IMemcache.php',  | 
                                                        |
| 636 | - 'OCP\\IMemcacheTTL' => __DIR__ . '/../../..' . '/lib/public/IMemcacheTTL.php',  | 
                                                        |
| 637 | - 'OCP\\INavigationManager' => __DIR__ . '/../../..' . '/lib/public/INavigationManager.php',  | 
                                                        |
| 638 | - 'OCP\\IPhoneNumberUtil' => __DIR__ . '/../../..' . '/lib/public/IPhoneNumberUtil.php',  | 
                                                        |
| 639 | - 'OCP\\IPreview' => __DIR__ . '/../../..' . '/lib/public/IPreview.php',  | 
                                                        |
| 640 | - 'OCP\\IRequest' => __DIR__ . '/../../..' . '/lib/public/IRequest.php',  | 
                                                        |
| 641 | - 'OCP\\IRequestId' => __DIR__ . '/../../..' . '/lib/public/IRequestId.php',  | 
                                                        |
| 642 | - 'OCP\\IServerContainer' => __DIR__ . '/../../..' . '/lib/public/IServerContainer.php',  | 
                                                        |
| 643 | - 'OCP\\ISession' => __DIR__ . '/../../..' . '/lib/public/ISession.php',  | 
                                                        |
| 644 | - 'OCP\\IStreamImage' => __DIR__ . '/../../..' . '/lib/public/IStreamImage.php',  | 
                                                        |
| 645 | - 'OCP\\ITagManager' => __DIR__ . '/../../..' . '/lib/public/ITagManager.php',  | 
                                                        |
| 646 | - 'OCP\\ITags' => __DIR__ . '/../../..' . '/lib/public/ITags.php',  | 
                                                        |
| 647 | - 'OCP\\ITempManager' => __DIR__ . '/../../..' . '/lib/public/ITempManager.php',  | 
                                                        |
| 648 | - 'OCP\\IURLGenerator' => __DIR__ . '/../../..' . '/lib/public/IURLGenerator.php',  | 
                                                        |
| 649 | - 'OCP\\IUser' => __DIR__ . '/../../..' . '/lib/public/IUser.php',  | 
                                                        |
| 650 | - 'OCP\\IUserBackend' => __DIR__ . '/../../..' . '/lib/public/IUserBackend.php',  | 
                                                        |
| 651 | - 'OCP\\IUserManager' => __DIR__ . '/../../..' . '/lib/public/IUserManager.php',  | 
                                                        |
| 652 | - 'OCP\\IUserSession' => __DIR__ . '/../../..' . '/lib/public/IUserSession.php',  | 
                                                        |
| 653 | - 'OCP\\Image' => __DIR__ . '/../../..' . '/lib/public/Image.php',  | 
                                                        |
| 654 | - 'OCP\\L10N\\IFactory' => __DIR__ . '/../../..' . '/lib/public/L10N/IFactory.php',  | 
                                                        |
| 655 | - 'OCP\\L10N\\ILanguageIterator' => __DIR__ . '/../../..' . '/lib/public/L10N/ILanguageIterator.php',  | 
                                                        |
| 656 | - 'OCP\\LDAP\\IDeletionFlagSupport' => __DIR__ . '/../../..' . '/lib/public/LDAP/IDeletionFlagSupport.php',  | 
                                                        |
| 657 | - 'OCP\\LDAP\\ILDAPProvider' => __DIR__ . '/../../..' . '/lib/public/LDAP/ILDAPProvider.php',  | 
                                                        |
| 658 | - 'OCP\\LDAP\\ILDAPProviderFactory' => __DIR__ . '/../../..' . '/lib/public/LDAP/ILDAPProviderFactory.php',  | 
                                                        |
| 659 | - 'OCP\\Lock\\ILockingProvider' => __DIR__ . '/../../..' . '/lib/public/Lock/ILockingProvider.php',  | 
                                                        |
| 660 | - 'OCP\\Lock\\LockedException' => __DIR__ . '/../../..' . '/lib/public/Lock/LockedException.php',  | 
                                                        |
| 661 | - 'OCP\\Lock\\ManuallyLockedException' => __DIR__ . '/../../..' . '/lib/public/Lock/ManuallyLockedException.php',  | 
                                                        |
| 662 | - 'OCP\\Lockdown\\ILockdownManager' => __DIR__ . '/../../..' . '/lib/public/Lockdown/ILockdownManager.php',  | 
                                                        |
| 663 | - 'OCP\\Log\\Audit\\CriticalActionPerformedEvent' => __DIR__ . '/../../..' . '/lib/public/Log/Audit/CriticalActionPerformedEvent.php',  | 
                                                        |
| 664 | - 'OCP\\Log\\BeforeMessageLoggedEvent' => __DIR__ . '/../../..' . '/lib/public/Log/BeforeMessageLoggedEvent.php',  | 
                                                        |
| 665 | - 'OCP\\Log\\IDataLogger' => __DIR__ . '/../../..' . '/lib/public/Log/IDataLogger.php',  | 
                                                        |
| 666 | - 'OCP\\Log\\IFileBased' => __DIR__ . '/../../..' . '/lib/public/Log/IFileBased.php',  | 
                                                        |
| 667 | - 'OCP\\Log\\ILogFactory' => __DIR__ . '/../../..' . '/lib/public/Log/ILogFactory.php',  | 
                                                        |
| 668 | - 'OCP\\Log\\IWriter' => __DIR__ . '/../../..' . '/lib/public/Log/IWriter.php',  | 
                                                        |
| 669 | - 'OCP\\Log\\RotationTrait' => __DIR__ . '/../../..' . '/lib/public/Log/RotationTrait.php',  | 
                                                        |
| 670 | - 'OCP\\Mail\\Events\\BeforeMessageSent' => __DIR__ . '/../../..' . '/lib/public/Mail/Events/BeforeMessageSent.php',  | 
                                                        |
| 671 | - 'OCP\\Mail\\Headers\\AutoSubmitted' => __DIR__ . '/../../..' . '/lib/public/Mail/Headers/AutoSubmitted.php',  | 
                                                        |
| 672 | - 'OCP\\Mail\\IAttachment' => __DIR__ . '/../../..' . '/lib/public/Mail/IAttachment.php',  | 
                                                        |
| 673 | - 'OCP\\Mail\\IEMailTemplate' => __DIR__ . '/../../..' . '/lib/public/Mail/IEMailTemplate.php',  | 
                                                        |
| 674 | - 'OCP\\Mail\\IMailer' => __DIR__ . '/../../..' . '/lib/public/Mail/IMailer.php',  | 
                                                        |
| 675 | - 'OCP\\Mail\\IMessage' => __DIR__ . '/../../..' . '/lib/public/Mail/IMessage.php',  | 
                                                        |
| 676 | - 'OCP\\Mail\\Provider\\Address' => __DIR__ . '/../../..' . '/lib/public/Mail/Provider/Address.php',  | 
                                                        |
| 677 | - 'OCP\\Mail\\Provider\\Attachment' => __DIR__ . '/../../..' . '/lib/public/Mail/Provider/Attachment.php',  | 
                                                        |
| 678 | - 'OCP\\Mail\\Provider\\Exception\\Exception' => __DIR__ . '/../../..' . '/lib/public/Mail/Provider/Exception/Exception.php',  | 
                                                        |
| 679 | - 'OCP\\Mail\\Provider\\Exception\\SendException' => __DIR__ . '/../../..' . '/lib/public/Mail/Provider/Exception/SendException.php',  | 
                                                        |
| 680 | - 'OCP\\Mail\\Provider\\IAddress' => __DIR__ . '/../../..' . '/lib/public/Mail/Provider/IAddress.php',  | 
                                                        |
| 681 | - 'OCP\\Mail\\Provider\\IAttachment' => __DIR__ . '/../../..' . '/lib/public/Mail/Provider/IAttachment.php',  | 
                                                        |
| 682 | - 'OCP\\Mail\\Provider\\IManager' => __DIR__ . '/../../..' . '/lib/public/Mail/Provider/IManager.php',  | 
                                                        |
| 683 | - 'OCP\\Mail\\Provider\\IMessage' => __DIR__ . '/../../..' . '/lib/public/Mail/Provider/IMessage.php',  | 
                                                        |
| 684 | - 'OCP\\Mail\\Provider\\IMessageSend' => __DIR__ . '/../../..' . '/lib/public/Mail/Provider/IMessageSend.php',  | 
                                                        |
| 685 | - 'OCP\\Mail\\Provider\\IProvider' => __DIR__ . '/../../..' . '/lib/public/Mail/Provider/IProvider.php',  | 
                                                        |
| 686 | - 'OCP\\Mail\\Provider\\IService' => __DIR__ . '/../../..' . '/lib/public/Mail/Provider/IService.php',  | 
                                                        |
| 687 | - 'OCP\\Mail\\Provider\\Message' => __DIR__ . '/../../..' . '/lib/public/Mail/Provider/Message.php',  | 
                                                        |
| 688 | - 'OCP\\Migration\\Attributes\\AddColumn' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/AddColumn.php',  | 
                                                        |
| 689 | - 'OCP\\Migration\\Attributes\\AddIndex' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/AddIndex.php',  | 
                                                        |
| 690 | - 'OCP\\Migration\\Attributes\\ColumnMigrationAttribute' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/ColumnMigrationAttribute.php',  | 
                                                        |
| 691 | - 'OCP\\Migration\\Attributes\\ColumnType' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/ColumnType.php',  | 
                                                        |
| 692 | - 'OCP\\Migration\\Attributes\\CreateTable' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/CreateTable.php',  | 
                                                        |
| 693 | - 'OCP\\Migration\\Attributes\\DropColumn' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/DropColumn.php',  | 
                                                        |
| 694 | - 'OCP\\Migration\\Attributes\\DropIndex' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/DropIndex.php',  | 
                                                        |
| 695 | - 'OCP\\Migration\\Attributes\\DropTable' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/DropTable.php',  | 
                                                        |
| 696 | - 'OCP\\Migration\\Attributes\\GenericMigrationAttribute' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/GenericMigrationAttribute.php',  | 
                                                        |
| 697 | - 'OCP\\Migration\\Attributes\\IndexMigrationAttribute' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/IndexMigrationAttribute.php',  | 
                                                        |
| 698 | - 'OCP\\Migration\\Attributes\\IndexType' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/IndexType.php',  | 
                                                        |
| 699 | - 'OCP\\Migration\\Attributes\\MigrationAttribute' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/MigrationAttribute.php',  | 
                                                        |
| 700 | - 'OCP\\Migration\\Attributes\\ModifyColumn' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/ModifyColumn.php',  | 
                                                        |
| 701 | - 'OCP\\Migration\\Attributes\\TableMigrationAttribute' => __DIR__ . '/../../..' . '/lib/public/Migration/Attributes/TableMigrationAttribute.php',  | 
                                                        |
| 702 | - 'OCP\\Migration\\BigIntMigration' => __DIR__ . '/../../..' . '/lib/public/Migration/BigIntMigration.php',  | 
                                                        |
| 703 | - 'OCP\\Migration\\IMigrationStep' => __DIR__ . '/../../..' . '/lib/public/Migration/IMigrationStep.php',  | 
                                                        |
| 704 | - 'OCP\\Migration\\IOutput' => __DIR__ . '/../../..' . '/lib/public/Migration/IOutput.php',  | 
                                                        |
| 705 | - 'OCP\\Migration\\IRepairStep' => __DIR__ . '/../../..' . '/lib/public/Migration/IRepairStep.php',  | 
                                                        |
| 706 | - 'OCP\\Migration\\SimpleMigrationStep' => __DIR__ . '/../../..' . '/lib/public/Migration/SimpleMigrationStep.php',  | 
                                                        |
| 707 | - 'OCP\\Navigation\\Events\\LoadAdditionalEntriesEvent' => __DIR__ . '/../../..' . '/lib/public/Navigation/Events/LoadAdditionalEntriesEvent.php',  | 
                                                        |
| 708 | - 'OCP\\Notification\\AlreadyProcessedException' => __DIR__ . '/../../..' . '/lib/public/Notification/AlreadyProcessedException.php',  | 
                                                        |
| 709 | - 'OCP\\Notification\\IAction' => __DIR__ . '/../../..' . '/lib/public/Notification/IAction.php',  | 
                                                        |
| 710 | - 'OCP\\Notification\\IApp' => __DIR__ . '/../../..' . '/lib/public/Notification/IApp.php',  | 
                                                        |
| 711 | - 'OCP\\Notification\\IDeferrableApp' => __DIR__ . '/../../..' . '/lib/public/Notification/IDeferrableApp.php',  | 
                                                        |
| 712 | - 'OCP\\Notification\\IDismissableNotifier' => __DIR__ . '/../../..' . '/lib/public/Notification/IDismissableNotifier.php',  | 
                                                        |
| 713 | - 'OCP\\Notification\\IManager' => __DIR__ . '/../../..' . '/lib/public/Notification/IManager.php',  | 
                                                        |
| 714 | - 'OCP\\Notification\\INotification' => __DIR__ . '/../../..' . '/lib/public/Notification/INotification.php',  | 
                                                        |
| 715 | - 'OCP\\Notification\\INotifier' => __DIR__ . '/../../..' . '/lib/public/Notification/INotifier.php',  | 
                                                        |
| 716 | - 'OCP\\Notification\\IncompleteNotificationException' => __DIR__ . '/../../..' . '/lib/public/Notification/IncompleteNotificationException.php',  | 
                                                        |
| 717 | - 'OCP\\Notification\\IncompleteParsedNotificationException' => __DIR__ . '/../../..' . '/lib/public/Notification/IncompleteParsedNotificationException.php',  | 
                                                        |
| 718 | - 'OCP\\Notification\\InvalidValueException' => __DIR__ . '/../../..' . '/lib/public/Notification/InvalidValueException.php',  | 
                                                        |
| 719 | - 'OCP\\Notification\\UnknownNotificationException' => __DIR__ . '/../../..' . '/lib/public/Notification/UnknownNotificationException.php',  | 
                                                        |
| 720 | - 'OCP\\OCM\\Events\\ResourceTypeRegisterEvent' => __DIR__ . '/../../..' . '/lib/public/OCM/Events/ResourceTypeRegisterEvent.php',  | 
                                                        |
| 721 | - 'OCP\\OCM\\Exceptions\\OCMArgumentException' => __DIR__ . '/../../..' . '/lib/public/OCM/Exceptions/OCMArgumentException.php',  | 
                                                        |
| 722 | - 'OCP\\OCM\\Exceptions\\OCMProviderException' => __DIR__ . '/../../..' . '/lib/public/OCM/Exceptions/OCMProviderException.php',  | 
                                                        |
| 723 | - 'OCP\\OCM\\IOCMDiscoveryService' => __DIR__ . '/../../..' . '/lib/public/OCM/IOCMDiscoveryService.php',  | 
                                                        |
| 724 | - 'OCP\\OCM\\IOCMProvider' => __DIR__ . '/../../..' . '/lib/public/OCM/IOCMProvider.php',  | 
                                                        |
| 725 | - 'OCP\\OCM\\IOCMResource' => __DIR__ . '/../../..' . '/lib/public/OCM/IOCMResource.php',  | 
                                                        |
| 726 | - 'OCP\\OCS\\IDiscoveryService' => __DIR__ . '/../../..' . '/lib/public/OCS/IDiscoveryService.php',  | 
                                                        |
| 727 | - 'OCP\\PreConditionNotMetException' => __DIR__ . '/../../..' . '/lib/public/PreConditionNotMetException.php',  | 
                                                        |
| 728 | - 'OCP\\Preview\\BeforePreviewFetchedEvent' => __DIR__ . '/../../..' . '/lib/public/Preview/BeforePreviewFetchedEvent.php',  | 
                                                        |
| 729 | - 'OCP\\Preview\\IMimeIconProvider' => __DIR__ . '/../../..' . '/lib/public/Preview/IMimeIconProvider.php',  | 
                                                        |
| 730 | - 'OCP\\Preview\\IProvider' => __DIR__ . '/../../..' . '/lib/public/Preview/IProvider.php',  | 
                                                        |
| 731 | - 'OCP\\Preview\\IProviderV2' => __DIR__ . '/../../..' . '/lib/public/Preview/IProviderV2.php',  | 
                                                        |
| 732 | - 'OCP\\Preview\\IVersionedPreviewFile' => __DIR__ . '/../../..' . '/lib/public/Preview/IVersionedPreviewFile.php',  | 
                                                        |
| 733 | - 'OCP\\Profile\\BeforeTemplateRenderedEvent' => __DIR__ . '/../../..' . '/lib/public/Profile/BeforeTemplateRenderedEvent.php',  | 
                                                        |
| 734 | - 'OCP\\Profile\\ILinkAction' => __DIR__ . '/../../..' . '/lib/public/Profile/ILinkAction.php',  | 
                                                        |
| 735 | - 'OCP\\Profile\\IProfileManager' => __DIR__ . '/../../..' . '/lib/public/Profile/IProfileManager.php',  | 
                                                        |
| 736 | - 'OCP\\Profile\\ParameterDoesNotExistException' => __DIR__ . '/../../..' . '/lib/public/Profile/ParameterDoesNotExistException.php',  | 
                                                        |
| 737 | - 'OCP\\Profiler\\IProfile' => __DIR__ . '/../../..' . '/lib/public/Profiler/IProfile.php',  | 
                                                        |
| 738 | - 'OCP\\Profiler\\IProfiler' => __DIR__ . '/../../..' . '/lib/public/Profiler/IProfiler.php',  | 
                                                        |
| 739 | - 'OCP\\Remote\\Api\\IApiCollection' => __DIR__ . '/../../..' . '/lib/public/Remote/Api/IApiCollection.php',  | 
                                                        |
| 740 | - 'OCP\\Remote\\Api\\IApiFactory' => __DIR__ . '/../../..' . '/lib/public/Remote/Api/IApiFactory.php',  | 
                                                        |
| 741 | - 'OCP\\Remote\\Api\\ICapabilitiesApi' => __DIR__ . '/../../..' . '/lib/public/Remote/Api/ICapabilitiesApi.php',  | 
                                                        |
| 742 | - 'OCP\\Remote\\Api\\IUserApi' => __DIR__ . '/../../..' . '/lib/public/Remote/Api/IUserApi.php',  | 
                                                        |
| 743 | - 'OCP\\Remote\\ICredentials' => __DIR__ . '/../../..' . '/lib/public/Remote/ICredentials.php',  | 
                                                        |
| 744 | - 'OCP\\Remote\\IInstance' => __DIR__ . '/../../..' . '/lib/public/Remote/IInstance.php',  | 
                                                        |
| 745 | - 'OCP\\Remote\\IInstanceFactory' => __DIR__ . '/../../..' . '/lib/public/Remote/IInstanceFactory.php',  | 
                                                        |
| 746 | - 'OCP\\Remote\\IUser' => __DIR__ . '/../../..' . '/lib/public/Remote/IUser.php',  | 
                                                        |
| 747 | - 'OCP\\RichObjectStrings\\Definitions' => __DIR__ . '/../../..' . '/lib/public/RichObjectStrings/Definitions.php',  | 
                                                        |
| 748 | - 'OCP\\RichObjectStrings\\IRichTextFormatter' => __DIR__ . '/../../..' . '/lib/public/RichObjectStrings/IRichTextFormatter.php',  | 
                                                        |
| 749 | - 'OCP\\RichObjectStrings\\IValidator' => __DIR__ . '/../../..' . '/lib/public/RichObjectStrings/IValidator.php',  | 
                                                        |
| 750 | - 'OCP\\RichObjectStrings\\InvalidObjectExeption' => __DIR__ . '/../../..' . '/lib/public/RichObjectStrings/InvalidObjectExeption.php',  | 
                                                        |
| 751 | - 'OCP\\Route\\IRoute' => __DIR__ . '/../../..' . '/lib/public/Route/IRoute.php',  | 
                                                        |
| 752 | - 'OCP\\Route\\IRouter' => __DIR__ . '/../../..' . '/lib/public/Route/IRouter.php',  | 
                                                        |
| 753 | - 'OCP\\SabrePluginEvent' => __DIR__ . '/../../..' . '/lib/public/SabrePluginEvent.php',  | 
                                                        |
| 754 | - 'OCP\\SabrePluginException' => __DIR__ . '/../../..' . '/lib/public/SabrePluginException.php',  | 
                                                        |
| 755 | - 'OCP\\Search\\FilterDefinition' => __DIR__ . '/../../..' . '/lib/public/Search/FilterDefinition.php',  | 
                                                        |
| 756 | - 'OCP\\Search\\IFilter' => __DIR__ . '/../../..' . '/lib/public/Search/IFilter.php',  | 
                                                        |
| 757 | - 'OCP\\Search\\IFilterCollection' => __DIR__ . '/../../..' . '/lib/public/Search/IFilterCollection.php',  | 
                                                        |
| 758 | - 'OCP\\Search\\IFilteringProvider' => __DIR__ . '/../../..' . '/lib/public/Search/IFilteringProvider.php',  | 
                                                        |
| 759 | - 'OCP\\Search\\IInAppSearch' => __DIR__ . '/../../..' . '/lib/public/Search/IInAppSearch.php',  | 
                                                        |
| 760 | - 'OCP\\Search\\IProvider' => __DIR__ . '/../../..' . '/lib/public/Search/IProvider.php',  | 
                                                        |
| 761 | - 'OCP\\Search\\ISearchQuery' => __DIR__ . '/../../..' . '/lib/public/Search/ISearchQuery.php',  | 
                                                        |
| 762 | - 'OCP\\Search\\PagedProvider' => __DIR__ . '/../../..' . '/lib/public/Search/PagedProvider.php',  | 
                                                        |
| 763 | - 'OCP\\Search\\Provider' => __DIR__ . '/../../..' . '/lib/public/Search/Provider.php',  | 
                                                        |
| 764 | - 'OCP\\Search\\Result' => __DIR__ . '/../../..' . '/lib/public/Search/Result.php',  | 
                                                        |
| 765 | - 'OCP\\Search\\SearchResult' => __DIR__ . '/../../..' . '/lib/public/Search/SearchResult.php',  | 
                                                        |
| 766 | - 'OCP\\Search\\SearchResultEntry' => __DIR__ . '/../../..' . '/lib/public/Search/SearchResultEntry.php',  | 
                                                        |
| 767 | - 'OCP\\Security\\Bruteforce\\IThrottler' => __DIR__ . '/../../..' . '/lib/public/Security/Bruteforce/IThrottler.php',  | 
                                                        |
| 768 | - 'OCP\\Security\\Bruteforce\\MaxDelayReached' => __DIR__ . '/../../..' . '/lib/public/Security/Bruteforce/MaxDelayReached.php',  | 
                                                        |
| 769 | - 'OCP\\Security\\CSP\\AddContentSecurityPolicyEvent' => __DIR__ . '/../../..' . '/lib/public/Security/CSP/AddContentSecurityPolicyEvent.php',  | 
                                                        |
| 770 | - 'OCP\\Security\\Events\\GenerateSecurePasswordEvent' => __DIR__ . '/../../..' . '/lib/public/Security/Events/GenerateSecurePasswordEvent.php',  | 
                                                        |
| 771 | - 'OCP\\Security\\Events\\ValidatePasswordPolicyEvent' => __DIR__ . '/../../..' . '/lib/public/Security/Events/ValidatePasswordPolicyEvent.php',  | 
                                                        |
| 772 | - 'OCP\\Security\\FeaturePolicy\\AddFeaturePolicyEvent' => __DIR__ . '/../../..' . '/lib/public/Security/FeaturePolicy/AddFeaturePolicyEvent.php',  | 
                                                        |
| 773 | - 'OCP\\Security\\IContentSecurityPolicyManager' => __DIR__ . '/../../..' . '/lib/public/Security/IContentSecurityPolicyManager.php',  | 
                                                        |
| 774 | - 'OCP\\Security\\ICredentialsManager' => __DIR__ . '/../../..' . '/lib/public/Security/ICredentialsManager.php',  | 
                                                        |
| 775 | - 'OCP\\Security\\ICrypto' => __DIR__ . '/../../..' . '/lib/public/Security/ICrypto.php',  | 
                                                        |
| 776 | - 'OCP\\Security\\IHasher' => __DIR__ . '/../../..' . '/lib/public/Security/IHasher.php',  | 
                                                        |
| 777 | - 'OCP\\Security\\IRemoteHostValidator' => __DIR__ . '/../../..' . '/lib/public/Security/IRemoteHostValidator.php',  | 
                                                        |
| 778 | - 'OCP\\Security\\ISecureRandom' => __DIR__ . '/../../..' . '/lib/public/Security/ISecureRandom.php',  | 
                                                        |
| 779 | - 'OCP\\Security\\ITrustedDomainHelper' => __DIR__ . '/../../..' . '/lib/public/Security/ITrustedDomainHelper.php',  | 
                                                        |
| 780 | - 'OCP\\Security\\Ip\\IAddress' => __DIR__ . '/../../..' . '/lib/public/Security/Ip/IAddress.php',  | 
                                                        |
| 781 | - 'OCP\\Security\\Ip\\IFactory' => __DIR__ . '/../../..' . '/lib/public/Security/Ip/IFactory.php',  | 
                                                        |
| 782 | - 'OCP\\Security\\Ip\\IRange' => __DIR__ . '/../../..' . '/lib/public/Security/Ip/IRange.php',  | 
                                                        |
| 783 | - 'OCP\\Security\\Ip\\IRemoteAddress' => __DIR__ . '/../../..' . '/lib/public/Security/Ip/IRemoteAddress.php',  | 
                                                        |
| 784 | - 'OCP\\Security\\PasswordContext' => __DIR__ . '/../../..' . '/lib/public/Security/PasswordContext.php',  | 
                                                        |
| 785 | - 'OCP\\Security\\RateLimiting\\ILimiter' => __DIR__ . '/../../..' . '/lib/public/Security/RateLimiting/ILimiter.php',  | 
                                                        |
| 786 | - 'OCP\\Security\\RateLimiting\\IRateLimitExceededException' => __DIR__ . '/../../..' . '/lib/public/Security/RateLimiting/IRateLimitExceededException.php',  | 
                                                        |
| 787 | - 'OCP\\Security\\VerificationToken\\IVerificationToken' => __DIR__ . '/../../..' . '/lib/public/Security/VerificationToken/IVerificationToken.php',  | 
                                                        |
| 788 | - 'OCP\\Security\\VerificationToken\\InvalidTokenException' => __DIR__ . '/../../..' . '/lib/public/Security/VerificationToken/InvalidTokenException.php',  | 
                                                        |
| 789 | - 'OCP\\Server' => __DIR__ . '/../../..' . '/lib/public/Server.php',  | 
                                                        |
| 790 | - 'OCP\\ServerVersion' => __DIR__ . '/../../..' . '/lib/public/ServerVersion.php',  | 
                                                        |
| 791 | - 'OCP\\Session\\Exceptions\\SessionNotAvailableException' => __DIR__ . '/../../..' . '/lib/public/Session/Exceptions/SessionNotAvailableException.php',  | 
                                                        |
| 792 | - 'OCP\\Settings\\DeclarativeSettingsTypes' => __DIR__ . '/../../..' . '/lib/public/Settings/DeclarativeSettingsTypes.php',  | 
                                                        |
| 793 | - 'OCP\\Settings\\Events\\DeclarativeSettingsGetValueEvent' => __DIR__ . '/../../..' . '/lib/public/Settings/Events/DeclarativeSettingsGetValueEvent.php',  | 
                                                        |
| 794 | - 'OCP\\Settings\\Events\\DeclarativeSettingsRegisterFormEvent' => __DIR__ . '/../../..' . '/lib/public/Settings/Events/DeclarativeSettingsRegisterFormEvent.php',  | 
                                                        |
| 795 | - 'OCP\\Settings\\Events\\DeclarativeSettingsSetValueEvent' => __DIR__ . '/../../..' . '/lib/public/Settings/Events/DeclarativeSettingsSetValueEvent.php',  | 
                                                        |
| 796 | - 'OCP\\Settings\\IDeclarativeManager' => __DIR__ . '/../../..' . '/lib/public/Settings/IDeclarativeManager.php',  | 
                                                        |
| 797 | - 'OCP\\Settings\\IDeclarativeSettingsForm' => __DIR__ . '/../../..' . '/lib/public/Settings/IDeclarativeSettingsForm.php',  | 
                                                        |
| 798 | - 'OCP\\Settings\\IDeclarativeSettingsFormWithHandlers' => __DIR__ . '/../../..' . '/lib/public/Settings/IDeclarativeSettingsFormWithHandlers.php',  | 
                                                        |
| 799 | - 'OCP\\Settings\\IDelegatedSettings' => __DIR__ . '/../../..' . '/lib/public/Settings/IDelegatedSettings.php',  | 
                                                        |
| 800 | - 'OCP\\Settings\\IIconSection' => __DIR__ . '/../../..' . '/lib/public/Settings/IIconSection.php',  | 
                                                        |
| 801 | - 'OCP\\Settings\\IManager' => __DIR__ . '/../../..' . '/lib/public/Settings/IManager.php',  | 
                                                        |
| 802 | - 'OCP\\Settings\\ISettings' => __DIR__ . '/../../..' . '/lib/public/Settings/ISettings.php',  | 
                                                        |
| 803 | - 'OCP\\Settings\\ISubAdminSettings' => __DIR__ . '/../../..' . '/lib/public/Settings/ISubAdminSettings.php',  | 
                                                        |
| 804 | - 'OCP\\SetupCheck\\CheckServerResponseTrait' => __DIR__ . '/../../..' . '/lib/public/SetupCheck/CheckServerResponseTrait.php',  | 
                                                        |
| 805 | - 'OCP\\SetupCheck\\ISetupCheck' => __DIR__ . '/../../..' . '/lib/public/SetupCheck/ISetupCheck.php',  | 
                                                        |
| 806 | - 'OCP\\SetupCheck\\ISetupCheckManager' => __DIR__ . '/../../..' . '/lib/public/SetupCheck/ISetupCheckManager.php',  | 
                                                        |
| 807 | - 'OCP\\SetupCheck\\SetupResult' => __DIR__ . '/../../..' . '/lib/public/SetupCheck/SetupResult.php',  | 
                                                        |
| 808 | - 'OCP\\Share' => __DIR__ . '/../../..' . '/lib/public/Share.php',  | 
                                                        |
| 809 | - 'OCP\\Share\\Events\\BeforeShareCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/Share/Events/BeforeShareCreatedEvent.php',  | 
                                                        |
| 810 | - 'OCP\\Share\\Events\\BeforeShareDeletedEvent' => __DIR__ . '/../../..' . '/lib/public/Share/Events/BeforeShareDeletedEvent.php',  | 
                                                        |
| 811 | - 'OCP\\Share\\Events\\ShareAcceptedEvent' => __DIR__ . '/../../..' . '/lib/public/Share/Events/ShareAcceptedEvent.php',  | 
                                                        |
| 812 | - 'OCP\\Share\\Events\\ShareCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/Share/Events/ShareCreatedEvent.php',  | 
                                                        |
| 813 | - 'OCP\\Share\\Events\\ShareDeletedEvent' => __DIR__ . '/../../..' . '/lib/public/Share/Events/ShareDeletedEvent.php',  | 
                                                        |
| 814 | - 'OCP\\Share\\Events\\ShareDeletedFromSelfEvent' => __DIR__ . '/../../..' . '/lib/public/Share/Events/ShareDeletedFromSelfEvent.php',  | 
                                                        |
| 815 | - 'OCP\\Share\\Events\\VerifyMountPointEvent' => __DIR__ . '/../../..' . '/lib/public/Share/Events/VerifyMountPointEvent.php',  | 
                                                        |
| 816 | - 'OCP\\Share\\Exceptions\\AlreadySharedException' => __DIR__ . '/../../..' . '/lib/public/Share/Exceptions/AlreadySharedException.php',  | 
                                                        |
| 817 | - 'OCP\\Share\\Exceptions\\GenericShareException' => __DIR__ . '/../../..' . '/lib/public/Share/Exceptions/GenericShareException.php',  | 
                                                        |
| 818 | - 'OCP\\Share\\Exceptions\\IllegalIDChangeException' => __DIR__ . '/../../..' . '/lib/public/Share/Exceptions/IllegalIDChangeException.php',  | 
                                                        |
| 819 | - 'OCP\\Share\\Exceptions\\ShareNotFound' => __DIR__ . '/../../..' . '/lib/public/Share/Exceptions/ShareNotFound.php',  | 
                                                        |
| 820 | - 'OCP\\Share\\Exceptions\\ShareTokenException' => __DIR__ . '/../../..' . '/lib/public/Share/Exceptions/ShareTokenException.php',  | 
                                                        |
| 821 | - 'OCP\\Share\\IAttributes' => __DIR__ . '/../../..' . '/lib/public/Share/IAttributes.php',  | 
                                                        |
| 822 | - 'OCP\\Share\\IManager' => __DIR__ . '/../../..' . '/lib/public/Share/IManager.php',  | 
                                                        |
| 823 | - 'OCP\\Share\\IProviderFactory' => __DIR__ . '/../../..' . '/lib/public/Share/IProviderFactory.php',  | 
                                                        |
| 824 | - 'OCP\\Share\\IPublicShareTemplateFactory' => __DIR__ . '/../../..' . '/lib/public/Share/IPublicShareTemplateFactory.php',  | 
                                                        |
| 825 | - 'OCP\\Share\\IPublicShareTemplateProvider' => __DIR__ . '/../../..' . '/lib/public/Share/IPublicShareTemplateProvider.php',  | 
                                                        |
| 826 | - 'OCP\\Share\\IShare' => __DIR__ . '/../../..' . '/lib/public/Share/IShare.php',  | 
                                                        |
| 827 | - 'OCP\\Share\\IShareHelper' => __DIR__ . '/../../..' . '/lib/public/Share/IShareHelper.php',  | 
                                                        |
| 828 | - 'OCP\\Share\\IShareProvider' => __DIR__ . '/../../..' . '/lib/public/Share/IShareProvider.php',  | 
                                                        |
| 829 | - 'OCP\\Share\\IShareProviderSupportsAccept' => __DIR__ . '/../../..' . '/lib/public/Share/IShareProviderSupportsAccept.php',  | 
                                                        |
| 830 | - 'OCP\\Share\\IShareProviderWithNotification' => __DIR__ . '/../../..' . '/lib/public/Share/IShareProviderWithNotification.php',  | 
                                                        |
| 831 | - 'OCP\\Share_Backend' => __DIR__ . '/../../..' . '/lib/public/Share_Backend.php',  | 
                                                        |
| 832 | - 'OCP\\Share_Backend_Collection' => __DIR__ . '/../../..' . '/lib/public/Share_Backend_Collection.php',  | 
                                                        |
| 833 | - 'OCP\\Share_Backend_File_Dependent' => __DIR__ . '/../../..' . '/lib/public/Share_Backend_File_Dependent.php',  | 
                                                        |
| 834 | - 'OCP\\SpeechToText\\Events\\AbstractTranscriptionEvent' => __DIR__ . '/../../..' . '/lib/public/SpeechToText/Events/AbstractTranscriptionEvent.php',  | 
                                                        |
| 835 | - 'OCP\\SpeechToText\\Events\\TranscriptionFailedEvent' => __DIR__ . '/../../..' . '/lib/public/SpeechToText/Events/TranscriptionFailedEvent.php',  | 
                                                        |
| 836 | - 'OCP\\SpeechToText\\Events\\TranscriptionSuccessfulEvent' => __DIR__ . '/../../..' . '/lib/public/SpeechToText/Events/TranscriptionSuccessfulEvent.php',  | 
                                                        |
| 837 | - 'OCP\\SpeechToText\\ISpeechToTextManager' => __DIR__ . '/../../..' . '/lib/public/SpeechToText/ISpeechToTextManager.php',  | 
                                                        |
| 838 | - 'OCP\\SpeechToText\\ISpeechToTextProvider' => __DIR__ . '/../../..' . '/lib/public/SpeechToText/ISpeechToTextProvider.php',  | 
                                                        |
| 839 | - 'OCP\\SpeechToText\\ISpeechToTextProviderWithId' => __DIR__ . '/../../..' . '/lib/public/SpeechToText/ISpeechToTextProviderWithId.php',  | 
                                                        |
| 840 | - 'OCP\\SpeechToText\\ISpeechToTextProviderWithUserId' => __DIR__ . '/../../..' . '/lib/public/SpeechToText/ISpeechToTextProviderWithUserId.php',  | 
                                                        |
| 841 | - 'OCP\\Support\\CrashReport\\ICollectBreadcrumbs' => __DIR__ . '/../../..' . '/lib/public/Support/CrashReport/ICollectBreadcrumbs.php',  | 
                                                        |
| 842 | - 'OCP\\Support\\CrashReport\\IMessageReporter' => __DIR__ . '/../../..' . '/lib/public/Support/CrashReport/IMessageReporter.php',  | 
                                                        |
| 843 | - 'OCP\\Support\\CrashReport\\IRegistry' => __DIR__ . '/../../..' . '/lib/public/Support/CrashReport/IRegistry.php',  | 
                                                        |
| 844 | - 'OCP\\Support\\CrashReport\\IReporter' => __DIR__ . '/../../..' . '/lib/public/Support/CrashReport/IReporter.php',  | 
                                                        |
| 845 | - 'OCP\\Support\\Subscription\\Exception\\AlreadyRegisteredException' => __DIR__ . '/../../..' . '/lib/public/Support/Subscription/Exception/AlreadyRegisteredException.php',  | 
                                                        |
| 846 | - 'OCP\\Support\\Subscription\\IAssertion' => __DIR__ . '/../../..' . '/lib/public/Support/Subscription/IAssertion.php',  | 
                                                        |
| 847 | - 'OCP\\Support\\Subscription\\IRegistry' => __DIR__ . '/../../..' . '/lib/public/Support/Subscription/IRegistry.php',  | 
                                                        |
| 848 | - 'OCP\\Support\\Subscription\\ISubscription' => __DIR__ . '/../../..' . '/lib/public/Support/Subscription/ISubscription.php',  | 
                                                        |
| 849 | - 'OCP\\Support\\Subscription\\ISupportedApps' => __DIR__ . '/../../..' . '/lib/public/Support/Subscription/ISupportedApps.php',  | 
                                                        |
| 850 | - 'OCP\\SystemTag\\ISystemTag' => __DIR__ . '/../../..' . '/lib/public/SystemTag/ISystemTag.php',  | 
                                                        |
| 851 | - 'OCP\\SystemTag\\ISystemTagManager' => __DIR__ . '/../../..' . '/lib/public/SystemTag/ISystemTagManager.php',  | 
                                                        |
| 852 | - 'OCP\\SystemTag\\ISystemTagManagerFactory' => __DIR__ . '/../../..' . '/lib/public/SystemTag/ISystemTagManagerFactory.php',  | 
                                                        |
| 853 | - 'OCP\\SystemTag\\ISystemTagObjectMapper' => __DIR__ . '/../../..' . '/lib/public/SystemTag/ISystemTagObjectMapper.php',  | 
                                                        |
| 854 | - 'OCP\\SystemTag\\ManagerEvent' => __DIR__ . '/../../..' . '/lib/public/SystemTag/ManagerEvent.php',  | 
                                                        |
| 855 | - 'OCP\\SystemTag\\MapperEvent' => __DIR__ . '/../../..' . '/lib/public/SystemTag/MapperEvent.php',  | 
                                                        |
| 856 | - 'OCP\\SystemTag\\SystemTagsEntityEvent' => __DIR__ . '/../../..' . '/lib/public/SystemTag/SystemTagsEntityEvent.php',  | 
                                                        |
| 857 | - 'OCP\\SystemTag\\TagAlreadyExistsException' => __DIR__ . '/../../..' . '/lib/public/SystemTag/TagAlreadyExistsException.php',  | 
                                                        |
| 858 | - 'OCP\\SystemTag\\TagCreationForbiddenException' => __DIR__ . '/../../..' . '/lib/public/SystemTag/TagCreationForbiddenException.php',  | 
                                                        |
| 859 | - 'OCP\\SystemTag\\TagNotFoundException' => __DIR__ . '/../../..' . '/lib/public/SystemTag/TagNotFoundException.php',  | 
                                                        |
| 860 | - 'OCP\\SystemTag\\TagUpdateForbiddenException' => __DIR__ . '/../../..' . '/lib/public/SystemTag/TagUpdateForbiddenException.php',  | 
                                                        |
| 861 | - 'OCP\\Talk\\Exceptions\\NoBackendException' => __DIR__ . '/../../..' . '/lib/public/Talk/Exceptions/NoBackendException.php',  | 
                                                        |
| 862 | - 'OCP\\Talk\\IBroker' => __DIR__ . '/../../..' . '/lib/public/Talk/IBroker.php',  | 
                                                        |
| 863 | - 'OCP\\Talk\\IConversation' => __DIR__ . '/../../..' . '/lib/public/Talk/IConversation.php',  | 
                                                        |
| 864 | - 'OCP\\Talk\\IConversationOptions' => __DIR__ . '/../../..' . '/lib/public/Talk/IConversationOptions.php',  | 
                                                        |
| 865 | - 'OCP\\Talk\\ITalkBackend' => __DIR__ . '/../../..' . '/lib/public/Talk/ITalkBackend.php',  | 
                                                        |
| 866 | - 'OCP\\TaskProcessing\\EShapeType' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/EShapeType.php',  | 
                                                        |
| 867 | - 'OCP\\TaskProcessing\\Events\\AbstractTaskProcessingEvent' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/Events/AbstractTaskProcessingEvent.php',  | 
                                                        |
| 868 | - 'OCP\\TaskProcessing\\Events\\TaskFailedEvent' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/Events/TaskFailedEvent.php',  | 
                                                        |
| 869 | - 'OCP\\TaskProcessing\\Events\\TaskSuccessfulEvent' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/Events/TaskSuccessfulEvent.php',  | 
                                                        |
| 870 | - 'OCP\\TaskProcessing\\Exception\\Exception' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/Exception/Exception.php',  | 
                                                        |
| 871 | - 'OCP\\TaskProcessing\\Exception\\NotFoundException' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/Exception/NotFoundException.php',  | 
                                                        |
| 872 | - 'OCP\\TaskProcessing\\Exception\\PreConditionNotMetException' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/Exception/PreConditionNotMetException.php',  | 
                                                        |
| 873 | - 'OCP\\TaskProcessing\\Exception\\ProcessingException' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/Exception/ProcessingException.php',  | 
                                                        |
| 874 | - 'OCP\\TaskProcessing\\Exception\\UnauthorizedException' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/Exception/UnauthorizedException.php',  | 
                                                        |
| 875 | - 'OCP\\TaskProcessing\\Exception\\ValidationException' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/Exception/ValidationException.php',  | 
                                                        |
| 876 | - 'OCP\\TaskProcessing\\IManager' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/IManager.php',  | 
                                                        |
| 877 | - 'OCP\\TaskProcessing\\IProvider' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/IProvider.php',  | 
                                                        |
| 878 | - 'OCP\\TaskProcessing\\ISynchronousProvider' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/ISynchronousProvider.php',  | 
                                                        |
| 879 | - 'OCP\\TaskProcessing\\ITaskType' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/ITaskType.php',  | 
                                                        |
| 880 | - 'OCP\\TaskProcessing\\ShapeDescriptor' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/ShapeDescriptor.php',  | 
                                                        |
| 881 | - 'OCP\\TaskProcessing\\ShapeEnumValue' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/ShapeEnumValue.php',  | 
                                                        |
| 882 | - 'OCP\\TaskProcessing\\Task' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/Task.php',  | 
                                                        |
| 883 | - 'OCP\\TaskProcessing\\TaskTypes\\AudioToText' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/AudioToText.php',  | 
                                                        |
| 884 | - 'OCP\\TaskProcessing\\TaskTypes\\ContextAgentInteraction' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/ContextAgentInteraction.php',  | 
                                                        |
| 885 | - 'OCP\\TaskProcessing\\TaskTypes\\ContextWrite' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/ContextWrite.php',  | 
                                                        |
| 886 | - 'OCP\\TaskProcessing\\TaskTypes\\GenerateEmoji' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/GenerateEmoji.php',  | 
                                                        |
| 887 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToImage' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToImage.php',  | 
                                                        |
| 888 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToText' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToText.php',  | 
                                                        |
| 889 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextChangeTone' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToTextChangeTone.php',  | 
                                                        |
| 890 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextChat' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToTextChat.php',  | 
                                                        |
| 891 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextChatWithTools' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToTextChatWithTools.php',  | 
                                                        |
| 892 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextFormalization' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToTextFormalization.php',  | 
                                                        |
| 893 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextHeadline' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToTextHeadline.php',  | 
                                                        |
| 894 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextProofread' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToTextProofread.php',  | 
                                                        |
| 895 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextReformulation' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToTextReformulation.php',  | 
                                                        |
| 896 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextSimplification' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToTextSimplification.php',  | 
                                                        |
| 897 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextSummary' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToTextSummary.php',  | 
                                                        |
| 898 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextTopics' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToTextTopics.php',  | 
                                                        |
| 899 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextTranslate' => __DIR__ . '/../../..' . '/lib/public/TaskProcessing/TaskTypes/TextToTextTranslate.php',  | 
                                                        |
| 900 | - 'OCP\\Teams\\ITeamManager' => __DIR__ . '/../../..' . '/lib/public/Teams/ITeamManager.php',  | 
                                                        |
| 901 | - 'OCP\\Teams\\ITeamResourceProvider' => __DIR__ . '/../../..' . '/lib/public/Teams/ITeamResourceProvider.php',  | 
                                                        |
| 902 | - 'OCP\\Teams\\Team' => __DIR__ . '/../../..' . '/lib/public/Teams/Team.php',  | 
                                                        |
| 903 | - 'OCP\\Teams\\TeamResource' => __DIR__ . '/../../..' . '/lib/public/Teams/TeamResource.php',  | 
                                                        |
| 904 | - 'OCP\\Template' => __DIR__ . '/../../..' . '/lib/public/Template.php',  | 
                                                        |
| 905 | - 'OCP\\Template\\ITemplate' => __DIR__ . '/../../..' . '/lib/public/Template/ITemplate.php',  | 
                                                        |
| 906 | - 'OCP\\Template\\ITemplateManager' => __DIR__ . '/../../..' . '/lib/public/Template/ITemplateManager.php',  | 
                                                        |
| 907 | - 'OCP\\Template\\TemplateNotFoundException' => __DIR__ . '/../../..' . '/lib/public/Template/TemplateNotFoundException.php',  | 
                                                        |
| 908 | - 'OCP\\TextProcessing\\Events\\AbstractTextProcessingEvent' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/Events/AbstractTextProcessingEvent.php',  | 
                                                        |
| 909 | - 'OCP\\TextProcessing\\Events\\TaskFailedEvent' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/Events/TaskFailedEvent.php',  | 
                                                        |
| 910 | - 'OCP\\TextProcessing\\Events\\TaskSuccessfulEvent' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/Events/TaskSuccessfulEvent.php',  | 
                                                        |
| 911 | - 'OCP\\TextProcessing\\Exception\\TaskFailureException' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/Exception/TaskFailureException.php',  | 
                                                        |
| 912 | - 'OCP\\TextProcessing\\FreePromptTaskType' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/FreePromptTaskType.php',  | 
                                                        |
| 913 | - 'OCP\\TextProcessing\\HeadlineTaskType' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/HeadlineTaskType.php',  | 
                                                        |
| 914 | - 'OCP\\TextProcessing\\IManager' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/IManager.php',  | 
                                                        |
| 915 | - 'OCP\\TextProcessing\\IProvider' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/IProvider.php',  | 
                                                        |
| 916 | - 'OCP\\TextProcessing\\IProviderWithExpectedRuntime' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/IProviderWithExpectedRuntime.php',  | 
                                                        |
| 917 | - 'OCP\\TextProcessing\\IProviderWithId' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/IProviderWithId.php',  | 
                                                        |
| 918 | - 'OCP\\TextProcessing\\IProviderWithUserId' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/IProviderWithUserId.php',  | 
                                                        |
| 919 | - 'OCP\\TextProcessing\\ITaskType' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/ITaskType.php',  | 
                                                        |
| 920 | - 'OCP\\TextProcessing\\SummaryTaskType' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/SummaryTaskType.php',  | 
                                                        |
| 921 | - 'OCP\\TextProcessing\\Task' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/Task.php',  | 
                                                        |
| 922 | - 'OCP\\TextProcessing\\TopicsTaskType' => __DIR__ . '/../../..' . '/lib/public/TextProcessing/TopicsTaskType.php',  | 
                                                        |
| 923 | - 'OCP\\TextToImage\\Events\\AbstractTextToImageEvent' => __DIR__ . '/../../..' . '/lib/public/TextToImage/Events/AbstractTextToImageEvent.php',  | 
                                                        |
| 924 | - 'OCP\\TextToImage\\Events\\TaskFailedEvent' => __DIR__ . '/../../..' . '/lib/public/TextToImage/Events/TaskFailedEvent.php',  | 
                                                        |
| 925 | - 'OCP\\TextToImage\\Events\\TaskSuccessfulEvent' => __DIR__ . '/../../..' . '/lib/public/TextToImage/Events/TaskSuccessfulEvent.php',  | 
                                                        |
| 926 | - 'OCP\\TextToImage\\Exception\\TaskFailureException' => __DIR__ . '/../../..' . '/lib/public/TextToImage/Exception/TaskFailureException.php',  | 
                                                        |
| 927 | - 'OCP\\TextToImage\\Exception\\TaskNotFoundException' => __DIR__ . '/../../..' . '/lib/public/TextToImage/Exception/TaskNotFoundException.php',  | 
                                                        |
| 928 | - 'OCP\\TextToImage\\Exception\\TextToImageException' => __DIR__ . '/../../..' . '/lib/public/TextToImage/Exception/TextToImageException.php',  | 
                                                        |
| 929 | - 'OCP\\TextToImage\\IManager' => __DIR__ . '/../../..' . '/lib/public/TextToImage/IManager.php',  | 
                                                        |
| 930 | - 'OCP\\TextToImage\\IProvider' => __DIR__ . '/../../..' . '/lib/public/TextToImage/IProvider.php',  | 
                                                        |
| 931 | - 'OCP\\TextToImage\\IProviderWithUserId' => __DIR__ . '/../../..' . '/lib/public/TextToImage/IProviderWithUserId.php',  | 
                                                        |
| 932 | - 'OCP\\TextToImage\\Task' => __DIR__ . '/../../..' . '/lib/public/TextToImage/Task.php',  | 
                                                        |
| 933 | - 'OCP\\Translation\\CouldNotTranslateException' => __DIR__ . '/../../..' . '/lib/public/Translation/CouldNotTranslateException.php',  | 
                                                        |
| 934 | - 'OCP\\Translation\\IDetectLanguageProvider' => __DIR__ . '/../../..' . '/lib/public/Translation/IDetectLanguageProvider.php',  | 
                                                        |
| 935 | - 'OCP\\Translation\\ITranslationManager' => __DIR__ . '/../../..' . '/lib/public/Translation/ITranslationManager.php',  | 
                                                        |
| 936 | - 'OCP\\Translation\\ITranslationProvider' => __DIR__ . '/../../..' . '/lib/public/Translation/ITranslationProvider.php',  | 
                                                        |
| 937 | - 'OCP\\Translation\\ITranslationProviderWithId' => __DIR__ . '/../../..' . '/lib/public/Translation/ITranslationProviderWithId.php',  | 
                                                        |
| 938 | - 'OCP\\Translation\\ITranslationProviderWithUserId' => __DIR__ . '/../../..' . '/lib/public/Translation/ITranslationProviderWithUserId.php',  | 
                                                        |
| 939 | - 'OCP\\Translation\\LanguageTuple' => __DIR__ . '/../../..' . '/lib/public/Translation/LanguageTuple.php',  | 
                                                        |
| 940 | - 'OCP\\UserInterface' => __DIR__ . '/../../..' . '/lib/public/UserInterface.php',  | 
                                                        |
| 941 | - 'OCP\\UserMigration\\IExportDestination' => __DIR__ . '/../../..' . '/lib/public/UserMigration/IExportDestination.php',  | 
                                                        |
| 942 | - 'OCP\\UserMigration\\IImportSource' => __DIR__ . '/../../..' . '/lib/public/UserMigration/IImportSource.php',  | 
                                                        |
| 943 | - 'OCP\\UserMigration\\IMigrator' => __DIR__ . '/../../..' . '/lib/public/UserMigration/IMigrator.php',  | 
                                                        |
| 944 | - 'OCP\\UserMigration\\ISizeEstimationMigrator' => __DIR__ . '/../../..' . '/lib/public/UserMigration/ISizeEstimationMigrator.php',  | 
                                                        |
| 945 | - 'OCP\\UserMigration\\TMigratorBasicVersionHandling' => __DIR__ . '/../../..' . '/lib/public/UserMigration/TMigratorBasicVersionHandling.php',  | 
                                                        |
| 946 | - 'OCP\\UserMigration\\UserMigrationException' => __DIR__ . '/../../..' . '/lib/public/UserMigration/UserMigrationException.php',  | 
                                                        |
| 947 | - 'OCP\\UserStatus\\IManager' => __DIR__ . '/../../..' . '/lib/public/UserStatus/IManager.php',  | 
                                                        |
| 948 | - 'OCP\\UserStatus\\IProvider' => __DIR__ . '/../../..' . '/lib/public/UserStatus/IProvider.php',  | 
                                                        |
| 949 | - 'OCP\\UserStatus\\IUserStatus' => __DIR__ . '/../../..' . '/lib/public/UserStatus/IUserStatus.php',  | 
                                                        |
| 950 | - 'OCP\\User\\Backend\\ABackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/ABackend.php',  | 
                                                        |
| 951 | - 'OCP\\User\\Backend\\ICheckPasswordBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/ICheckPasswordBackend.php',  | 
                                                        |
| 952 | - 'OCP\\User\\Backend\\ICountMappedUsersBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/ICountMappedUsersBackend.php',  | 
                                                        |
| 953 | - 'OCP\\User\\Backend\\ICountUsersBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/ICountUsersBackend.php',  | 
                                                        |
| 954 | - 'OCP\\User\\Backend\\ICreateUserBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/ICreateUserBackend.php',  | 
                                                        |
| 955 | - 'OCP\\User\\Backend\\ICustomLogout' => __DIR__ . '/../../..' . '/lib/public/User/Backend/ICustomLogout.php',  | 
                                                        |
| 956 | - 'OCP\\User\\Backend\\IGetDisplayNameBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/IGetDisplayNameBackend.php',  | 
                                                        |
| 957 | - 'OCP\\User\\Backend\\IGetHomeBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/IGetHomeBackend.php',  | 
                                                        |
| 958 | - 'OCP\\User\\Backend\\IGetRealUIDBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/IGetRealUIDBackend.php',  | 
                                                        |
| 959 | - 'OCP\\User\\Backend\\ILimitAwareCountUsersBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/ILimitAwareCountUsersBackend.php',  | 
                                                        |
| 960 | - 'OCP\\User\\Backend\\IPasswordConfirmationBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/IPasswordConfirmationBackend.php',  | 
                                                        |
| 961 | - 'OCP\\User\\Backend\\IPasswordHashBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/IPasswordHashBackend.php',  | 
                                                        |
| 962 | - 'OCP\\User\\Backend\\IProvideAvatarBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/IProvideAvatarBackend.php',  | 
                                                        |
| 963 | - 'OCP\\User\\Backend\\IProvideEnabledStateBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/IProvideEnabledStateBackend.php',  | 
                                                        |
| 964 | - 'OCP\\User\\Backend\\ISearchKnownUsersBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/ISearchKnownUsersBackend.php',  | 
                                                        |
| 965 | - 'OCP\\User\\Backend\\ISetDisplayNameBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/ISetDisplayNameBackend.php',  | 
                                                        |
| 966 | - 'OCP\\User\\Backend\\ISetPasswordBackend' => __DIR__ . '/../../..' . '/lib/public/User/Backend/ISetPasswordBackend.php',  | 
                                                        |
| 967 | - 'OCP\\User\\Events\\BeforePasswordUpdatedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/BeforePasswordUpdatedEvent.php',  | 
                                                        |
| 968 | - 'OCP\\User\\Events\\BeforeUserCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/BeforeUserCreatedEvent.php',  | 
                                                        |
| 969 | - 'OCP\\User\\Events\\BeforeUserDeletedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/BeforeUserDeletedEvent.php',  | 
                                                        |
| 970 | - 'OCP\\User\\Events\\BeforeUserIdUnassignedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/BeforeUserIdUnassignedEvent.php',  | 
                                                        |
| 971 | - 'OCP\\User\\Events\\BeforeUserLoggedInEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/BeforeUserLoggedInEvent.php',  | 
                                                        |
| 972 | - 'OCP\\User\\Events\\BeforeUserLoggedInWithCookieEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/BeforeUserLoggedInWithCookieEvent.php',  | 
                                                        |
| 973 | - 'OCP\\User\\Events\\BeforeUserLoggedOutEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/BeforeUserLoggedOutEvent.php',  | 
                                                        |
| 974 | - 'OCP\\User\\Events\\OutOfOfficeChangedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/OutOfOfficeChangedEvent.php',  | 
                                                        |
| 975 | - 'OCP\\User\\Events\\OutOfOfficeClearedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/OutOfOfficeClearedEvent.php',  | 
                                                        |
| 976 | - 'OCP\\User\\Events\\OutOfOfficeEndedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/OutOfOfficeEndedEvent.php',  | 
                                                        |
| 977 | - 'OCP\\User\\Events\\OutOfOfficeScheduledEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/OutOfOfficeScheduledEvent.php',  | 
                                                        |
| 978 | - 'OCP\\User\\Events\\OutOfOfficeStartedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/OutOfOfficeStartedEvent.php',  | 
                                                        |
| 979 | - 'OCP\\User\\Events\\PasswordUpdatedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/PasswordUpdatedEvent.php',  | 
                                                        |
| 980 | - 'OCP\\User\\Events\\PostLoginEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/PostLoginEvent.php',  | 
                                                        |
| 981 | - 'OCP\\User\\Events\\UserChangedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/UserChangedEvent.php',  | 
                                                        |
| 982 | - 'OCP\\User\\Events\\UserCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/UserCreatedEvent.php',  | 
                                                        |
| 983 | - 'OCP\\User\\Events\\UserDeletedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/UserDeletedEvent.php',  | 
                                                        |
| 984 | - 'OCP\\User\\Events\\UserFirstTimeLoggedInEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/UserFirstTimeLoggedInEvent.php',  | 
                                                        |
| 985 | - 'OCP\\User\\Events\\UserIdAssignedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/UserIdAssignedEvent.php',  | 
                                                        |
| 986 | - 'OCP\\User\\Events\\UserIdUnassignedEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/UserIdUnassignedEvent.php',  | 
                                                        |
| 987 | - 'OCP\\User\\Events\\UserLiveStatusEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/UserLiveStatusEvent.php',  | 
                                                        |
| 988 | - 'OCP\\User\\Events\\UserLoggedInEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/UserLoggedInEvent.php',  | 
                                                        |
| 989 | - 'OCP\\User\\Events\\UserLoggedInWithCookieEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/UserLoggedInWithCookieEvent.php',  | 
                                                        |
| 990 | - 'OCP\\User\\Events\\UserLoggedOutEvent' => __DIR__ . '/../../..' . '/lib/public/User/Events/UserLoggedOutEvent.php',  | 
                                                        |
| 991 | - 'OCP\\User\\GetQuotaEvent' => __DIR__ . '/../../..' . '/lib/public/User/GetQuotaEvent.php',  | 
                                                        |
| 992 | - 'OCP\\User\\IAvailabilityCoordinator' => __DIR__ . '/../../..' . '/lib/public/User/IAvailabilityCoordinator.php',  | 
                                                        |
| 993 | - 'OCP\\User\\IOutOfOfficeData' => __DIR__ . '/../../..' . '/lib/public/User/IOutOfOfficeData.php',  | 
                                                        |
| 994 | - 'OCP\\Util' => __DIR__ . '/../../..' . '/lib/public/Util.php',  | 
                                                        |
| 995 | - 'OCP\\WorkflowEngine\\EntityContext\\IContextPortation' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/EntityContext/IContextPortation.php',  | 
                                                        |
| 996 | - 'OCP\\WorkflowEngine\\EntityContext\\IDisplayName' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/EntityContext/IDisplayName.php',  | 
                                                        |
| 997 | - 'OCP\\WorkflowEngine\\EntityContext\\IDisplayText' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/EntityContext/IDisplayText.php',  | 
                                                        |
| 998 | - 'OCP\\WorkflowEngine\\EntityContext\\IIcon' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/EntityContext/IIcon.php',  | 
                                                        |
| 999 | - 'OCP\\WorkflowEngine\\EntityContext\\IUrl' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/EntityContext/IUrl.php',  | 
                                                        |
| 1000 | - 'OCP\\WorkflowEngine\\Events\\LoadSettingsScriptsEvent' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/Events/LoadSettingsScriptsEvent.php',  | 
                                                        |
| 1001 | - 'OCP\\WorkflowEngine\\Events\\RegisterChecksEvent' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/Events/RegisterChecksEvent.php',  | 
                                                        |
| 1002 | - 'OCP\\WorkflowEngine\\Events\\RegisterEntitiesEvent' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/Events/RegisterEntitiesEvent.php',  | 
                                                        |
| 1003 | - 'OCP\\WorkflowEngine\\Events\\RegisterOperationsEvent' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/Events/RegisterOperationsEvent.php',  | 
                                                        |
| 1004 | - 'OCP\\WorkflowEngine\\GenericEntityEvent' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/GenericEntityEvent.php',  | 
                                                        |
| 1005 | - 'OCP\\WorkflowEngine\\ICheck' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/ICheck.php',  | 
                                                        |
| 1006 | - 'OCP\\WorkflowEngine\\IComplexOperation' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/IComplexOperation.php',  | 
                                                        |
| 1007 | - 'OCP\\WorkflowEngine\\IEntity' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/IEntity.php',  | 
                                                        |
| 1008 | - 'OCP\\WorkflowEngine\\IEntityCheck' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/IEntityCheck.php',  | 
                                                        |
| 1009 | - 'OCP\\WorkflowEngine\\IEntityEvent' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/IEntityEvent.php',  | 
                                                        |
| 1010 | - 'OCP\\WorkflowEngine\\IFileCheck' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/IFileCheck.php',  | 
                                                        |
| 1011 | - 'OCP\\WorkflowEngine\\IManager' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/IManager.php',  | 
                                                        |
| 1012 | - 'OCP\\WorkflowEngine\\IOperation' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/IOperation.php',  | 
                                                        |
| 1013 | - 'OCP\\WorkflowEngine\\IRuleMatcher' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/IRuleMatcher.php',  | 
                                                        |
| 1014 | - 'OCP\\WorkflowEngine\\ISpecificOperation' => __DIR__ . '/../../..' . '/lib/public/WorkflowEngine/ISpecificOperation.php',  | 
                                                        |
| 1015 | - 'OC\\Accounts\\Account' => __DIR__ . '/../../..' . '/lib/private/Accounts/Account.php',  | 
                                                        |
| 1016 | - 'OC\\Accounts\\AccountManager' => __DIR__ . '/../../..' . '/lib/private/Accounts/AccountManager.php',  | 
                                                        |
| 1017 | - 'OC\\Accounts\\AccountProperty' => __DIR__ . '/../../..' . '/lib/private/Accounts/AccountProperty.php',  | 
                                                        |
| 1018 | - 'OC\\Accounts\\AccountPropertyCollection' => __DIR__ . '/../../..' . '/lib/private/Accounts/AccountPropertyCollection.php',  | 
                                                        |
| 1019 | - 'OC\\Accounts\\Hooks' => __DIR__ . '/../../..' . '/lib/private/Accounts/Hooks.php',  | 
                                                        |
| 1020 | - 'OC\\Accounts\\TAccountsHelper' => __DIR__ . '/../../..' . '/lib/private/Accounts/TAccountsHelper.php',  | 
                                                        |
| 1021 | - 'OC\\Activity\\ActivitySettingsAdapter' => __DIR__ . '/../../..' . '/lib/private/Activity/ActivitySettingsAdapter.php',  | 
                                                        |
| 1022 | - 'OC\\Activity\\Event' => __DIR__ . '/../../..' . '/lib/private/Activity/Event.php',  | 
                                                        |
| 1023 | - 'OC\\Activity\\EventMerger' => __DIR__ . '/../../..' . '/lib/private/Activity/EventMerger.php',  | 
                                                        |
| 1024 | - 'OC\\Activity\\Manager' => __DIR__ . '/../../..' . '/lib/private/Activity/Manager.php',  | 
                                                        |
| 1025 | - 'OC\\AllConfig' => __DIR__ . '/../../..' . '/lib/private/AllConfig.php',  | 
                                                        |
| 1026 | - 'OC\\AppConfig' => __DIR__ . '/../../..' . '/lib/private/AppConfig.php',  | 
                                                        |
| 1027 | - 'OC\\AppFramework\\App' => __DIR__ . '/../../..' . '/lib/private/AppFramework/App.php',  | 
                                                        |
| 1028 | - 'OC\\AppFramework\\Bootstrap\\ARegistration' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Bootstrap/ARegistration.php',  | 
                                                        |
| 1029 | - 'OC\\AppFramework\\Bootstrap\\BootContext' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Bootstrap/BootContext.php',  | 
                                                        |
| 1030 | - 'OC\\AppFramework\\Bootstrap\\Coordinator' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Bootstrap/Coordinator.php',  | 
                                                        |
| 1031 | - 'OC\\AppFramework\\Bootstrap\\EventListenerRegistration' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Bootstrap/EventListenerRegistration.php',  | 
                                                        |
| 1032 | - 'OC\\AppFramework\\Bootstrap\\FunctionInjector' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Bootstrap/FunctionInjector.php',  | 
                                                        |
| 1033 | - 'OC\\AppFramework\\Bootstrap\\MiddlewareRegistration' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Bootstrap/MiddlewareRegistration.php',  | 
                                                        |
| 1034 | - 'OC\\AppFramework\\Bootstrap\\ParameterRegistration' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Bootstrap/ParameterRegistration.php',  | 
                                                        |
| 1035 | - 'OC\\AppFramework\\Bootstrap\\PreviewProviderRegistration' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Bootstrap/PreviewProviderRegistration.php',  | 
                                                        |
| 1036 | - 'OC\\AppFramework\\Bootstrap\\RegistrationContext' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Bootstrap/RegistrationContext.php',  | 
                                                        |
| 1037 | - 'OC\\AppFramework\\Bootstrap\\ServiceAliasRegistration' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Bootstrap/ServiceAliasRegistration.php',  | 
                                                        |
| 1038 | - 'OC\\AppFramework\\Bootstrap\\ServiceFactoryRegistration' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Bootstrap/ServiceFactoryRegistration.php',  | 
                                                        |
| 1039 | - 'OC\\AppFramework\\Bootstrap\\ServiceRegistration' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Bootstrap/ServiceRegistration.php',  | 
                                                        |
| 1040 | - 'OC\\AppFramework\\DependencyInjection\\DIContainer' => __DIR__ . '/../../..' . '/lib/private/AppFramework/DependencyInjection/DIContainer.php',  | 
                                                        |
| 1041 | - 'OC\\AppFramework\\Http' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Http.php',  | 
                                                        |
| 1042 | - 'OC\\AppFramework\\Http\\Dispatcher' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Http/Dispatcher.php',  | 
                                                        |
| 1043 | - 'OC\\AppFramework\\Http\\Output' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Http/Output.php',  | 
                                                        |
| 1044 | - 'OC\\AppFramework\\Http\\Request' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Http/Request.php',  | 
                                                        |
| 1045 | - 'OC\\AppFramework\\Http\\RequestId' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Http/RequestId.php',  | 
                                                        |
| 1046 | - 'OC\\AppFramework\\Middleware\\AdditionalScriptsMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/AdditionalScriptsMiddleware.php',  | 
                                                        |
| 1047 | - 'OC\\AppFramework\\Middleware\\CompressionMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/CompressionMiddleware.php',  | 
                                                        |
| 1048 | - 'OC\\AppFramework\\Middleware\\FlowV2EphemeralSessionsMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/FlowV2EphemeralSessionsMiddleware.php',  | 
                                                        |
| 1049 | - 'OC\\AppFramework\\Middleware\\MiddlewareDispatcher' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/MiddlewareDispatcher.php',  | 
                                                        |
| 1050 | - 'OC\\AppFramework\\Middleware\\NotModifiedMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/NotModifiedMiddleware.php',  | 
                                                        |
| 1051 | - 'OC\\AppFramework\\Middleware\\OCSMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/OCSMiddleware.php',  | 
                                                        |
| 1052 | - 'OC\\AppFramework\\Middleware\\PublicShare\\Exceptions\\NeedAuthenticationException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/PublicShare/Exceptions/NeedAuthenticationException.php',  | 
                                                        |
| 1053 | - 'OC\\AppFramework\\Middleware\\PublicShare\\PublicShareMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/PublicShare/PublicShareMiddleware.php',  | 
                                                        |
| 1054 | - 'OC\\AppFramework\\Middleware\\Security\\BruteForceMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/BruteForceMiddleware.php',  | 
                                                        |
| 1055 | - 'OC\\AppFramework\\Middleware\\Security\\CORSMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/CORSMiddleware.php',  | 
                                                        |
| 1056 | - 'OC\\AppFramework\\Middleware\\Security\\CSPMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/CSPMiddleware.php',  | 
                                                        |
| 1057 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\AdminIpNotAllowedException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/Exceptions/AdminIpNotAllowedException.php',  | 
                                                        |
| 1058 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\AppNotEnabledException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/Exceptions/AppNotEnabledException.php',  | 
                                                        |
| 1059 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\CrossSiteRequestForgeryException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/Exceptions/CrossSiteRequestForgeryException.php',  | 
                                                        |
| 1060 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\ExAppRequiredException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/Exceptions/ExAppRequiredException.php',  | 
                                                        |
| 1061 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\LaxSameSiteCookieFailedException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/Exceptions/LaxSameSiteCookieFailedException.php',  | 
                                                        |
| 1062 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\NotAdminException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/Exceptions/NotAdminException.php',  | 
                                                        |
| 1063 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\NotConfirmedException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/Exceptions/NotConfirmedException.php',  | 
                                                        |
| 1064 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\NotLoggedInException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/Exceptions/NotLoggedInException.php',  | 
                                                        |
| 1065 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\ReloadExecutionException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/Exceptions/ReloadExecutionException.php',  | 
                                                        |
| 1066 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\SecurityException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/Exceptions/SecurityException.php',  | 
                                                        |
| 1067 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\StrictCookieMissingException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/Exceptions/StrictCookieMissingException.php',  | 
                                                        |
| 1068 | - 'OC\\AppFramework\\Middleware\\Security\\FeaturePolicyMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/FeaturePolicyMiddleware.php',  | 
                                                        |
| 1069 | - 'OC\\AppFramework\\Middleware\\Security\\PasswordConfirmationMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/PasswordConfirmationMiddleware.php',  | 
                                                        |
| 1070 | - 'OC\\AppFramework\\Middleware\\Security\\RateLimitingMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/RateLimitingMiddleware.php',  | 
                                                        |
| 1071 | - 'OC\\AppFramework\\Middleware\\Security\\ReloadExecutionMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/ReloadExecutionMiddleware.php',  | 
                                                        |
| 1072 | - 'OC\\AppFramework\\Middleware\\Security\\SameSiteCookieMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/SameSiteCookieMiddleware.php',  | 
                                                        |
| 1073 | - 'OC\\AppFramework\\Middleware\\Security\\SecurityMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php',  | 
                                                        |
| 1074 | - 'OC\\AppFramework\\Middleware\\SessionMiddleware' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Middleware/SessionMiddleware.php',  | 
                                                        |
| 1075 | - 'OC\\AppFramework\\OCS\\BaseResponse' => __DIR__ . '/../../..' . '/lib/private/AppFramework/OCS/BaseResponse.php',  | 
                                                        |
| 1076 | - 'OC\\AppFramework\\OCS\\V1Response' => __DIR__ . '/../../..' . '/lib/private/AppFramework/OCS/V1Response.php',  | 
                                                        |
| 1077 | - 'OC\\AppFramework\\OCS\\V2Response' => __DIR__ . '/../../..' . '/lib/private/AppFramework/OCS/V2Response.php',  | 
                                                        |
| 1078 | - 'OC\\AppFramework\\Routing\\RouteActionHandler' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Routing/RouteActionHandler.php',  | 
                                                        |
| 1079 | - 'OC\\AppFramework\\Routing\\RouteConfig' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Routing/RouteConfig.php',  | 
                                                        |
| 1080 | - 'OC\\AppFramework\\Routing\\RouteParser' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Routing/RouteParser.php',  | 
                                                        |
| 1081 | - 'OC\\AppFramework\\ScopedPsrLogger' => __DIR__ . '/../../..' . '/lib/private/AppFramework/ScopedPsrLogger.php',  | 
                                                        |
| 1082 | - 'OC\\AppFramework\\Services\\AppConfig' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Services/AppConfig.php',  | 
                                                        |
| 1083 | - 'OC\\AppFramework\\Services\\InitialState' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Services/InitialState.php',  | 
                                                        |
| 1084 | - 'OC\\AppFramework\\Utility\\ControllerMethodReflector' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Utility/ControllerMethodReflector.php',  | 
                                                        |
| 1085 | - 'OC\\AppFramework\\Utility\\QueryNotFoundException' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Utility/QueryNotFoundException.php',  | 
                                                        |
| 1086 | - 'OC\\AppFramework\\Utility\\SimpleContainer' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Utility/SimpleContainer.php',  | 
                                                        |
| 1087 | - 'OC\\AppFramework\\Utility\\TimeFactory' => __DIR__ . '/../../..' . '/lib/private/AppFramework/Utility/TimeFactory.php',  | 
                                                        |
| 1088 | - 'OC\\AppScriptDependency' => __DIR__ . '/../../..' . '/lib/private/AppScriptDependency.php',  | 
                                                        |
| 1089 | - 'OC\\AppScriptSort' => __DIR__ . '/../../..' . '/lib/private/AppScriptSort.php',  | 
                                                        |
| 1090 | - 'OC\\App\\AppManager' => __DIR__ . '/../../..' . '/lib/private/App/AppManager.php',  | 
                                                        |
| 1091 | - 'OC\\App\\AppStore\\Bundles\\Bundle' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Bundles/Bundle.php',  | 
                                                        |
| 1092 | - 'OC\\App\\AppStore\\Bundles\\BundleFetcher' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Bundles/BundleFetcher.php',  | 
                                                        |
| 1093 | - 'OC\\App\\AppStore\\Bundles\\EducationBundle' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Bundles/EducationBundle.php',  | 
                                                        |
| 1094 | - 'OC\\App\\AppStore\\Bundles\\EnterpriseBundle' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Bundles/EnterpriseBundle.php',  | 
                                                        |
| 1095 | - 'OC\\App\\AppStore\\Bundles\\GroupwareBundle' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Bundles/GroupwareBundle.php',  | 
                                                        |
| 1096 | - 'OC\\App\\AppStore\\Bundles\\HubBundle' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Bundles/HubBundle.php',  | 
                                                        |
| 1097 | - 'OC\\App\\AppStore\\Bundles\\PublicSectorBundle' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Bundles/PublicSectorBundle.php',  | 
                                                        |
| 1098 | - 'OC\\App\\AppStore\\Bundles\\SocialSharingBundle' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Bundles/SocialSharingBundle.php',  | 
                                                        |
| 1099 | - 'OC\\App\\AppStore\\Fetcher\\AppDiscoverFetcher' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Fetcher/AppDiscoverFetcher.php',  | 
                                                        |
| 1100 | - 'OC\\App\\AppStore\\Fetcher\\AppFetcher' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Fetcher/AppFetcher.php',  | 
                                                        |
| 1101 | - 'OC\\App\\AppStore\\Fetcher\\CategoryFetcher' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Fetcher/CategoryFetcher.php',  | 
                                                        |
| 1102 | - 'OC\\App\\AppStore\\Fetcher\\Fetcher' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Fetcher/Fetcher.php',  | 
                                                        |
| 1103 | - 'OC\\App\\AppStore\\Version\\Version' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Version/Version.php',  | 
                                                        |
| 1104 | - 'OC\\App\\AppStore\\Version\\VersionParser' => __DIR__ . '/../../..' . '/lib/private/App/AppStore/Version/VersionParser.php',  | 
                                                        |
| 1105 | - 'OC\\App\\CompareVersion' => __DIR__ . '/../../..' . '/lib/private/App/CompareVersion.php',  | 
                                                        |
| 1106 | - 'OC\\App\\DependencyAnalyzer' => __DIR__ . '/../../..' . '/lib/private/App/DependencyAnalyzer.php',  | 
                                                        |
| 1107 | - 'OC\\App\\InfoParser' => __DIR__ . '/../../..' . '/lib/private/App/InfoParser.php',  | 
                                                        |
| 1108 | - 'OC\\App\\Platform' => __DIR__ . '/../../..' . '/lib/private/App/Platform.php',  | 
                                                        |
| 1109 | - 'OC\\App\\PlatformRepository' => __DIR__ . '/../../..' . '/lib/private/App/PlatformRepository.php',  | 
                                                        |
| 1110 | - 'OC\\Archive\\Archive' => __DIR__ . '/../../..' . '/lib/private/Archive/Archive.php',  | 
                                                        |
| 1111 | - 'OC\\Archive\\TAR' => __DIR__ . '/../../..' . '/lib/private/Archive/TAR.php',  | 
                                                        |
| 1112 | - 'OC\\Archive\\ZIP' => __DIR__ . '/../../..' . '/lib/private/Archive/ZIP.php',  | 
                                                        |
| 1113 | - 'OC\\Authentication\\Events\\ARemoteWipeEvent' => __DIR__ . '/../../..' . '/lib/private/Authentication/Events/ARemoteWipeEvent.php',  | 
                                                        |
| 1114 | - 'OC\\Authentication\\Events\\AppPasswordCreatedEvent' => __DIR__ . '/../../..' . '/lib/private/Authentication/Events/AppPasswordCreatedEvent.php',  | 
                                                        |
| 1115 | - 'OC\\Authentication\\Events\\LoginFailed' => __DIR__ . '/../../..' . '/lib/private/Authentication/Events/LoginFailed.php',  | 
                                                        |
| 1116 | - 'OC\\Authentication\\Events\\RemoteWipeFinished' => __DIR__ . '/../../..' . '/lib/private/Authentication/Events/RemoteWipeFinished.php',  | 
                                                        |
| 1117 | - 'OC\\Authentication\\Events\\RemoteWipeStarted' => __DIR__ . '/../../..' . '/lib/private/Authentication/Events/RemoteWipeStarted.php',  | 
                                                        |
| 1118 | - 'OC\\Authentication\\Exceptions\\ExpiredTokenException' => __DIR__ . '/../../..' . '/lib/private/Authentication/Exceptions/ExpiredTokenException.php',  | 
                                                        |
| 1119 | - 'OC\\Authentication\\Exceptions\\InvalidProviderException' => __DIR__ . '/../../..' . '/lib/private/Authentication/Exceptions/InvalidProviderException.php',  | 
                                                        |
| 1120 | - 'OC\\Authentication\\Exceptions\\InvalidTokenException' => __DIR__ . '/../../..' . '/lib/private/Authentication/Exceptions/InvalidTokenException.php',  | 
                                                        |
| 1121 | - 'OC\\Authentication\\Exceptions\\LoginRequiredException' => __DIR__ . '/../../..' . '/lib/private/Authentication/Exceptions/LoginRequiredException.php',  | 
                                                        |
| 1122 | - 'OC\\Authentication\\Exceptions\\PasswordLoginForbiddenException' => __DIR__ . '/../../..' . '/lib/private/Authentication/Exceptions/PasswordLoginForbiddenException.php',  | 
                                                        |
| 1123 | - 'OC\\Authentication\\Exceptions\\PasswordlessTokenException' => __DIR__ . '/../../..' . '/lib/private/Authentication/Exceptions/PasswordlessTokenException.php',  | 
                                                        |
| 1124 | - 'OC\\Authentication\\Exceptions\\TokenPasswordExpiredException' => __DIR__ . '/../../..' . '/lib/private/Authentication/Exceptions/TokenPasswordExpiredException.php',  | 
                                                        |
| 1125 | - 'OC\\Authentication\\Exceptions\\TwoFactorAuthRequiredException' => __DIR__ . '/../../..' . '/lib/private/Authentication/Exceptions/TwoFactorAuthRequiredException.php',  | 
                                                        |
| 1126 | - 'OC\\Authentication\\Exceptions\\UserAlreadyLoggedInException' => __DIR__ . '/../../..' . '/lib/private/Authentication/Exceptions/UserAlreadyLoggedInException.php',  | 
                                                        |
| 1127 | - 'OC\\Authentication\\Exceptions\\WipeTokenException' => __DIR__ . '/../../..' . '/lib/private/Authentication/Exceptions/WipeTokenException.php',  | 
                                                        |
| 1128 | - 'OC\\Authentication\\Listeners\\LoginFailedListener' => __DIR__ . '/../../..' . '/lib/private/Authentication/Listeners/LoginFailedListener.php',  | 
                                                        |
| 1129 | - 'OC\\Authentication\\Listeners\\RemoteWipeActivityListener' => __DIR__ . '/../../..' . '/lib/private/Authentication/Listeners/RemoteWipeActivityListener.php',  | 
                                                        |
| 1130 | - 'OC\\Authentication\\Listeners\\RemoteWipeEmailListener' => __DIR__ . '/../../..' . '/lib/private/Authentication/Listeners/RemoteWipeEmailListener.php',  | 
                                                        |
| 1131 | - 'OC\\Authentication\\Listeners\\RemoteWipeNotificationsListener' => __DIR__ . '/../../..' . '/lib/private/Authentication/Listeners/RemoteWipeNotificationsListener.php',  | 
                                                        |
| 1132 | - 'OC\\Authentication\\Listeners\\UserDeletedFilesCleanupListener' => __DIR__ . '/../../..' . '/lib/private/Authentication/Listeners/UserDeletedFilesCleanupListener.php',  | 
                                                        |
| 1133 | - 'OC\\Authentication\\Listeners\\UserDeletedStoreCleanupListener' => __DIR__ . '/../../..' . '/lib/private/Authentication/Listeners/UserDeletedStoreCleanupListener.php',  | 
                                                        |
| 1134 | - 'OC\\Authentication\\Listeners\\UserDeletedTokenCleanupListener' => __DIR__ . '/../../..' . '/lib/private/Authentication/Listeners/UserDeletedTokenCleanupListener.php',  | 
                                                        |
| 1135 | - 'OC\\Authentication\\Listeners\\UserDeletedWebAuthnCleanupListener' => __DIR__ . '/../../..' . '/lib/private/Authentication/Listeners/UserDeletedWebAuthnCleanupListener.php',  | 
                                                        |
| 1136 | - 'OC\\Authentication\\Listeners\\UserLoggedInListener' => __DIR__ . '/../../..' . '/lib/private/Authentication/Listeners/UserLoggedInListener.php',  | 
                                                        |
| 1137 | - 'OC\\Authentication\\LoginCredentials\\Credentials' => __DIR__ . '/../../..' . '/lib/private/Authentication/LoginCredentials/Credentials.php',  | 
                                                        |
| 1138 | - 'OC\\Authentication\\LoginCredentials\\Store' => __DIR__ . '/../../..' . '/lib/private/Authentication/LoginCredentials/Store.php',  | 
                                                        |
| 1139 | - 'OC\\Authentication\\Login\\ALoginCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/ALoginCommand.php',  | 
                                                        |
| 1140 | - 'OC\\Authentication\\Login\\Chain' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/Chain.php',  | 
                                                        |
| 1141 | - 'OC\\Authentication\\Login\\ClearLostPasswordTokensCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/ClearLostPasswordTokensCommand.php',  | 
                                                        |
| 1142 | - 'OC\\Authentication\\Login\\CompleteLoginCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/CompleteLoginCommand.php',  | 
                                                        |
| 1143 | - 'OC\\Authentication\\Login\\CreateSessionTokenCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/CreateSessionTokenCommand.php',  | 
                                                        |
| 1144 | - 'OC\\Authentication\\Login\\FinishRememberedLoginCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/FinishRememberedLoginCommand.php',  | 
                                                        |
| 1145 | - 'OC\\Authentication\\Login\\FlowV2EphemeralSessionsCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/FlowV2EphemeralSessionsCommand.php',  | 
                                                        |
| 1146 | - 'OC\\Authentication\\Login\\LoggedInCheckCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/LoggedInCheckCommand.php',  | 
                                                        |
| 1147 | - 'OC\\Authentication\\Login\\LoginData' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/LoginData.php',  | 
                                                        |
| 1148 | - 'OC\\Authentication\\Login\\LoginResult' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/LoginResult.php',  | 
                                                        |
| 1149 | - 'OC\\Authentication\\Login\\PreLoginHookCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/PreLoginHookCommand.php',  | 
                                                        |
| 1150 | - 'OC\\Authentication\\Login\\SetUserTimezoneCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/SetUserTimezoneCommand.php',  | 
                                                        |
| 1151 | - 'OC\\Authentication\\Login\\TwoFactorCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/TwoFactorCommand.php',  | 
                                                        |
| 1152 | - 'OC\\Authentication\\Login\\UidLoginCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/UidLoginCommand.php',  | 
                                                        |
| 1153 | - 'OC\\Authentication\\Login\\UpdateLastPasswordConfirmCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/UpdateLastPasswordConfirmCommand.php',  | 
                                                        |
| 1154 | - 'OC\\Authentication\\Login\\UserDisabledCheckCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/UserDisabledCheckCommand.php',  | 
                                                        |
| 1155 | - 'OC\\Authentication\\Login\\WebAuthnChain' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/WebAuthnChain.php',  | 
                                                        |
| 1156 | - 'OC\\Authentication\\Login\\WebAuthnLoginCommand' => __DIR__ . '/../../..' . '/lib/private/Authentication/Login/WebAuthnLoginCommand.php',  | 
                                                        |
| 1157 | - 'OC\\Authentication\\Notifications\\Notifier' => __DIR__ . '/../../..' . '/lib/private/Authentication/Notifications/Notifier.php',  | 
                                                        |
| 1158 | - 'OC\\Authentication\\Token\\INamedToken' => __DIR__ . '/../../..' . '/lib/private/Authentication/Token/INamedToken.php',  | 
                                                        |
| 1159 | - 'OC\\Authentication\\Token\\IProvider' => __DIR__ . '/../../..' . '/lib/private/Authentication/Token/IProvider.php',  | 
                                                        |
| 1160 | - 'OC\\Authentication\\Token\\IToken' => __DIR__ . '/../../..' . '/lib/private/Authentication/Token/IToken.php',  | 
                                                        |
| 1161 | - 'OC\\Authentication\\Token\\IWipeableToken' => __DIR__ . '/../../..' . '/lib/private/Authentication/Token/IWipeableToken.php',  | 
                                                        |
| 1162 | - 'OC\\Authentication\\Token\\Manager' => __DIR__ . '/../../..' . '/lib/private/Authentication/Token/Manager.php',  | 
                                                        |
| 1163 | - 'OC\\Authentication\\Token\\PublicKeyToken' => __DIR__ . '/../../..' . '/lib/private/Authentication/Token/PublicKeyToken.php',  | 
                                                        |
| 1164 | - 'OC\\Authentication\\Token\\PublicKeyTokenMapper' => __DIR__ . '/../../..' . '/lib/private/Authentication/Token/PublicKeyTokenMapper.php',  | 
                                                        |
| 1165 | - 'OC\\Authentication\\Token\\PublicKeyTokenProvider' => __DIR__ . '/../../..' . '/lib/private/Authentication/Token/PublicKeyTokenProvider.php',  | 
                                                        |
| 1166 | - 'OC\\Authentication\\Token\\RemoteWipe' => __DIR__ . '/../../..' . '/lib/private/Authentication/Token/RemoteWipe.php',  | 
                                                        |
| 1167 | - 'OC\\Authentication\\Token\\TokenCleanupJob' => __DIR__ . '/../../..' . '/lib/private/Authentication/Token/TokenCleanupJob.php',  | 
                                                        |
| 1168 | - 'OC\\Authentication\\TwoFactorAuth\\Db\\ProviderUserAssignmentDao' => __DIR__ . '/../../..' . '/lib/private/Authentication/TwoFactorAuth/Db/ProviderUserAssignmentDao.php',  | 
                                                        |
| 1169 | - 'OC\\Authentication\\TwoFactorAuth\\EnforcementState' => __DIR__ . '/../../..' . '/lib/private/Authentication/TwoFactorAuth/EnforcementState.php',  | 
                                                        |
| 1170 | - 'OC\\Authentication\\TwoFactorAuth\\Manager' => __DIR__ . '/../../..' . '/lib/private/Authentication/TwoFactorAuth/Manager.php',  | 
                                                        |
| 1171 | - 'OC\\Authentication\\TwoFactorAuth\\MandatoryTwoFactor' => __DIR__ . '/../../..' . '/lib/private/Authentication/TwoFactorAuth/MandatoryTwoFactor.php',  | 
                                                        |
| 1172 | - 'OC\\Authentication\\TwoFactorAuth\\ProviderLoader' => __DIR__ . '/../../..' . '/lib/private/Authentication/TwoFactorAuth/ProviderLoader.php',  | 
                                                        |
| 1173 | - 'OC\\Authentication\\TwoFactorAuth\\ProviderManager' => __DIR__ . '/../../..' . '/lib/private/Authentication/TwoFactorAuth/ProviderManager.php',  | 
                                                        |
| 1174 | - 'OC\\Authentication\\TwoFactorAuth\\ProviderSet' => __DIR__ . '/../../..' . '/lib/private/Authentication/TwoFactorAuth/ProviderSet.php',  | 
                                                        |
| 1175 | - 'OC\\Authentication\\TwoFactorAuth\\Registry' => __DIR__ . '/../../..' . '/lib/private/Authentication/TwoFactorAuth/Registry.php',  | 
                                                        |
| 1176 | - 'OC\\Authentication\\WebAuthn\\CredentialRepository' => __DIR__ . '/../../..' . '/lib/private/Authentication/WebAuthn/CredentialRepository.php',  | 
                                                        |
| 1177 | - 'OC\\Authentication\\WebAuthn\\Db\\PublicKeyCredentialEntity' => __DIR__ . '/../../..' . '/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialEntity.php',  | 
                                                        |
| 1178 | - 'OC\\Authentication\\WebAuthn\\Db\\PublicKeyCredentialMapper' => __DIR__ . '/../../..' . '/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php',  | 
                                                        |
| 1179 | - 'OC\\Authentication\\WebAuthn\\Manager' => __DIR__ . '/../../..' . '/lib/private/Authentication/WebAuthn/Manager.php',  | 
                                                        |
| 1180 | - 'OC\\Avatar\\Avatar' => __DIR__ . '/../../..' . '/lib/private/Avatar/Avatar.php',  | 
                                                        |
| 1181 | - 'OC\\Avatar\\AvatarManager' => __DIR__ . '/../../..' . '/lib/private/Avatar/AvatarManager.php',  | 
                                                        |
| 1182 | - 'OC\\Avatar\\GuestAvatar' => __DIR__ . '/../../..' . '/lib/private/Avatar/GuestAvatar.php',  | 
                                                        |
| 1183 | - 'OC\\Avatar\\PlaceholderAvatar' => __DIR__ . '/../../..' . '/lib/private/Avatar/PlaceholderAvatar.php',  | 
                                                        |
| 1184 | - 'OC\\Avatar\\UserAvatar' => __DIR__ . '/../../..' . '/lib/private/Avatar/UserAvatar.php',  | 
                                                        |
| 1185 | - 'OC\\BackgroundJob\\JobList' => __DIR__ . '/../../..' . '/lib/private/BackgroundJob/JobList.php',  | 
                                                        |
| 1186 | - 'OC\\BinaryFinder' => __DIR__ . '/../../..' . '/lib/private/BinaryFinder.php',  | 
                                                        |
| 1187 | - 'OC\\Blurhash\\Listener\\GenerateBlurhashMetadata' => __DIR__ . '/../../..' . '/lib/private/Blurhash/Listener/GenerateBlurhashMetadata.php',  | 
                                                        |
| 1188 | - 'OC\\Broadcast\\Events\\BroadcastEvent' => __DIR__ . '/../../..' . '/lib/private/Broadcast/Events/BroadcastEvent.php',  | 
                                                        |
| 1189 | - 'OC\\Cache\\CappedMemoryCache' => __DIR__ . '/../../..' . '/lib/private/Cache/CappedMemoryCache.php',  | 
                                                        |
| 1190 | - 'OC\\Cache\\File' => __DIR__ . '/../../..' . '/lib/private/Cache/File.php',  | 
                                                        |
| 1191 | - 'OC\\Calendar\\AvailabilityResult' => __DIR__ . '/../../..' . '/lib/private/Calendar/AvailabilityResult.php',  | 
                                                        |
| 1192 | - 'OC\\Calendar\\CalendarEventBuilder' => __DIR__ . '/../../..' . '/lib/private/Calendar/CalendarEventBuilder.php',  | 
                                                        |
| 1193 | - 'OC\\Calendar\\CalendarQuery' => __DIR__ . '/../../..' . '/lib/private/Calendar/CalendarQuery.php',  | 
                                                        |
| 1194 | - 'OC\\Calendar\\Manager' => __DIR__ . '/../../..' . '/lib/private/Calendar/Manager.php',  | 
                                                        |
| 1195 | - 'OC\\Calendar\\Resource\\Manager' => __DIR__ . '/../../..' . '/lib/private/Calendar/Resource/Manager.php',  | 
                                                        |
| 1196 | - 'OC\\Calendar\\ResourcesRoomsUpdater' => __DIR__ . '/../../..' . '/lib/private/Calendar/ResourcesRoomsUpdater.php',  | 
                                                        |
| 1197 | - 'OC\\Calendar\\Room\\Manager' => __DIR__ . '/../../..' . '/lib/private/Calendar/Room/Manager.php',  | 
                                                        |
| 1198 | - 'OC\\CapabilitiesManager' => __DIR__ . '/../../..' . '/lib/private/CapabilitiesManager.php',  | 
                                                        |
| 1199 | - 'OC\\Collaboration\\AutoComplete\\Manager' => __DIR__ . '/../../..' . '/lib/private/Collaboration/AutoComplete/Manager.php',  | 
                                                        |
| 1200 | - 'OC\\Collaboration\\Collaborators\\GroupPlugin' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Collaborators/GroupPlugin.php',  | 
                                                        |
| 1201 | - 'OC\\Collaboration\\Collaborators\\LookupPlugin' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Collaborators/LookupPlugin.php',  | 
                                                        |
| 1202 | - 'OC\\Collaboration\\Collaborators\\MailPlugin' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Collaborators/MailPlugin.php',  | 
                                                        |
| 1203 | - 'OC\\Collaboration\\Collaborators\\RemoteGroupPlugin' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Collaborators/RemoteGroupPlugin.php',  | 
                                                        |
| 1204 | - 'OC\\Collaboration\\Collaborators\\RemotePlugin' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Collaborators/RemotePlugin.php',  | 
                                                        |
| 1205 | - 'OC\\Collaboration\\Collaborators\\Search' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Collaborators/Search.php',  | 
                                                        |
| 1206 | - 'OC\\Collaboration\\Collaborators\\SearchResult' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Collaborators/SearchResult.php',  | 
                                                        |
| 1207 | - 'OC\\Collaboration\\Collaborators\\UserPlugin' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Collaborators/UserPlugin.php',  | 
                                                        |
| 1208 | - 'OC\\Collaboration\\Reference\\File\\FileReferenceEventListener' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Reference/File/FileReferenceEventListener.php',  | 
                                                        |
| 1209 | - 'OC\\Collaboration\\Reference\\File\\FileReferenceProvider' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Reference/File/FileReferenceProvider.php',  | 
                                                        |
| 1210 | - 'OC\\Collaboration\\Reference\\LinkReferenceProvider' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Reference/LinkReferenceProvider.php',  | 
                                                        |
| 1211 | - 'OC\\Collaboration\\Reference\\ReferenceManager' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Reference/ReferenceManager.php',  | 
                                                        |
| 1212 | - 'OC\\Collaboration\\Reference\\RenderReferenceEventListener' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Reference/RenderReferenceEventListener.php',  | 
                                                        |
| 1213 | - 'OC\\Collaboration\\Resources\\Collection' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Resources/Collection.php',  | 
                                                        |
| 1214 | - 'OC\\Collaboration\\Resources\\Listener' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Resources/Listener.php',  | 
                                                        |
| 1215 | - 'OC\\Collaboration\\Resources\\Manager' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Resources/Manager.php',  | 
                                                        |
| 1216 | - 'OC\\Collaboration\\Resources\\ProviderManager' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Resources/ProviderManager.php',  | 
                                                        |
| 1217 | - 'OC\\Collaboration\\Resources\\Resource' => __DIR__ . '/../../..' . '/lib/private/Collaboration/Resources/Resource.php',  | 
                                                        |
| 1218 | - 'OC\\Color' => __DIR__ . '/../../..' . '/lib/private/Color.php',  | 
                                                        |
| 1219 | - 'OC\\Command\\AsyncBus' => __DIR__ . '/../../..' . '/lib/private/Command/AsyncBus.php',  | 
                                                        |
| 1220 | - 'OC\\Command\\CallableJob' => __DIR__ . '/../../..' . '/lib/private/Command/CallableJob.php',  | 
                                                        |
| 1221 | - 'OC\\Command\\ClosureJob' => __DIR__ . '/../../..' . '/lib/private/Command/ClosureJob.php',  | 
                                                        |
| 1222 | - 'OC\\Command\\CommandJob' => __DIR__ . '/../../..' . '/lib/private/Command/CommandJob.php',  | 
                                                        |
| 1223 | - 'OC\\Command\\CronBus' => __DIR__ . '/../../..' . '/lib/private/Command/CronBus.php',  | 
                                                        |
| 1224 | - 'OC\\Command\\FileAccess' => __DIR__ . '/../../..' . '/lib/private/Command/FileAccess.php',  | 
                                                        |
| 1225 | - 'OC\\Command\\QueueBus' => __DIR__ . '/../../..' . '/lib/private/Command/QueueBus.php',  | 
                                                        |
| 1226 | - 'OC\\Comments\\Comment' => __DIR__ . '/../../..' . '/lib/private/Comments/Comment.php',  | 
                                                        |
| 1227 | - 'OC\\Comments\\Manager' => __DIR__ . '/../../..' . '/lib/private/Comments/Manager.php',  | 
                                                        |
| 1228 | - 'OC\\Comments\\ManagerFactory' => __DIR__ . '/../../..' . '/lib/private/Comments/ManagerFactory.php',  | 
                                                        |
| 1229 | - 'OC\\Config' => __DIR__ . '/../../..' . '/lib/private/Config.php',  | 
                                                        |
| 1230 | - 'OC\\Config\\Lexicon\\CoreConfigLexicon' => __DIR__ . '/../../..' . '/lib/private/Config/Lexicon/CoreConfigLexicon.php',  | 
                                                        |
| 1231 | - 'OC\\Config\\UserConfig' => __DIR__ . '/../../..' . '/lib/private/Config/UserConfig.php',  | 
                                                        |
| 1232 | - 'OC\\Console\\Application' => __DIR__ . '/../../..' . '/lib/private/Console/Application.php',  | 
                                                        |
| 1233 | - 'OC\\Console\\TimestampFormatter' => __DIR__ . '/../../..' . '/lib/private/Console/TimestampFormatter.php',  | 
                                                        |
| 1234 | - 'OC\\ContactsManager' => __DIR__ . '/../../..' . '/lib/private/ContactsManager.php',  | 
                                                        |
| 1235 | - 'OC\\Contacts\\ContactsMenu\\ActionFactory' => __DIR__ . '/../../..' . '/lib/private/Contacts/ContactsMenu/ActionFactory.php',  | 
                                                        |
| 1236 | - 'OC\\Contacts\\ContactsMenu\\ActionProviderStore' => __DIR__ . '/../../..' . '/lib/private/Contacts/ContactsMenu/ActionProviderStore.php',  | 
                                                        |
| 1237 | - 'OC\\Contacts\\ContactsMenu\\Actions\\LinkAction' => __DIR__ . '/../../..' . '/lib/private/Contacts/ContactsMenu/Actions/LinkAction.php',  | 
                                                        |
| 1238 | - 'OC\\Contacts\\ContactsMenu\\ContactsStore' => __DIR__ . '/../../..' . '/lib/private/Contacts/ContactsMenu/ContactsStore.php',  | 
                                                        |
| 1239 | - 'OC\\Contacts\\ContactsMenu\\Entry' => __DIR__ . '/../../..' . '/lib/private/Contacts/ContactsMenu/Entry.php',  | 
                                                        |
| 1240 | - 'OC\\Contacts\\ContactsMenu\\Manager' => __DIR__ . '/../../..' . '/lib/private/Contacts/ContactsMenu/Manager.php',  | 
                                                        |
| 1241 | - 'OC\\Contacts\\ContactsMenu\\Providers\\EMailProvider' => __DIR__ . '/../../..' . '/lib/private/Contacts/ContactsMenu/Providers/EMailProvider.php',  | 
                                                        |
| 1242 | - 'OC\\Contacts\\ContactsMenu\\Providers\\LocalTimeProvider' => __DIR__ . '/../../..' . '/lib/private/Contacts/ContactsMenu/Providers/LocalTimeProvider.php',  | 
                                                        |
| 1243 | - 'OC\\Contacts\\ContactsMenu\\Providers\\ProfileProvider' => __DIR__ . '/../../..' . '/lib/private/Contacts/ContactsMenu/Providers/ProfileProvider.php',  | 
                                                        |
| 1244 | - 'OC\\Core\\Application' => __DIR__ . '/../../..' . '/core/Application.php',  | 
                                                        |
| 1245 | - 'OC\\Core\\BackgroundJobs\\BackgroundCleanupUpdaterBackupsJob' => __DIR__ . '/../../..' . '/core/BackgroundJobs/BackgroundCleanupUpdaterBackupsJob.php',  | 
                                                        |
| 1246 | - 'OC\\Core\\BackgroundJobs\\CheckForUserCertificates' => __DIR__ . '/../../..' . '/core/BackgroundJobs/CheckForUserCertificates.php',  | 
                                                        |
| 1247 | - 'OC\\Core\\BackgroundJobs\\CleanupLoginFlowV2' => __DIR__ . '/../../..' . '/core/BackgroundJobs/CleanupLoginFlowV2.php',  | 
                                                        |
| 1248 | - 'OC\\Core\\BackgroundJobs\\GenerateMetadataJob' => __DIR__ . '/../../..' . '/core/BackgroundJobs/GenerateMetadataJob.php',  | 
                                                        |
| 1249 | - 'OC\\Core\\BackgroundJobs\\LookupServerSendCheckBackgroundJob' => __DIR__ . '/../../..' . '/core/BackgroundJobs/LookupServerSendCheckBackgroundJob.php',  | 
                                                        |
| 1250 | - 'OC\\Core\\Command\\App\\Disable' => __DIR__ . '/../../..' . '/core/Command/App/Disable.php',  | 
                                                        |
| 1251 | - 'OC\\Core\\Command\\App\\Enable' => __DIR__ . '/../../..' . '/core/Command/App/Enable.php',  | 
                                                        |
| 1252 | - 'OC\\Core\\Command\\App\\GetPath' => __DIR__ . '/../../..' . '/core/Command/App/GetPath.php',  | 
                                                        |
| 1253 | - 'OC\\Core\\Command\\App\\Install' => __DIR__ . '/../../..' . '/core/Command/App/Install.php',  | 
                                                        |
| 1254 | - 'OC\\Core\\Command\\App\\ListApps' => __DIR__ . '/../../..' . '/core/Command/App/ListApps.php',  | 
                                                        |
| 1255 | - 'OC\\Core\\Command\\App\\Remove' => __DIR__ . '/../../..' . '/core/Command/App/Remove.php',  | 
                                                        |
| 1256 | - 'OC\\Core\\Command\\App\\Update' => __DIR__ . '/../../..' . '/core/Command/App/Update.php',  | 
                                                        |
| 1257 | - 'OC\\Core\\Command\\Background\\Delete' => __DIR__ . '/../../..' . '/core/Command/Background/Delete.php',  | 
                                                        |
| 1258 | - 'OC\\Core\\Command\\Background\\Job' => __DIR__ . '/../../..' . '/core/Command/Background/Job.php',  | 
                                                        |
| 1259 | - 'OC\\Core\\Command\\Background\\JobBase' => __DIR__ . '/../../..' . '/core/Command/Background/JobBase.php',  | 
                                                        |
| 1260 | - 'OC\\Core\\Command\\Background\\JobWorker' => __DIR__ . '/../../..' . '/core/Command/Background/JobWorker.php',  | 
                                                        |
| 1261 | - 'OC\\Core\\Command\\Background\\ListCommand' => __DIR__ . '/../../..' . '/core/Command/Background/ListCommand.php',  | 
                                                        |
| 1262 | - 'OC\\Core\\Command\\Background\\Mode' => __DIR__ . '/../../..' . '/core/Command/Background/Mode.php',  | 
                                                        |
| 1263 | - 'OC\\Core\\Command\\Base' => __DIR__ . '/../../..' . '/core/Command/Base.php',  | 
                                                        |
| 1264 | - 'OC\\Core\\Command\\Broadcast\\Test' => __DIR__ . '/../../..' . '/core/Command/Broadcast/Test.php',  | 
                                                        |
| 1265 | - 'OC\\Core\\Command\\Check' => __DIR__ . '/../../..' . '/core/Command/Check.php',  | 
                                                        |
| 1266 | - 'OC\\Core\\Command\\Config\\App\\Base' => __DIR__ . '/../../..' . '/core/Command/Config/App/Base.php',  | 
                                                        |
| 1267 | - 'OC\\Core\\Command\\Config\\App\\DeleteConfig' => __DIR__ . '/../../..' . '/core/Command/Config/App/DeleteConfig.php',  | 
                                                        |
| 1268 | - 'OC\\Core\\Command\\Config\\App\\GetConfig' => __DIR__ . '/../../..' . '/core/Command/Config/App/GetConfig.php',  | 
                                                        |
| 1269 | - 'OC\\Core\\Command\\Config\\App\\SetConfig' => __DIR__ . '/../../..' . '/core/Command/Config/App/SetConfig.php',  | 
                                                        |
| 1270 | - 'OC\\Core\\Command\\Config\\Import' => __DIR__ . '/../../..' . '/core/Command/Config/Import.php',  | 
                                                        |
| 1271 | - 'OC\\Core\\Command\\Config\\ListConfigs' => __DIR__ . '/../../..' . '/core/Command/Config/ListConfigs.php',  | 
                                                        |
| 1272 | - 'OC\\Core\\Command\\Config\\System\\Base' => __DIR__ . '/../../..' . '/core/Command/Config/System/Base.php',  | 
                                                        |
| 1273 | - 'OC\\Core\\Command\\Config\\System\\DeleteConfig' => __DIR__ . '/../../..' . '/core/Command/Config/System/DeleteConfig.php',  | 
                                                        |
| 1274 | - 'OC\\Core\\Command\\Config\\System\\GetConfig' => __DIR__ . '/../../..' . '/core/Command/Config/System/GetConfig.php',  | 
                                                        |
| 1275 | - 'OC\\Core\\Command\\Config\\System\\SetConfig' => __DIR__ . '/../../..' . '/core/Command/Config/System/SetConfig.php',  | 
                                                        |
| 1276 | - 'OC\\Core\\Command\\Db\\AddMissingColumns' => __DIR__ . '/../../..' . '/core/Command/Db/AddMissingColumns.php',  | 
                                                        |
| 1277 | - 'OC\\Core\\Command\\Db\\AddMissingIndices' => __DIR__ . '/../../..' . '/core/Command/Db/AddMissingIndices.php',  | 
                                                        |
| 1278 | - 'OC\\Core\\Command\\Db\\AddMissingPrimaryKeys' => __DIR__ . '/../../..' . '/core/Command/Db/AddMissingPrimaryKeys.php',  | 
                                                        |
| 1279 | - 'OC\\Core\\Command\\Db\\ConvertFilecacheBigInt' => __DIR__ . '/../../..' . '/core/Command/Db/ConvertFilecacheBigInt.php',  | 
                                                        |
| 1280 | - 'OC\\Core\\Command\\Db\\ConvertMysqlToMB4' => __DIR__ . '/../../..' . '/core/Command/Db/ConvertMysqlToMB4.php',  | 
                                                        |
| 1281 | - 'OC\\Core\\Command\\Db\\ConvertType' => __DIR__ . '/../../..' . '/core/Command/Db/ConvertType.php',  | 
                                                        |
| 1282 | - 'OC\\Core\\Command\\Db\\ExpectedSchema' => __DIR__ . '/../../..' . '/core/Command/Db/ExpectedSchema.php',  | 
                                                        |
| 1283 | - 'OC\\Core\\Command\\Db\\ExportSchema' => __DIR__ . '/../../..' . '/core/Command/Db/ExportSchema.php',  | 
                                                        |
| 1284 | - 'OC\\Core\\Command\\Db\\Migrations\\ExecuteCommand' => __DIR__ . '/../../..' . '/core/Command/Db/Migrations/ExecuteCommand.php',  | 
                                                        |
| 1285 | - 'OC\\Core\\Command\\Db\\Migrations\\GenerateCommand' => __DIR__ . '/../../..' . '/core/Command/Db/Migrations/GenerateCommand.php',  | 
                                                        |
| 1286 | - 'OC\\Core\\Command\\Db\\Migrations\\GenerateMetadataCommand' => __DIR__ . '/../../..' . '/core/Command/Db/Migrations/GenerateMetadataCommand.php',  | 
                                                        |
| 1287 | - 'OC\\Core\\Command\\Db\\Migrations\\MigrateCommand' => __DIR__ . '/../../..' . '/core/Command/Db/Migrations/MigrateCommand.php',  | 
                                                        |
| 1288 | - 'OC\\Core\\Command\\Db\\Migrations\\PreviewCommand' => __DIR__ . '/../../..' . '/core/Command/Db/Migrations/PreviewCommand.php',  | 
                                                        |
| 1289 | - 'OC\\Core\\Command\\Db\\Migrations\\StatusCommand' => __DIR__ . '/../../..' . '/core/Command/Db/Migrations/StatusCommand.php',  | 
                                                        |
| 1290 | - 'OC\\Core\\Command\\Db\\SchemaEncoder' => __DIR__ . '/../../..' . '/core/Command/Db/SchemaEncoder.php',  | 
                                                        |
| 1291 | - 'OC\\Core\\Command\\Encryption\\ChangeKeyStorageRoot' => __DIR__ . '/../../..' . '/core/Command/Encryption/ChangeKeyStorageRoot.php',  | 
                                                        |
| 1292 | - 'OC\\Core\\Command\\Encryption\\DecryptAll' => __DIR__ . '/../../..' . '/core/Command/Encryption/DecryptAll.php',  | 
                                                        |
| 1293 | - 'OC\\Core\\Command\\Encryption\\Disable' => __DIR__ . '/../../..' . '/core/Command/Encryption/Disable.php',  | 
                                                        |
| 1294 | - 'OC\\Core\\Command\\Encryption\\Enable' => __DIR__ . '/../../..' . '/core/Command/Encryption/Enable.php',  | 
                                                        |
| 1295 | - 'OC\\Core\\Command\\Encryption\\EncryptAll' => __DIR__ . '/../../..' . '/core/Command/Encryption/EncryptAll.php',  | 
                                                        |
| 1296 | - 'OC\\Core\\Command\\Encryption\\ListModules' => __DIR__ . '/../../..' . '/core/Command/Encryption/ListModules.php',  | 
                                                        |
| 1297 | - 'OC\\Core\\Command\\Encryption\\MigrateKeyStorage' => __DIR__ . '/../../..' . '/core/Command/Encryption/MigrateKeyStorage.php',  | 
                                                        |
| 1298 | - 'OC\\Core\\Command\\Encryption\\SetDefaultModule' => __DIR__ . '/../../..' . '/core/Command/Encryption/SetDefaultModule.php',  | 
                                                        |
| 1299 | - 'OC\\Core\\Command\\Encryption\\ShowKeyStorageRoot' => __DIR__ . '/../../..' . '/core/Command/Encryption/ShowKeyStorageRoot.php',  | 
                                                        |
| 1300 | - 'OC\\Core\\Command\\Encryption\\Status' => __DIR__ . '/../../..' . '/core/Command/Encryption/Status.php',  | 
                                                        |
| 1301 | - 'OC\\Core\\Command\\FilesMetadata\\Get' => __DIR__ . '/../../..' . '/core/Command/FilesMetadata/Get.php',  | 
                                                        |
| 1302 | - 'OC\\Core\\Command\\Group\\Add' => __DIR__ . '/../../..' . '/core/Command/Group/Add.php',  | 
                                                        |
| 1303 | - 'OC\\Core\\Command\\Group\\AddUser' => __DIR__ . '/../../..' . '/core/Command/Group/AddUser.php',  | 
                                                        |
| 1304 | - 'OC\\Core\\Command\\Group\\Delete' => __DIR__ . '/../../..' . '/core/Command/Group/Delete.php',  | 
                                                        |
| 1305 | - 'OC\\Core\\Command\\Group\\Info' => __DIR__ . '/../../..' . '/core/Command/Group/Info.php',  | 
                                                        |
| 1306 | - 'OC\\Core\\Command\\Group\\ListCommand' => __DIR__ . '/../../..' . '/core/Command/Group/ListCommand.php',  | 
                                                        |
| 1307 | - 'OC\\Core\\Command\\Group\\RemoveUser' => __DIR__ . '/../../..' . '/core/Command/Group/RemoveUser.php',  | 
                                                        |
| 1308 | - 'OC\\Core\\Command\\Info\\File' => __DIR__ . '/../../..' . '/core/Command/Info/File.php',  | 
                                                        |
| 1309 | - 'OC\\Core\\Command\\Info\\FileUtils' => __DIR__ . '/../../..' . '/core/Command/Info/FileUtils.php',  | 
                                                        |
| 1310 | - 'OC\\Core\\Command\\Info\\Space' => __DIR__ . '/../../..' . '/core/Command/Info/Space.php',  | 
                                                        |
| 1311 | - 'OC\\Core\\Command\\Integrity\\CheckApp' => __DIR__ . '/../../..' . '/core/Command/Integrity/CheckApp.php',  | 
                                                        |
| 1312 | - 'OC\\Core\\Command\\Integrity\\CheckCore' => __DIR__ . '/../../..' . '/core/Command/Integrity/CheckCore.php',  | 
                                                        |
| 1313 | - 'OC\\Core\\Command\\Integrity\\SignApp' => __DIR__ . '/../../..' . '/core/Command/Integrity/SignApp.php',  | 
                                                        |
| 1314 | - 'OC\\Core\\Command\\Integrity\\SignCore' => __DIR__ . '/../../..' . '/core/Command/Integrity/SignCore.php',  | 
                                                        |
| 1315 | - 'OC\\Core\\Command\\InterruptedException' => __DIR__ . '/../../..' . '/core/Command/InterruptedException.php',  | 
                                                        |
| 1316 | - 'OC\\Core\\Command\\L10n\\CreateJs' => __DIR__ . '/../../..' . '/core/Command/L10n/CreateJs.php',  | 
                                                        |
| 1317 | - 'OC\\Core\\Command\\Log\\File' => __DIR__ . '/../../..' . '/core/Command/Log/File.php',  | 
                                                        |
| 1318 | - 'OC\\Core\\Command\\Log\\Manage' => __DIR__ . '/../../..' . '/core/Command/Log/Manage.php',  | 
                                                        |
| 1319 | - 'OC\\Core\\Command\\Maintenance\\DataFingerprint' => __DIR__ . '/../../..' . '/core/Command/Maintenance/DataFingerprint.php',  | 
                                                        |
| 1320 | - 'OC\\Core\\Command\\Maintenance\\Install' => __DIR__ . '/../../..' . '/core/Command/Maintenance/Install.php',  | 
                                                        |
| 1321 | - 'OC\\Core\\Command\\Maintenance\\Mimetype\\GenerateMimetypeFileBuilder' => __DIR__ . '/../../..' . '/core/Command/Maintenance/Mimetype/GenerateMimetypeFileBuilder.php',  | 
                                                        |
| 1322 | - 'OC\\Core\\Command\\Maintenance\\Mimetype\\UpdateDB' => __DIR__ . '/../../..' . '/core/Command/Maintenance/Mimetype/UpdateDB.php',  | 
                                                        |
| 1323 | - 'OC\\Core\\Command\\Maintenance\\Mimetype\\UpdateJS' => __DIR__ . '/../../..' . '/core/Command/Maintenance/Mimetype/UpdateJS.php',  | 
                                                        |
| 1324 | - 'OC\\Core\\Command\\Maintenance\\Mode' => __DIR__ . '/../../..' . '/core/Command/Maintenance/Mode.php',  | 
                                                        |
| 1325 | - 'OC\\Core\\Command\\Maintenance\\Repair' => __DIR__ . '/../../..' . '/core/Command/Maintenance/Repair.php',  | 
                                                        |
| 1326 | - 'OC\\Core\\Command\\Maintenance\\RepairShareOwnership' => __DIR__ . '/../../..' . '/core/Command/Maintenance/RepairShareOwnership.php',  | 
                                                        |
| 1327 | - 'OC\\Core\\Command\\Maintenance\\UpdateHtaccess' => __DIR__ . '/../../..' . '/core/Command/Maintenance/UpdateHtaccess.php',  | 
                                                        |
| 1328 | - 'OC\\Core\\Command\\Maintenance\\UpdateTheme' => __DIR__ . '/../../..' . '/core/Command/Maintenance/UpdateTheme.php',  | 
                                                        |
| 1329 | - 'OC\\Core\\Command\\Memcache\\RedisCommand' => __DIR__ . '/../../..' . '/core/Command/Memcache/RedisCommand.php',  | 
                                                        |
| 1330 | - 'OC\\Core\\Command\\Preview\\Cleanup' => __DIR__ . '/../../..' . '/core/Command/Preview/Cleanup.php',  | 
                                                        |
| 1331 | - 'OC\\Core\\Command\\Preview\\Generate' => __DIR__ . '/../../..' . '/core/Command/Preview/Generate.php',  | 
                                                        |
| 1332 | - 'OC\\Core\\Command\\Preview\\Repair' => __DIR__ . '/../../..' . '/core/Command/Preview/Repair.php',  | 
                                                        |
| 1333 | - 'OC\\Core\\Command\\Preview\\ResetRenderedTexts' => __DIR__ . '/../../..' . '/core/Command/Preview/ResetRenderedTexts.php',  | 
                                                        |
| 1334 | - 'OC\\Core\\Command\\Security\\BruteforceAttempts' => __DIR__ . '/../../..' . '/core/Command/Security/BruteforceAttempts.php',  | 
                                                        |
| 1335 | - 'OC\\Core\\Command\\Security\\BruteforceResetAttempts' => __DIR__ . '/../../..' . '/core/Command/Security/BruteforceResetAttempts.php',  | 
                                                        |
| 1336 | - 'OC\\Core\\Command\\Security\\ExportCertificates' => __DIR__ . '/../../..' . '/core/Command/Security/ExportCertificates.php',  | 
                                                        |
| 1337 | - 'OC\\Core\\Command\\Security\\ImportCertificate' => __DIR__ . '/../../..' . '/core/Command/Security/ImportCertificate.php',  | 
                                                        |
| 1338 | - 'OC\\Core\\Command\\Security\\ListCertificates' => __DIR__ . '/../../..' . '/core/Command/Security/ListCertificates.php',  | 
                                                        |
| 1339 | - 'OC\\Core\\Command\\Security\\RemoveCertificate' => __DIR__ . '/../../..' . '/core/Command/Security/RemoveCertificate.php',  | 
                                                        |
| 1340 | - 'OC\\Core\\Command\\SetupChecks' => __DIR__ . '/../../..' . '/core/Command/SetupChecks.php',  | 
                                                        |
| 1341 | - 'OC\\Core\\Command\\Status' => __DIR__ . '/../../..' . '/core/Command/Status.php',  | 
                                                        |
| 1342 | - 'OC\\Core\\Command\\SystemTag\\Add' => __DIR__ . '/../../..' . '/core/Command/SystemTag/Add.php',  | 
                                                        |
| 1343 | - 'OC\\Core\\Command\\SystemTag\\Delete' => __DIR__ . '/../../..' . '/core/Command/SystemTag/Delete.php',  | 
                                                        |
| 1344 | - 'OC\\Core\\Command\\SystemTag\\Edit' => __DIR__ . '/../../..' . '/core/Command/SystemTag/Edit.php',  | 
                                                        |
| 1345 | - 'OC\\Core\\Command\\SystemTag\\ListCommand' => __DIR__ . '/../../..' . '/core/Command/SystemTag/ListCommand.php',  | 
                                                        |
| 1346 | - 'OC\\Core\\Command\\TaskProcessing\\EnabledCommand' => __DIR__ . '/../../..' . '/core/Command/TaskProcessing/EnabledCommand.php',  | 
                                                        |
| 1347 | - 'OC\\Core\\Command\\TaskProcessing\\GetCommand' => __DIR__ . '/../../..' . '/core/Command/TaskProcessing/GetCommand.php',  | 
                                                        |
| 1348 | - 'OC\\Core\\Command\\TaskProcessing\\ListCommand' => __DIR__ . '/../../..' . '/core/Command/TaskProcessing/ListCommand.php',  | 
                                                        |
| 1349 | - 'OC\\Core\\Command\\TaskProcessing\\Statistics' => __DIR__ . '/../../..' . '/core/Command/TaskProcessing/Statistics.php',  | 
                                                        |
| 1350 | - 'OC\\Core\\Command\\TwoFactorAuth\\Base' => __DIR__ . '/../../..' . '/core/Command/TwoFactorAuth/Base.php',  | 
                                                        |
| 1351 | - 'OC\\Core\\Command\\TwoFactorAuth\\Cleanup' => __DIR__ . '/../../..' . '/core/Command/TwoFactorAuth/Cleanup.php',  | 
                                                        |
| 1352 | - 'OC\\Core\\Command\\TwoFactorAuth\\Disable' => __DIR__ . '/../../..' . '/core/Command/TwoFactorAuth/Disable.php',  | 
                                                        |
| 1353 | - 'OC\\Core\\Command\\TwoFactorAuth\\Enable' => __DIR__ . '/../../..' . '/core/Command/TwoFactorAuth/Enable.php',  | 
                                                        |
| 1354 | - 'OC\\Core\\Command\\TwoFactorAuth\\Enforce' => __DIR__ . '/../../..' . '/core/Command/TwoFactorAuth/Enforce.php',  | 
                                                        |
| 1355 | - 'OC\\Core\\Command\\TwoFactorAuth\\State' => __DIR__ . '/../../..' . '/core/Command/TwoFactorAuth/State.php',  | 
                                                        |
| 1356 | - 'OC\\Core\\Command\\Upgrade' => __DIR__ . '/../../..' . '/core/Command/Upgrade.php',  | 
                                                        |
| 1357 | - 'OC\\Core\\Command\\User\\Add' => __DIR__ . '/../../..' . '/core/Command/User/Add.php',  | 
                                                        |
| 1358 | - 'OC\\Core\\Command\\User\\AuthTokens\\Add' => __DIR__ . '/../../..' . '/core/Command/User/AuthTokens/Add.php',  | 
                                                        |
| 1359 | - 'OC\\Core\\Command\\User\\AuthTokens\\Delete' => __DIR__ . '/../../..' . '/core/Command/User/AuthTokens/Delete.php',  | 
                                                        |
| 1360 | - 'OC\\Core\\Command\\User\\AuthTokens\\ListCommand' => __DIR__ . '/../../..' . '/core/Command/User/AuthTokens/ListCommand.php',  | 
                                                        |
| 1361 | - 'OC\\Core\\Command\\User\\ClearGeneratedAvatarCacheCommand' => __DIR__ . '/../../..' . '/core/Command/User/ClearGeneratedAvatarCacheCommand.php',  | 
                                                        |
| 1362 | - 'OC\\Core\\Command\\User\\Delete' => __DIR__ . '/../../..' . '/core/Command/User/Delete.php',  | 
                                                        |
| 1363 | - 'OC\\Core\\Command\\User\\Disable' => __DIR__ . '/../../..' . '/core/Command/User/Disable.php',  | 
                                                        |
| 1364 | - 'OC\\Core\\Command\\User\\Enable' => __DIR__ . '/../../..' . '/core/Command/User/Enable.php',  | 
                                                        |
| 1365 | - 'OC\\Core\\Command\\User\\Info' => __DIR__ . '/../../..' . '/core/Command/User/Info.php',  | 
                                                        |
| 1366 | - 'OC\\Core\\Command\\User\\Keys\\Verify' => __DIR__ . '/../../..' . '/core/Command/User/Keys/Verify.php',  | 
                                                        |
| 1367 | - 'OC\\Core\\Command\\User\\LastSeen' => __DIR__ . '/../../..' . '/core/Command/User/LastSeen.php',  | 
                                                        |
| 1368 | - 'OC\\Core\\Command\\User\\ListCommand' => __DIR__ . '/../../..' . '/core/Command/User/ListCommand.php',  | 
                                                        |
| 1369 | - 'OC\\Core\\Command\\User\\Report' => __DIR__ . '/../../..' . '/core/Command/User/Report.php',  | 
                                                        |
| 1370 | - 'OC\\Core\\Command\\User\\ResetPassword' => __DIR__ . '/../../..' . '/core/Command/User/ResetPassword.php',  | 
                                                        |
| 1371 | - 'OC\\Core\\Command\\User\\Setting' => __DIR__ . '/../../..' . '/core/Command/User/Setting.php',  | 
                                                        |
| 1372 | - 'OC\\Core\\Command\\User\\SyncAccountDataCommand' => __DIR__ . '/../../..' . '/core/Command/User/SyncAccountDataCommand.php',  | 
                                                        |
| 1373 | - 'OC\\Core\\Command\\User\\Welcome' => __DIR__ . '/../../..' . '/core/Command/User/Welcome.php',  | 
                                                        |
| 1374 | - 'OC\\Core\\Controller\\AppPasswordController' => __DIR__ . '/../../..' . '/core/Controller/AppPasswordController.php',  | 
                                                        |
| 1375 | - 'OC\\Core\\Controller\\AutoCompleteController' => __DIR__ . '/../../..' . '/core/Controller/AutoCompleteController.php',  | 
                                                        |
| 1376 | - 'OC\\Core\\Controller\\AvatarController' => __DIR__ . '/../../..' . '/core/Controller/AvatarController.php',  | 
                                                        |
| 1377 | - 'OC\\Core\\Controller\\CSRFTokenController' => __DIR__ . '/../../..' . '/core/Controller/CSRFTokenController.php',  | 
                                                        |
| 1378 | - 'OC\\Core\\Controller\\ClientFlowLoginController' => __DIR__ . '/../../..' . '/core/Controller/ClientFlowLoginController.php',  | 
                                                        |
| 1379 | - 'OC\\Core\\Controller\\ClientFlowLoginV2Controller' => __DIR__ . '/../../..' . '/core/Controller/ClientFlowLoginV2Controller.php',  | 
                                                        |
| 1380 | - 'OC\\Core\\Controller\\CollaborationResourcesController' => __DIR__ . '/../../..' . '/core/Controller/CollaborationResourcesController.php',  | 
                                                        |
| 1381 | - 'OC\\Core\\Controller\\ContactsMenuController' => __DIR__ . '/../../..' . '/core/Controller/ContactsMenuController.php',  | 
                                                        |
| 1382 | - 'OC\\Core\\Controller\\CssController' => __DIR__ . '/../../..' . '/core/Controller/CssController.php',  | 
                                                        |
| 1383 | - 'OC\\Core\\Controller\\ErrorController' => __DIR__ . '/../../..' . '/core/Controller/ErrorController.php',  | 
                                                        |
| 1384 | - 'OC\\Core\\Controller\\GuestAvatarController' => __DIR__ . '/../../..' . '/core/Controller/GuestAvatarController.php',  | 
                                                        |
| 1385 | - 'OC\\Core\\Controller\\HoverCardController' => __DIR__ . '/../../..' . '/core/Controller/HoverCardController.php',  | 
                                                        |
| 1386 | - 'OC\\Core\\Controller\\JsController' => __DIR__ . '/../../..' . '/core/Controller/JsController.php',  | 
                                                        |
| 1387 | - 'OC\\Core\\Controller\\LoginController' => __DIR__ . '/../../..' . '/core/Controller/LoginController.php',  | 
                                                        |
| 1388 | - 'OC\\Core\\Controller\\LostController' => __DIR__ . '/../../..' . '/core/Controller/LostController.php',  | 
                                                        |
| 1389 | - 'OC\\Core\\Controller\\NavigationController' => __DIR__ . '/../../..' . '/core/Controller/NavigationController.php',  | 
                                                        |
| 1390 | - 'OC\\Core\\Controller\\OCJSController' => __DIR__ . '/../../..' . '/core/Controller/OCJSController.php',  | 
                                                        |
| 1391 | - 'OC\\Core\\Controller\\OCMController' => __DIR__ . '/../../..' . '/core/Controller/OCMController.php',  | 
                                                        |
| 1392 | - 'OC\\Core\\Controller\\OCSController' => __DIR__ . '/../../..' . '/core/Controller/OCSController.php',  | 
                                                        |
| 1393 | - 'OC\\Core\\Controller\\PreviewController' => __DIR__ . '/../../..' . '/core/Controller/PreviewController.php',  | 
                                                        |
| 1394 | - 'OC\\Core\\Controller\\ProfileApiController' => __DIR__ . '/../../..' . '/core/Controller/ProfileApiController.php',  | 
                                                        |
| 1395 | - 'OC\\Core\\Controller\\RecommendedAppsController' => __DIR__ . '/../../..' . '/core/Controller/RecommendedAppsController.php',  | 
                                                        |
| 1396 | - 'OC\\Core\\Controller\\ReferenceApiController' => __DIR__ . '/../../..' . '/core/Controller/ReferenceApiController.php',  | 
                                                        |
| 1397 | - 'OC\\Core\\Controller\\ReferenceController' => __DIR__ . '/../../..' . '/core/Controller/ReferenceController.php',  | 
                                                        |
| 1398 | - 'OC\\Core\\Controller\\SetupController' => __DIR__ . '/../../..' . '/core/Controller/SetupController.php',  | 
                                                        |
| 1399 | - 'OC\\Core\\Controller\\TaskProcessingApiController' => __DIR__ . '/../../..' . '/core/Controller/TaskProcessingApiController.php',  | 
                                                        |
| 1400 | - 'OC\\Core\\Controller\\TeamsApiController' => __DIR__ . '/../../..' . '/core/Controller/TeamsApiController.php',  | 
                                                        |
| 1401 | - 'OC\\Core\\Controller\\TextProcessingApiController' => __DIR__ . '/../../..' . '/core/Controller/TextProcessingApiController.php',  | 
                                                        |
| 1402 | - 'OC\\Core\\Controller\\TextToImageApiController' => __DIR__ . '/../../..' . '/core/Controller/TextToImageApiController.php',  | 
                                                        |
| 1403 | - 'OC\\Core\\Controller\\TranslationApiController' => __DIR__ . '/../../..' . '/core/Controller/TranslationApiController.php',  | 
                                                        |
| 1404 | - 'OC\\Core\\Controller\\TwoFactorApiController' => __DIR__ . '/../../..' . '/core/Controller/TwoFactorApiController.php',  | 
                                                        |
| 1405 | - 'OC\\Core\\Controller\\TwoFactorChallengeController' => __DIR__ . '/../../..' . '/core/Controller/TwoFactorChallengeController.php',  | 
                                                        |
| 1406 | - 'OC\\Core\\Controller\\UnifiedSearchController' => __DIR__ . '/../../..' . '/core/Controller/UnifiedSearchController.php',  | 
                                                        |
| 1407 | - 'OC\\Core\\Controller\\UnsupportedBrowserController' => __DIR__ . '/../../..' . '/core/Controller/UnsupportedBrowserController.php',  | 
                                                        |
| 1408 | - 'OC\\Core\\Controller\\UserController' => __DIR__ . '/../../..' . '/core/Controller/UserController.php',  | 
                                                        |
| 1409 | - 'OC\\Core\\Controller\\WalledGardenController' => __DIR__ . '/../../..' . '/core/Controller/WalledGardenController.php',  | 
                                                        |
| 1410 | - 'OC\\Core\\Controller\\WebAuthnController' => __DIR__ . '/../../..' . '/core/Controller/WebAuthnController.php',  | 
                                                        |
| 1411 | - 'OC\\Core\\Controller\\WellKnownController' => __DIR__ . '/../../..' . '/core/Controller/WellKnownController.php',  | 
                                                        |
| 1412 | - 'OC\\Core\\Controller\\WhatsNewController' => __DIR__ . '/../../..' . '/core/Controller/WhatsNewController.php',  | 
                                                        |
| 1413 | - 'OC\\Core\\Controller\\WipeController' => __DIR__ . '/../../..' . '/core/Controller/WipeController.php',  | 
                                                        |
| 1414 | - 'OC\\Core\\Data\\LoginFlowV2Credentials' => __DIR__ . '/../../..' . '/core/Data/LoginFlowV2Credentials.php',  | 
                                                        |
| 1415 | - 'OC\\Core\\Data\\LoginFlowV2Tokens' => __DIR__ . '/../../..' . '/core/Data/LoginFlowV2Tokens.php',  | 
                                                        |
| 1416 | - 'OC\\Core\\Db\\LoginFlowV2' => __DIR__ . '/../../..' . '/core/Db/LoginFlowV2.php',  | 
                                                        |
| 1417 | - 'OC\\Core\\Db\\LoginFlowV2Mapper' => __DIR__ . '/../../..' . '/core/Db/LoginFlowV2Mapper.php',  | 
                                                        |
| 1418 | - 'OC\\Core\\Db\\ProfileConfig' => __DIR__ . '/../../..' . '/core/Db/ProfileConfig.php',  | 
                                                        |
| 1419 | - 'OC\\Core\\Db\\ProfileConfigMapper' => __DIR__ . '/../../..' . '/core/Db/ProfileConfigMapper.php',  | 
                                                        |
| 1420 | - 'OC\\Core\\Events\\BeforePasswordResetEvent' => __DIR__ . '/../../..' . '/core/Events/BeforePasswordResetEvent.php',  | 
                                                        |
| 1421 | - 'OC\\Core\\Events\\PasswordResetEvent' => __DIR__ . '/../../..' . '/core/Events/PasswordResetEvent.php',  | 
                                                        |
| 1422 | - 'OC\\Core\\Exception\\LoginFlowV2NotFoundException' => __DIR__ . '/../../..' . '/core/Exception/LoginFlowV2NotFoundException.php',  | 
                                                        |
| 1423 | - 'OC\\Core\\Exception\\ResetPasswordException' => __DIR__ . '/../../..' . '/core/Exception/ResetPasswordException.php',  | 
                                                        |
| 1424 | - 'OC\\Core\\Listener\\BeforeMessageLoggedEventListener' => __DIR__ . '/../../..' . '/core/Listener/BeforeMessageLoggedEventListener.php',  | 
                                                        |
| 1425 | - 'OC\\Core\\Listener\\BeforeTemplateRenderedListener' => __DIR__ . '/../../..' . '/core/Listener/BeforeTemplateRenderedListener.php',  | 
                                                        |
| 1426 | - 'OC\\Core\\Middleware\\TwoFactorMiddleware' => __DIR__ . '/../../..' . '/core/Middleware/TwoFactorMiddleware.php',  | 
                                                        |
| 1427 | - 'OC\\Core\\Migrations\\Version13000Date20170705121758' => __DIR__ . '/../../..' . '/core/Migrations/Version13000Date20170705121758.php',  | 
                                                        |
| 1428 | - 'OC\\Core\\Migrations\\Version13000Date20170718121200' => __DIR__ . '/../../..' . '/core/Migrations/Version13000Date20170718121200.php',  | 
                                                        |
| 1429 | - 'OC\\Core\\Migrations\\Version13000Date20170814074715' => __DIR__ . '/../../..' . '/core/Migrations/Version13000Date20170814074715.php',  | 
                                                        |
| 1430 | - 'OC\\Core\\Migrations\\Version13000Date20170919121250' => __DIR__ . '/../../..' . '/core/Migrations/Version13000Date20170919121250.php',  | 
                                                        |
| 1431 | - 'OC\\Core\\Migrations\\Version13000Date20170926101637' => __DIR__ . '/../../..' . '/core/Migrations/Version13000Date20170926101637.php',  | 
                                                        |
| 1432 | - 'OC\\Core\\Migrations\\Version14000Date20180129121024' => __DIR__ . '/../../..' . '/core/Migrations/Version14000Date20180129121024.php',  | 
                                                        |
| 1433 | - 'OC\\Core\\Migrations\\Version14000Date20180404140050' => __DIR__ . '/../../..' . '/core/Migrations/Version14000Date20180404140050.php',  | 
                                                        |
| 1434 | - 'OC\\Core\\Migrations\\Version14000Date20180516101403' => __DIR__ . '/../../..' . '/core/Migrations/Version14000Date20180516101403.php',  | 
                                                        |
| 1435 | - 'OC\\Core\\Migrations\\Version14000Date20180518120534' => __DIR__ . '/../../..' . '/core/Migrations/Version14000Date20180518120534.php',  | 
                                                        |
| 1436 | - 'OC\\Core\\Migrations\\Version14000Date20180522074438' => __DIR__ . '/../../..' . '/core/Migrations/Version14000Date20180522074438.php',  | 
                                                        |
| 1437 | - 'OC\\Core\\Migrations\\Version14000Date20180626223656' => __DIR__ . '/../../..' . '/core/Migrations/Version14000Date20180626223656.php',  | 
                                                        |
| 1438 | - 'OC\\Core\\Migrations\\Version14000Date20180710092004' => __DIR__ . '/../../..' . '/core/Migrations/Version14000Date20180710092004.php',  | 
                                                        |
| 1439 | - 'OC\\Core\\Migrations\\Version14000Date20180712153140' => __DIR__ . '/../../..' . '/core/Migrations/Version14000Date20180712153140.php',  | 
                                                        |
| 1440 | - 'OC\\Core\\Migrations\\Version15000Date20180926101451' => __DIR__ . '/../../..' . '/core/Migrations/Version15000Date20180926101451.php',  | 
                                                        |
| 1441 | - 'OC\\Core\\Migrations\\Version15000Date20181015062942' => __DIR__ . '/../../..' . '/core/Migrations/Version15000Date20181015062942.php',  | 
                                                        |
| 1442 | - 'OC\\Core\\Migrations\\Version15000Date20181029084625' => __DIR__ . '/../../..' . '/core/Migrations/Version15000Date20181029084625.php',  | 
                                                        |
| 1443 | - 'OC\\Core\\Migrations\\Version16000Date20190207141427' => __DIR__ . '/../../..' . '/core/Migrations/Version16000Date20190207141427.php',  | 
                                                        |
| 1444 | - 'OC\\Core\\Migrations\\Version16000Date20190212081545' => __DIR__ . '/../../..' . '/core/Migrations/Version16000Date20190212081545.php',  | 
                                                        |
| 1445 | - 'OC\\Core\\Migrations\\Version16000Date20190427105638' => __DIR__ . '/../../..' . '/core/Migrations/Version16000Date20190427105638.php',  | 
                                                        |
| 1446 | - 'OC\\Core\\Migrations\\Version16000Date20190428150708' => __DIR__ . '/../../..' . '/core/Migrations/Version16000Date20190428150708.php',  | 
                                                        |
| 1447 | - 'OC\\Core\\Migrations\\Version17000Date20190514105811' => __DIR__ . '/../../..' . '/core/Migrations/Version17000Date20190514105811.php',  | 
                                                        |
| 1448 | - 'OC\\Core\\Migrations\\Version18000Date20190920085628' => __DIR__ . '/../../..' . '/core/Migrations/Version18000Date20190920085628.php',  | 
                                                        |
| 1449 | - 'OC\\Core\\Migrations\\Version18000Date20191014105105' => __DIR__ . '/../../..' . '/core/Migrations/Version18000Date20191014105105.php',  | 
                                                        |
| 1450 | - 'OC\\Core\\Migrations\\Version18000Date20191204114856' => __DIR__ . '/../../..' . '/core/Migrations/Version18000Date20191204114856.php',  | 
                                                        |
| 1451 | - 'OC\\Core\\Migrations\\Version19000Date20200211083441' => __DIR__ . '/../../..' . '/core/Migrations/Version19000Date20200211083441.php',  | 
                                                        |
| 1452 | - 'OC\\Core\\Migrations\\Version20000Date20201109081915' => __DIR__ . '/../../..' . '/core/Migrations/Version20000Date20201109081915.php',  | 
                                                        |
| 1453 | - 'OC\\Core\\Migrations\\Version20000Date20201109081918' => __DIR__ . '/../../..' . '/core/Migrations/Version20000Date20201109081918.php',  | 
                                                        |
| 1454 | - 'OC\\Core\\Migrations\\Version20000Date20201109081919' => __DIR__ . '/../../..' . '/core/Migrations/Version20000Date20201109081919.php',  | 
                                                        |
| 1455 | - 'OC\\Core\\Migrations\\Version20000Date20201111081915' => __DIR__ . '/../../..' . '/core/Migrations/Version20000Date20201111081915.php',  | 
                                                        |
| 1456 | - 'OC\\Core\\Migrations\\Version21000Date20201120141228' => __DIR__ . '/../../..' . '/core/Migrations/Version21000Date20201120141228.php',  | 
                                                        |
| 1457 | - 'OC\\Core\\Migrations\\Version21000Date20201202095923' => __DIR__ . '/../../..' . '/core/Migrations/Version21000Date20201202095923.php',  | 
                                                        |
| 1458 | - 'OC\\Core\\Migrations\\Version21000Date20210119195004' => __DIR__ . '/../../..' . '/core/Migrations/Version21000Date20210119195004.php',  | 
                                                        |
| 1459 | - 'OC\\Core\\Migrations\\Version21000Date20210309185126' => __DIR__ . '/../../..' . '/core/Migrations/Version21000Date20210309185126.php',  | 
                                                        |
| 1460 | - 'OC\\Core\\Migrations\\Version21000Date20210309185127' => __DIR__ . '/../../..' . '/core/Migrations/Version21000Date20210309185127.php',  | 
                                                        |
| 1461 | - 'OC\\Core\\Migrations\\Version22000Date20210216080825' => __DIR__ . '/../../..' . '/core/Migrations/Version22000Date20210216080825.php',  | 
                                                        |
| 1462 | - 'OC\\Core\\Migrations\\Version23000Date20210721100600' => __DIR__ . '/../../..' . '/core/Migrations/Version23000Date20210721100600.php',  | 
                                                        |
| 1463 | - 'OC\\Core\\Migrations\\Version23000Date20210906132259' => __DIR__ . '/../../..' . '/core/Migrations/Version23000Date20210906132259.php',  | 
                                                        |
| 1464 | - 'OC\\Core\\Migrations\\Version23000Date20210930122352' => __DIR__ . '/../../..' . '/core/Migrations/Version23000Date20210930122352.php',  | 
                                                        |
| 1465 | - 'OC\\Core\\Migrations\\Version23000Date20211203110726' => __DIR__ . '/../../..' . '/core/Migrations/Version23000Date20211203110726.php',  | 
                                                        |
| 1466 | - 'OC\\Core\\Migrations\\Version23000Date20211213203940' => __DIR__ . '/../../..' . '/core/Migrations/Version23000Date20211213203940.php',  | 
                                                        |
| 1467 | - 'OC\\Core\\Migrations\\Version24000Date20211210141942' => __DIR__ . '/../../..' . '/core/Migrations/Version24000Date20211210141942.php',  | 
                                                        |
| 1468 | - 'OC\\Core\\Migrations\\Version24000Date20211213081506' => __DIR__ . '/../../..' . '/core/Migrations/Version24000Date20211213081506.php',  | 
                                                        |
| 1469 | - 'OC\\Core\\Migrations\\Version24000Date20211213081604' => __DIR__ . '/../../..' . '/core/Migrations/Version24000Date20211213081604.php',  | 
                                                        |
| 1470 | - 'OC\\Core\\Migrations\\Version24000Date20211222112246' => __DIR__ . '/../../..' . '/core/Migrations/Version24000Date20211222112246.php',  | 
                                                        |
| 1471 | - 'OC\\Core\\Migrations\\Version24000Date20211230140012' => __DIR__ . '/../../..' . '/core/Migrations/Version24000Date20211230140012.php',  | 
                                                        |
| 1472 | - 'OC\\Core\\Migrations\\Version24000Date20220131153041' => __DIR__ . '/../../..' . '/core/Migrations/Version24000Date20220131153041.php',  | 
                                                        |
| 1473 | - 'OC\\Core\\Migrations\\Version24000Date20220202150027' => __DIR__ . '/../../..' . '/core/Migrations/Version24000Date20220202150027.php',  | 
                                                        |
| 1474 | - 'OC\\Core\\Migrations\\Version24000Date20220404230027' => __DIR__ . '/../../..' . '/core/Migrations/Version24000Date20220404230027.php',  | 
                                                        |
| 1475 | - 'OC\\Core\\Migrations\\Version24000Date20220425072957' => __DIR__ . '/../../..' . '/core/Migrations/Version24000Date20220425072957.php',  | 
                                                        |
| 1476 | - 'OC\\Core\\Migrations\\Version25000Date20220515204012' => __DIR__ . '/../../..' . '/core/Migrations/Version25000Date20220515204012.php',  | 
                                                        |
| 1477 | - 'OC\\Core\\Migrations\\Version25000Date20220602190540' => __DIR__ . '/../../..' . '/core/Migrations/Version25000Date20220602190540.php',  | 
                                                        |
| 1478 | - 'OC\\Core\\Migrations\\Version25000Date20220905140840' => __DIR__ . '/../../..' . '/core/Migrations/Version25000Date20220905140840.php',  | 
                                                        |
| 1479 | - 'OC\\Core\\Migrations\\Version25000Date20221007010957' => __DIR__ . '/../../..' . '/core/Migrations/Version25000Date20221007010957.php',  | 
                                                        |
| 1480 | - 'OC\\Core\\Migrations\\Version27000Date20220613163520' => __DIR__ . '/../../..' . '/core/Migrations/Version27000Date20220613163520.php',  | 
                                                        |
| 1481 | - 'OC\\Core\\Migrations\\Version27000Date20230309104325' => __DIR__ . '/../../..' . '/core/Migrations/Version27000Date20230309104325.php',  | 
                                                        |
| 1482 | - 'OC\\Core\\Migrations\\Version27000Date20230309104802' => __DIR__ . '/../../..' . '/core/Migrations/Version27000Date20230309104802.php',  | 
                                                        |
| 1483 | - 'OC\\Core\\Migrations\\Version28000Date20230616104802' => __DIR__ . '/../../..' . '/core/Migrations/Version28000Date20230616104802.php',  | 
                                                        |
| 1484 | - 'OC\\Core\\Migrations\\Version28000Date20230728104802' => __DIR__ . '/../../..' . '/core/Migrations/Version28000Date20230728104802.php',  | 
                                                        |
| 1485 | - 'OC\\Core\\Migrations\\Version28000Date20230803221055' => __DIR__ . '/../../..' . '/core/Migrations/Version28000Date20230803221055.php',  | 
                                                        |
| 1486 | - 'OC\\Core\\Migrations\\Version28000Date20230906104802' => __DIR__ . '/../../..' . '/core/Migrations/Version28000Date20230906104802.php',  | 
                                                        |
| 1487 | - 'OC\\Core\\Migrations\\Version28000Date20231004103301' => __DIR__ . '/../../..' . '/core/Migrations/Version28000Date20231004103301.php',  | 
                                                        |
| 1488 | - 'OC\\Core\\Migrations\\Version28000Date20231103104802' => __DIR__ . '/../../..' . '/core/Migrations/Version28000Date20231103104802.php',  | 
                                                        |
| 1489 | - 'OC\\Core\\Migrations\\Version28000Date20231126110901' => __DIR__ . '/../../..' . '/core/Migrations/Version28000Date20231126110901.php',  | 
                                                        |
| 1490 | - 'OC\\Core\\Migrations\\Version28000Date20240828142927' => __DIR__ . '/../../..' . '/core/Migrations/Version28000Date20240828142927.php',  | 
                                                        |
| 1491 | - 'OC\\Core\\Migrations\\Version29000Date20231126110901' => __DIR__ . '/../../..' . '/core/Migrations/Version29000Date20231126110901.php',  | 
                                                        |
| 1492 | - 'OC\\Core\\Migrations\\Version29000Date20231213104850' => __DIR__ . '/../../..' . '/core/Migrations/Version29000Date20231213104850.php',  | 
                                                        |
| 1493 | - 'OC\\Core\\Migrations\\Version29000Date20240124132201' => __DIR__ . '/../../..' . '/core/Migrations/Version29000Date20240124132201.php',  | 
                                                        |
| 1494 | - 'OC\\Core\\Migrations\\Version29000Date20240124132202' => __DIR__ . '/../../..' . '/core/Migrations/Version29000Date20240124132202.php',  | 
                                                        |
| 1495 | - 'OC\\Core\\Migrations\\Version29000Date20240131122720' => __DIR__ . '/../../..' . '/core/Migrations/Version29000Date20240131122720.php',  | 
                                                        |
| 1496 | - 'OC\\Core\\Migrations\\Version30000Date20240429122720' => __DIR__ . '/../../..' . '/core/Migrations/Version30000Date20240429122720.php',  | 
                                                        |
| 1497 | - 'OC\\Core\\Migrations\\Version30000Date20240708160048' => __DIR__ . '/../../..' . '/core/Migrations/Version30000Date20240708160048.php',  | 
                                                        |
| 1498 | - 'OC\\Core\\Migrations\\Version30000Date20240717111406' => __DIR__ . '/../../..' . '/core/Migrations/Version30000Date20240717111406.php',  | 
                                                        |
| 1499 | - 'OC\\Core\\Migrations\\Version30000Date20240814180800' => __DIR__ . '/../../..' . '/core/Migrations/Version30000Date20240814180800.php',  | 
                                                        |
| 1500 | - 'OC\\Core\\Migrations\\Version30000Date20240815080800' => __DIR__ . '/../../..' . '/core/Migrations/Version30000Date20240815080800.php',  | 
                                                        |
| 1501 | - 'OC\\Core\\Migrations\\Version30000Date20240906095113' => __DIR__ . '/../../..' . '/core/Migrations/Version30000Date20240906095113.php',  | 
                                                        |
| 1502 | - 'OC\\Core\\Migrations\\Version31000Date20240101084401' => __DIR__ . '/../../..' . '/core/Migrations/Version31000Date20240101084401.php',  | 
                                                        |
| 1503 | - 'OC\\Core\\Migrations\\Version31000Date20240814184402' => __DIR__ . '/../../..' . '/core/Migrations/Version31000Date20240814184402.php',  | 
                                                        |
| 1504 | - 'OC\\Core\\Migrations\\Version31000Date20250213102442' => __DIR__ . '/../../..' . '/core/Migrations/Version31000Date20250213102442.php',  | 
                                                        |
| 1505 | - 'OC\\Core\\Migrations\\Version32000Date20250402182800' => __DIR__ . '/../../..' . '/core/Migrations/Version32000Date20250402182800.php',  | 
                                                        |
| 1506 | - 'OC\\Core\\Notification\\CoreNotifier' => __DIR__ . '/../../..' . '/core/Notification/CoreNotifier.php',  | 
                                                        |
| 1507 | - 'OC\\Core\\ResponseDefinitions' => __DIR__ . '/../../..' . '/core/ResponseDefinitions.php',  | 
                                                        |
| 1508 | - 'OC\\Core\\Service\\LoginFlowV2Service' => __DIR__ . '/../../..' . '/core/Service/LoginFlowV2Service.php',  | 
                                                        |
| 1509 | - 'OC\\DB\\Adapter' => __DIR__ . '/../../..' . '/lib/private/DB/Adapter.php',  | 
                                                        |
| 1510 | - 'OC\\DB\\AdapterMySQL' => __DIR__ . '/../../..' . '/lib/private/DB/AdapterMySQL.php',  | 
                                                        |
| 1511 | - 'OC\\DB\\AdapterOCI8' => __DIR__ . '/../../..' . '/lib/private/DB/AdapterOCI8.php',  | 
                                                        |
| 1512 | - 'OC\\DB\\AdapterPgSql' => __DIR__ . '/../../..' . '/lib/private/DB/AdapterPgSql.php',  | 
                                                        |
| 1513 | - 'OC\\DB\\AdapterSqlite' => __DIR__ . '/../../..' . '/lib/private/DB/AdapterSqlite.php',  | 
                                                        |
| 1514 | - 'OC\\DB\\ArrayResult' => __DIR__ . '/../../..' . '/lib/private/DB/ArrayResult.php',  | 
                                                        |
| 1515 | - 'OC\\DB\\BacktraceDebugStack' => __DIR__ . '/../../..' . '/lib/private/DB/BacktraceDebugStack.php',  | 
                                                        |
| 1516 | - 'OC\\DB\\Connection' => __DIR__ . '/../../..' . '/lib/private/DB/Connection.php',  | 
                                                        |
| 1517 | - 'OC\\DB\\ConnectionAdapter' => __DIR__ . '/../../..' . '/lib/private/DB/ConnectionAdapter.php',  | 
                                                        |
| 1518 | - 'OC\\DB\\ConnectionFactory' => __DIR__ . '/../../..' . '/lib/private/DB/ConnectionFactory.php',  | 
                                                        |
| 1519 | - 'OC\\DB\\DbDataCollector' => __DIR__ . '/../../..' . '/lib/private/DB/DbDataCollector.php',  | 
                                                        |
| 1520 | - 'OC\\DB\\Exceptions\\DbalException' => __DIR__ . '/../../..' . '/lib/private/DB/Exceptions/DbalException.php',  | 
                                                        |
| 1521 | - 'OC\\DB\\MigrationException' => __DIR__ . '/../../..' . '/lib/private/DB/MigrationException.php',  | 
                                                        |
| 1522 | - 'OC\\DB\\MigrationService' => __DIR__ . '/../../..' . '/lib/private/DB/MigrationService.php',  | 
                                                        |
| 1523 | - 'OC\\DB\\Migrator' => __DIR__ . '/../../..' . '/lib/private/DB/Migrator.php',  | 
                                                        |
| 1524 | - 'OC\\DB\\MigratorExecuteSqlEvent' => __DIR__ . '/../../..' . '/lib/private/DB/MigratorExecuteSqlEvent.php',  | 
                                                        |
| 1525 | - 'OC\\DB\\MissingColumnInformation' => __DIR__ . '/../../..' . '/lib/private/DB/MissingColumnInformation.php',  | 
                                                        |
| 1526 | - 'OC\\DB\\MissingIndexInformation' => __DIR__ . '/../../..' . '/lib/private/DB/MissingIndexInformation.php',  | 
                                                        |
| 1527 | - 'OC\\DB\\MissingPrimaryKeyInformation' => __DIR__ . '/../../..' . '/lib/private/DB/MissingPrimaryKeyInformation.php',  | 
                                                        |
| 1528 | - 'OC\\DB\\MySqlTools' => __DIR__ . '/../../..' . '/lib/private/DB/MySqlTools.php',  | 
                                                        |
| 1529 | - 'OC\\DB\\OCSqlitePlatform' => __DIR__ . '/../../..' . '/lib/private/DB/OCSqlitePlatform.php',  | 
                                                        |
| 1530 | - 'OC\\DB\\ObjectParameter' => __DIR__ . '/../../..' . '/lib/private/DB/ObjectParameter.php',  | 
                                                        |
| 1531 | - 'OC\\DB\\OracleConnection' => __DIR__ . '/../../..' . '/lib/private/DB/OracleConnection.php',  | 
                                                        |
| 1532 | - 'OC\\DB\\OracleMigrator' => __DIR__ . '/../../..' . '/lib/private/DB/OracleMigrator.php',  | 
                                                        |
| 1533 | - 'OC\\DB\\PgSqlTools' => __DIR__ . '/../../..' . '/lib/private/DB/PgSqlTools.php',  | 
                                                        |
| 1534 | - 'OC\\DB\\PreparedStatement' => __DIR__ . '/../../..' . '/lib/private/DB/PreparedStatement.php',  | 
                                                        |
| 1535 | - 'OC\\DB\\QueryBuilder\\CompositeExpression' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/CompositeExpression.php',  | 
                                                        |
| 1536 | - 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\ExpressionBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/ExpressionBuilder/ExpressionBuilder.php',  | 
                                                        |
| 1537 | - 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\MySqlExpressionBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/ExpressionBuilder/MySqlExpressionBuilder.php',  | 
                                                        |
| 1538 | - 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\OCIExpressionBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/ExpressionBuilder/OCIExpressionBuilder.php',  | 
                                                        |
| 1539 | - 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\PgSqlExpressionBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/ExpressionBuilder/PgSqlExpressionBuilder.php',  | 
                                                        |
| 1540 | - 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\SqliteExpressionBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/ExpressionBuilder/SqliteExpressionBuilder.php',  | 
                                                        |
| 1541 | - 'OC\\DB\\QueryBuilder\\ExtendedQueryBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/ExtendedQueryBuilder.php',  | 
                                                        |
| 1542 | - 'OC\\DB\\QueryBuilder\\FunctionBuilder\\FunctionBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/FunctionBuilder/FunctionBuilder.php',  | 
                                                        |
| 1543 | - 'OC\\DB\\QueryBuilder\\FunctionBuilder\\OCIFunctionBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/FunctionBuilder/OCIFunctionBuilder.php',  | 
                                                        |
| 1544 | - 'OC\\DB\\QueryBuilder\\FunctionBuilder\\PgSqlFunctionBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/FunctionBuilder/PgSqlFunctionBuilder.php',  | 
                                                        |
| 1545 | - 'OC\\DB\\QueryBuilder\\FunctionBuilder\\SqliteFunctionBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/FunctionBuilder/SqliteFunctionBuilder.php',  | 
                                                        |
| 1546 | - 'OC\\DB\\QueryBuilder\\Literal' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Literal.php',  | 
                                                        |
| 1547 | - 'OC\\DB\\QueryBuilder\\Parameter' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Parameter.php',  | 
                                                        |
| 1548 | - 'OC\\DB\\QueryBuilder\\Partitioned\\InvalidPartitionedQueryException' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Partitioned/InvalidPartitionedQueryException.php',  | 
                                                        |
| 1549 | - 'OC\\DB\\QueryBuilder\\Partitioned\\JoinCondition' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Partitioned/JoinCondition.php',  | 
                                                        |
| 1550 | - 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionQuery' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Partitioned/PartitionQuery.php',  | 
                                                        |
| 1551 | - 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionSplit' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Partitioned/PartitionSplit.php',  | 
                                                        |
| 1552 | - 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionedQueryBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Partitioned/PartitionedQueryBuilder.php',  | 
                                                        |
| 1553 | - 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionedResult' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Partitioned/PartitionedResult.php',  | 
                                                        |
| 1554 | - 'OC\\DB\\QueryBuilder\\QueryBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/QueryBuilder.php',  | 
                                                        |
| 1555 | - 'OC\\DB\\QueryBuilder\\QueryFunction' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/QueryFunction.php',  | 
                                                        |
| 1556 | - 'OC\\DB\\QueryBuilder\\QuoteHelper' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/QuoteHelper.php',  | 
                                                        |
| 1557 | - 'OC\\DB\\QueryBuilder\\Sharded\\AutoIncrementHandler' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Sharded/AutoIncrementHandler.php',  | 
                                                        |
| 1558 | - 'OC\\DB\\QueryBuilder\\Sharded\\CrossShardMoveHelper' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Sharded/CrossShardMoveHelper.php',  | 
                                                        |
| 1559 | - 'OC\\DB\\QueryBuilder\\Sharded\\HashShardMapper' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Sharded/HashShardMapper.php',  | 
                                                        |
| 1560 | - 'OC\\DB\\QueryBuilder\\Sharded\\InvalidShardedQueryException' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Sharded/InvalidShardedQueryException.php',  | 
                                                        |
| 1561 | - 'OC\\DB\\QueryBuilder\\Sharded\\RoundRobinShardMapper' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Sharded/RoundRobinShardMapper.php',  | 
                                                        |
| 1562 | - 'OC\\DB\\QueryBuilder\\Sharded\\ShardConnectionManager' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Sharded/ShardConnectionManager.php',  | 
                                                        |
| 1563 | - 'OC\\DB\\QueryBuilder\\Sharded\\ShardDefinition' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Sharded/ShardDefinition.php',  | 
                                                        |
| 1564 | - 'OC\\DB\\QueryBuilder\\Sharded\\ShardQueryRunner' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Sharded/ShardQueryRunner.php',  | 
                                                        |
| 1565 | - 'OC\\DB\\QueryBuilder\\Sharded\\ShardedQueryBuilder' => __DIR__ . '/../../..' . '/lib/private/DB/QueryBuilder/Sharded/ShardedQueryBuilder.php',  | 
                                                        |
| 1566 | - 'OC\\DB\\ResultAdapter' => __DIR__ . '/../../..' . '/lib/private/DB/ResultAdapter.php',  | 
                                                        |
| 1567 | - 'OC\\DB\\SQLiteMigrator' => __DIR__ . '/../../..' . '/lib/private/DB/SQLiteMigrator.php',  | 
                                                        |
| 1568 | - 'OC\\DB\\SQLiteSessionInit' => __DIR__ . '/../../..' . '/lib/private/DB/SQLiteSessionInit.php',  | 
                                                        |
| 1569 | - 'OC\\DB\\SchemaWrapper' => __DIR__ . '/../../..' . '/lib/private/DB/SchemaWrapper.php',  | 
                                                        |
| 1570 | - 'OC\\DB\\SetTransactionIsolationLevel' => __DIR__ . '/../../..' . '/lib/private/DB/SetTransactionIsolationLevel.php',  | 
                                                        |
| 1571 | - 'OC\\Dashboard\\Manager' => __DIR__ . '/../../..' . '/lib/private/Dashboard/Manager.php',  | 
                                                        |
| 1572 | - 'OC\\DatabaseException' => __DIR__ . '/../../..' . '/lib/private/DatabaseException.php',  | 
                                                        |
| 1573 | - 'OC\\DatabaseSetupException' => __DIR__ . '/../../..' . '/lib/private/DatabaseSetupException.php',  | 
                                                        |
| 1574 | - 'OC\\DateTimeFormatter' => __DIR__ . '/../../..' . '/lib/private/DateTimeFormatter.php',  | 
                                                        |
| 1575 | - 'OC\\DateTimeZone' => __DIR__ . '/../../..' . '/lib/private/DateTimeZone.php',  | 
                                                        |
| 1576 | - 'OC\\Diagnostics\\Event' => __DIR__ . '/../../..' . '/lib/private/Diagnostics/Event.php',  | 
                                                        |
| 1577 | - 'OC\\Diagnostics\\EventLogger' => __DIR__ . '/../../..' . '/lib/private/Diagnostics/EventLogger.php',  | 
                                                        |
| 1578 | - 'OC\\Diagnostics\\Query' => __DIR__ . '/../../..' . '/lib/private/Diagnostics/Query.php',  | 
                                                        |
| 1579 | - 'OC\\Diagnostics\\QueryLogger' => __DIR__ . '/../../..' . '/lib/private/Diagnostics/QueryLogger.php',  | 
                                                        |
| 1580 | - 'OC\\DirectEditing\\Manager' => __DIR__ . '/../../..' . '/lib/private/DirectEditing/Manager.php',  | 
                                                        |
| 1581 | - 'OC\\DirectEditing\\Token' => __DIR__ . '/../../..' . '/lib/private/DirectEditing/Token.php',  | 
                                                        |
| 1582 | - 'OC\\EmojiHelper' => __DIR__ . '/../../..' . '/lib/private/EmojiHelper.php',  | 
                                                        |
| 1583 | - 'OC\\Encryption\\DecryptAll' => __DIR__ . '/../../..' . '/lib/private/Encryption/DecryptAll.php',  | 
                                                        |
| 1584 | - 'OC\\Encryption\\EncryptionWrapper' => __DIR__ . '/../../..' . '/lib/private/Encryption/EncryptionWrapper.php',  | 
                                                        |
| 1585 | - 'OC\\Encryption\\Exceptions\\DecryptionFailedException' => __DIR__ . '/../../..' . '/lib/private/Encryption/Exceptions/DecryptionFailedException.php',  | 
                                                        |
| 1586 | - 'OC\\Encryption\\Exceptions\\EmptyEncryptionDataException' => __DIR__ . '/../../..' . '/lib/private/Encryption/Exceptions/EmptyEncryptionDataException.php',  | 
                                                        |
| 1587 | - 'OC\\Encryption\\Exceptions\\EncryptionFailedException' => __DIR__ . '/../../..' . '/lib/private/Encryption/Exceptions/EncryptionFailedException.php',  | 
                                                        |
| 1588 | - 'OC\\Encryption\\Exceptions\\EncryptionHeaderKeyExistsException' => __DIR__ . '/../../..' . '/lib/private/Encryption/Exceptions/EncryptionHeaderKeyExistsException.php',  | 
                                                        |
| 1589 | - 'OC\\Encryption\\Exceptions\\EncryptionHeaderToLargeException' => __DIR__ . '/../../..' . '/lib/private/Encryption/Exceptions/EncryptionHeaderToLargeException.php',  | 
                                                        |
| 1590 | - 'OC\\Encryption\\Exceptions\\ModuleAlreadyExistsException' => __DIR__ . '/../../..' . '/lib/private/Encryption/Exceptions/ModuleAlreadyExistsException.php',  | 
                                                        |
| 1591 | - 'OC\\Encryption\\Exceptions\\ModuleDoesNotExistsException' => __DIR__ . '/../../..' . '/lib/private/Encryption/Exceptions/ModuleDoesNotExistsException.php',  | 
                                                        |
| 1592 | - 'OC\\Encryption\\Exceptions\\UnknownCipherException' => __DIR__ . '/../../..' . '/lib/private/Encryption/Exceptions/UnknownCipherException.php',  | 
                                                        |
| 1593 | - 'OC\\Encryption\\File' => __DIR__ . '/../../..' . '/lib/private/Encryption/File.php',  | 
                                                        |
| 1594 | - 'OC\\Encryption\\HookManager' => __DIR__ . '/../../..' . '/lib/private/Encryption/HookManager.php',  | 
                                                        |
| 1595 | - 'OC\\Encryption\\Keys\\Storage' => __DIR__ . '/../../..' . '/lib/private/Encryption/Keys/Storage.php',  | 
                                                        |
| 1596 | - 'OC\\Encryption\\Manager' => __DIR__ . '/../../..' . '/lib/private/Encryption/Manager.php',  | 
                                                        |
| 1597 | - 'OC\\Encryption\\Update' => __DIR__ . '/../../..' . '/lib/private/Encryption/Update.php',  | 
                                                        |
| 1598 | - 'OC\\Encryption\\Util' => __DIR__ . '/../../..' . '/lib/private/Encryption/Util.php',  | 
                                                        |
| 1599 | - 'OC\\EventDispatcher\\EventDispatcher' => __DIR__ . '/../../..' . '/lib/private/EventDispatcher/EventDispatcher.php',  | 
                                                        |
| 1600 | - 'OC\\EventDispatcher\\ServiceEventListener' => __DIR__ . '/../../..' . '/lib/private/EventDispatcher/ServiceEventListener.php',  | 
                                                        |
| 1601 | - 'OC\\EventSource' => __DIR__ . '/../../..' . '/lib/private/EventSource.php',  | 
                                                        |
| 1602 | - 'OC\\EventSourceFactory' => __DIR__ . '/../../..' . '/lib/private/EventSourceFactory.php',  | 
                                                        |
| 1603 | - 'OC\\Federation\\CloudFederationFactory' => __DIR__ . '/../../..' . '/lib/private/Federation/CloudFederationFactory.php',  | 
                                                        |
| 1604 | - 'OC\\Federation\\CloudFederationNotification' => __DIR__ . '/../../..' . '/lib/private/Federation/CloudFederationNotification.php',  | 
                                                        |
| 1605 | - 'OC\\Federation\\CloudFederationProviderManager' => __DIR__ . '/../../..' . '/lib/private/Federation/CloudFederationProviderManager.php',  | 
                                                        |
| 1606 | - 'OC\\Federation\\CloudFederationShare' => __DIR__ . '/../../..' . '/lib/private/Federation/CloudFederationShare.php',  | 
                                                        |
| 1607 | - 'OC\\Federation\\CloudId' => __DIR__ . '/../../..' . '/lib/private/Federation/CloudId.php',  | 
                                                        |
| 1608 | - 'OC\\Federation\\CloudIdManager' => __DIR__ . '/../../..' . '/lib/private/Federation/CloudIdManager.php',  | 
                                                        |
| 1609 | - 'OC\\FilesMetadata\\FilesMetadataManager' => __DIR__ . '/../../..' . '/lib/private/FilesMetadata/FilesMetadataManager.php',  | 
                                                        |
| 1610 | - 'OC\\FilesMetadata\\Job\\UpdateSingleMetadata' => __DIR__ . '/../../..' . '/lib/private/FilesMetadata/Job/UpdateSingleMetadata.php',  | 
                                                        |
| 1611 | - 'OC\\FilesMetadata\\Listener\\MetadataDelete' => __DIR__ . '/../../..' . '/lib/private/FilesMetadata/Listener/MetadataDelete.php',  | 
                                                        |
| 1612 | - 'OC\\FilesMetadata\\Listener\\MetadataUpdate' => __DIR__ . '/../../..' . '/lib/private/FilesMetadata/Listener/MetadataUpdate.php',  | 
                                                        |
| 1613 | - 'OC\\FilesMetadata\\MetadataQuery' => __DIR__ . '/../../..' . '/lib/private/FilesMetadata/MetadataQuery.php',  | 
                                                        |
| 1614 | - 'OC\\FilesMetadata\\Model\\FilesMetadata' => __DIR__ . '/../../..' . '/lib/private/FilesMetadata/Model/FilesMetadata.php',  | 
                                                        |
| 1615 | - 'OC\\FilesMetadata\\Model\\MetadataValueWrapper' => __DIR__ . '/../../..' . '/lib/private/FilesMetadata/Model/MetadataValueWrapper.php',  | 
                                                        |
| 1616 | - 'OC\\FilesMetadata\\Service\\IndexRequestService' => __DIR__ . '/../../..' . '/lib/private/FilesMetadata/Service/IndexRequestService.php',  | 
                                                        |
| 1617 | - 'OC\\FilesMetadata\\Service\\MetadataRequestService' => __DIR__ . '/../../..' . '/lib/private/FilesMetadata/Service/MetadataRequestService.php',  | 
                                                        |
| 1618 | - 'OC\\Files\\AppData\\AppData' => __DIR__ . '/../../..' . '/lib/private/Files/AppData/AppData.php',  | 
                                                        |
| 1619 | - 'OC\\Files\\AppData\\Factory' => __DIR__ . '/../../..' . '/lib/private/Files/AppData/Factory.php',  | 
                                                        |
| 1620 | - 'OC\\Files\\Cache\\Cache' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/Cache.php',  | 
                                                        |
| 1621 | - 'OC\\Files\\Cache\\CacheDependencies' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/CacheDependencies.php',  | 
                                                        |
| 1622 | - 'OC\\Files\\Cache\\CacheEntry' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/CacheEntry.php',  | 
                                                        |
| 1623 | - 'OC\\Files\\Cache\\CacheQueryBuilder' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/CacheQueryBuilder.php',  | 
                                                        |
| 1624 | - 'OC\\Files\\Cache\\FailedCache' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/FailedCache.php',  | 
                                                        |
| 1625 | - 'OC\\Files\\Cache\\FileAccess' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/FileAccess.php',  | 
                                                        |
| 1626 | - 'OC\\Files\\Cache\\HomeCache' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/HomeCache.php',  | 
                                                        |
| 1627 | - 'OC\\Files\\Cache\\HomePropagator' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/HomePropagator.php',  | 
                                                        |
| 1628 | - 'OC\\Files\\Cache\\LocalRootScanner' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/LocalRootScanner.php',  | 
                                                        |
| 1629 | - 'OC\\Files\\Cache\\MoveFromCacheTrait' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/MoveFromCacheTrait.php',  | 
                                                        |
| 1630 | - 'OC\\Files\\Cache\\NullWatcher' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/NullWatcher.php',  | 
                                                        |
| 1631 | - 'OC\\Files\\Cache\\Propagator' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/Propagator.php',  | 
                                                        |
| 1632 | - 'OC\\Files\\Cache\\QuerySearchHelper' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/QuerySearchHelper.php',  | 
                                                        |
| 1633 | - 'OC\\Files\\Cache\\Scanner' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/Scanner.php',  | 
                                                        |
| 1634 | - 'OC\\Files\\Cache\\SearchBuilder' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/SearchBuilder.php',  | 
                                                        |
| 1635 | - 'OC\\Files\\Cache\\Storage' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/Storage.php',  | 
                                                        |
| 1636 | - 'OC\\Files\\Cache\\StorageGlobal' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/StorageGlobal.php',  | 
                                                        |
| 1637 | - 'OC\\Files\\Cache\\Updater' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/Updater.php',  | 
                                                        |
| 1638 | - 'OC\\Files\\Cache\\Watcher' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/Watcher.php',  | 
                                                        |
| 1639 | - 'OC\\Files\\Cache\\Wrapper\\CacheJail' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/Wrapper/CacheJail.php',  | 
                                                        |
| 1640 | - 'OC\\Files\\Cache\\Wrapper\\CachePermissionsMask' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/Wrapper/CachePermissionsMask.php',  | 
                                                        |
| 1641 | - 'OC\\Files\\Cache\\Wrapper\\CacheWrapper' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/Wrapper/CacheWrapper.php',  | 
                                                        |
| 1642 | - 'OC\\Files\\Cache\\Wrapper\\JailPropagator' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/Wrapper/JailPropagator.php',  | 
                                                        |
| 1643 | - 'OC\\Files\\Cache\\Wrapper\\JailWatcher' => __DIR__ . '/../../..' . '/lib/private/Files/Cache/Wrapper/JailWatcher.php',  | 
                                                        |
| 1644 | - 'OC\\Files\\Config\\CachedMountFileInfo' => __DIR__ . '/../../..' . '/lib/private/Files/Config/CachedMountFileInfo.php',  | 
                                                        |
| 1645 | - 'OC\\Files\\Config\\CachedMountInfo' => __DIR__ . '/../../..' . '/lib/private/Files/Config/CachedMountInfo.php',  | 
                                                        |
| 1646 | - 'OC\\Files\\Config\\LazyPathCachedMountInfo' => __DIR__ . '/../../..' . '/lib/private/Files/Config/LazyPathCachedMountInfo.php',  | 
                                                        |
| 1647 | - 'OC\\Files\\Config\\LazyStorageMountInfo' => __DIR__ . '/../../..' . '/lib/private/Files/Config/LazyStorageMountInfo.php',  | 
                                                        |
| 1648 | - 'OC\\Files\\Config\\MountProviderCollection' => __DIR__ . '/../../..' . '/lib/private/Files/Config/MountProviderCollection.php',  | 
                                                        |
| 1649 | - 'OC\\Files\\Config\\UserMountCache' => __DIR__ . '/../../..' . '/lib/private/Files/Config/UserMountCache.php',  | 
                                                        |
| 1650 | - 'OC\\Files\\Config\\UserMountCacheListener' => __DIR__ . '/../../..' . '/lib/private/Files/Config/UserMountCacheListener.php',  | 
                                                        |
| 1651 | - 'OC\\Files\\Conversion\\ConversionManager' => __DIR__ . '/../../..' . '/lib/private/Files/Conversion/ConversionManager.php',  | 
                                                        |
| 1652 | - 'OC\\Files\\FileInfo' => __DIR__ . '/../../..' . '/lib/private/Files/FileInfo.php',  | 
                                                        |
| 1653 | - 'OC\\Files\\FilenameValidator' => __DIR__ . '/../../..' . '/lib/private/Files/FilenameValidator.php',  | 
                                                        |
| 1654 | - 'OC\\Files\\Filesystem' => __DIR__ . '/../../..' . '/lib/private/Files/Filesystem.php',  | 
                                                        |
| 1655 | - 'OC\\Files\\Lock\\LockManager' => __DIR__ . '/../../..' . '/lib/private/Files/Lock/LockManager.php',  | 
                                                        |
| 1656 | - 'OC\\Files\\Mount\\CacheMountProvider' => __DIR__ . '/../../..' . '/lib/private/Files/Mount/CacheMountProvider.php',  | 
                                                        |
| 1657 | - 'OC\\Files\\Mount\\HomeMountPoint' => __DIR__ . '/../../..' . '/lib/private/Files/Mount/HomeMountPoint.php',  | 
                                                        |
| 1658 | - 'OC\\Files\\Mount\\LocalHomeMountProvider' => __DIR__ . '/../../..' . '/lib/private/Files/Mount/LocalHomeMountProvider.php',  | 
                                                        |
| 1659 | - 'OC\\Files\\Mount\\Manager' => __DIR__ . '/../../..' . '/lib/private/Files/Mount/Manager.php',  | 
                                                        |
| 1660 | - 'OC\\Files\\Mount\\MountPoint' => __DIR__ . '/../../..' . '/lib/private/Files/Mount/MountPoint.php',  | 
                                                        |
| 1661 | - 'OC\\Files\\Mount\\MoveableMount' => __DIR__ . '/../../..' . '/lib/private/Files/Mount/MoveableMount.php',  | 
                                                        |
| 1662 | - 'OC\\Files\\Mount\\ObjectHomeMountProvider' => __DIR__ . '/../../..' . '/lib/private/Files/Mount/ObjectHomeMountProvider.php',  | 
                                                        |
| 1663 | - 'OC\\Files\\Mount\\ObjectStorePreviewCacheMountProvider' => __DIR__ . '/../../..' . '/lib/private/Files/Mount/ObjectStorePreviewCacheMountProvider.php',  | 
                                                        |
| 1664 | - 'OC\\Files\\Mount\\RootMountProvider' => __DIR__ . '/../../..' . '/lib/private/Files/Mount/RootMountProvider.php',  | 
                                                        |
| 1665 | - 'OC\\Files\\Node\\File' => __DIR__ . '/../../..' . '/lib/private/Files/Node/File.php',  | 
                                                        |
| 1666 | - 'OC\\Files\\Node\\Folder' => __DIR__ . '/../../..' . '/lib/private/Files/Node/Folder.php',  | 
                                                        |
| 1667 | - 'OC\\Files\\Node\\HookConnector' => __DIR__ . '/../../..' . '/lib/private/Files/Node/HookConnector.php',  | 
                                                        |
| 1668 | - 'OC\\Files\\Node\\LazyFolder' => __DIR__ . '/../../..' . '/lib/private/Files/Node/LazyFolder.php',  | 
                                                        |
| 1669 | - 'OC\\Files\\Node\\LazyRoot' => __DIR__ . '/../../..' . '/lib/private/Files/Node/LazyRoot.php',  | 
                                                        |
| 1670 | - 'OC\\Files\\Node\\LazyUserFolder' => __DIR__ . '/../../..' . '/lib/private/Files/Node/LazyUserFolder.php',  | 
                                                        |
| 1671 | - 'OC\\Files\\Node\\Node' => __DIR__ . '/../../..' . '/lib/private/Files/Node/Node.php',  | 
                                                        |
| 1672 | - 'OC\\Files\\Node\\NonExistingFile' => __DIR__ . '/../../..' . '/lib/private/Files/Node/NonExistingFile.php',  | 
                                                        |
| 1673 | - 'OC\\Files\\Node\\NonExistingFolder' => __DIR__ . '/../../..' . '/lib/private/Files/Node/NonExistingFolder.php',  | 
                                                        |
| 1674 | - 'OC\\Files\\Node\\Root' => __DIR__ . '/../../..' . '/lib/private/Files/Node/Root.php',  | 
                                                        |
| 1675 | - 'OC\\Files\\Notify\\Change' => __DIR__ . '/../../..' . '/lib/private/Files/Notify/Change.php',  | 
                                                        |
| 1676 | - 'OC\\Files\\Notify\\RenameChange' => __DIR__ . '/../../..' . '/lib/private/Files/Notify/RenameChange.php',  | 
                                                        |
| 1677 | - 'OC\\Files\\ObjectStore\\AppdataPreviewObjectStoreStorage' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/AppdataPreviewObjectStoreStorage.php',  | 
                                                        |
| 1678 | - 'OC\\Files\\ObjectStore\\Azure' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/Azure.php',  | 
                                                        |
| 1679 | - 'OC\\Files\\ObjectStore\\HomeObjectStoreStorage' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/HomeObjectStoreStorage.php',  | 
                                                        |
| 1680 | - 'OC\\Files\\ObjectStore\\Mapper' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/Mapper.php',  | 
                                                        |
| 1681 | - 'OC\\Files\\ObjectStore\\ObjectStoreScanner' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/ObjectStoreScanner.php',  | 
                                                        |
| 1682 | - 'OC\\Files\\ObjectStore\\ObjectStoreStorage' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/ObjectStoreStorage.php',  | 
                                                        |
| 1683 | - 'OC\\Files\\ObjectStore\\S3' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/S3.php',  | 
                                                        |
| 1684 | - 'OC\\Files\\ObjectStore\\S3ConfigTrait' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/S3ConfigTrait.php',  | 
                                                        |
| 1685 | - 'OC\\Files\\ObjectStore\\S3ConnectionTrait' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/S3ConnectionTrait.php',  | 
                                                        |
| 1686 | - 'OC\\Files\\ObjectStore\\S3ObjectTrait' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/S3ObjectTrait.php',  | 
                                                        |
| 1687 | - 'OC\\Files\\ObjectStore\\S3Signature' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/S3Signature.php',  | 
                                                        |
| 1688 | - 'OC\\Files\\ObjectStore\\StorageObjectStore' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/StorageObjectStore.php',  | 
                                                        |
| 1689 | - 'OC\\Files\\ObjectStore\\Swift' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/Swift.php',  | 
                                                        |
| 1690 | - 'OC\\Files\\ObjectStore\\SwiftFactory' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/SwiftFactory.php',  | 
                                                        |
| 1691 | - 'OC\\Files\\ObjectStore\\SwiftV2CachingAuthService' => __DIR__ . '/../../..' . '/lib/private/Files/ObjectStore/SwiftV2CachingAuthService.php',  | 
                                                        |
| 1692 | - 'OC\\Files\\Search\\QueryOptimizer\\FlattenNestedBool' => __DIR__ . '/../../..' . '/lib/private/Files/Search/QueryOptimizer/FlattenNestedBool.php',  | 
                                                        |
| 1693 | - 'OC\\Files\\Search\\QueryOptimizer\\FlattenSingleArgumentBinaryOperation' => __DIR__ . '/../../..' . '/lib/private/Files/Search/QueryOptimizer/FlattenSingleArgumentBinaryOperation.php',  | 
                                                        |
| 1694 | - 'OC\\Files\\Search\\QueryOptimizer\\MergeDistributiveOperations' => __DIR__ . '/../../..' . '/lib/private/Files/Search/QueryOptimizer/MergeDistributiveOperations.php',  | 
                                                        |
| 1695 | - 'OC\\Files\\Search\\QueryOptimizer\\OrEqualsToIn' => __DIR__ . '/../../..' . '/lib/private/Files/Search/QueryOptimizer/OrEqualsToIn.php',  | 
                                                        |
| 1696 | - 'OC\\Files\\Search\\QueryOptimizer\\PathPrefixOptimizer' => __DIR__ . '/../../..' . '/lib/private/Files/Search/QueryOptimizer/PathPrefixOptimizer.php',  | 
                                                        |
| 1697 | - 'OC\\Files\\Search\\QueryOptimizer\\QueryOptimizer' => __DIR__ . '/../../..' . '/lib/private/Files/Search/QueryOptimizer/QueryOptimizer.php',  | 
                                                        |
| 1698 | - 'OC\\Files\\Search\\QueryOptimizer\\QueryOptimizerStep' => __DIR__ . '/../../..' . '/lib/private/Files/Search/QueryOptimizer/QueryOptimizerStep.php',  | 
                                                        |
| 1699 | - 'OC\\Files\\Search\\QueryOptimizer\\ReplacingOptimizerStep' => __DIR__ . '/../../..' . '/lib/private/Files/Search/QueryOptimizer/ReplacingOptimizerStep.php',  | 
                                                        |
| 1700 | - 'OC\\Files\\Search\\QueryOptimizer\\SplitLargeIn' => __DIR__ . '/../../..' . '/lib/private/Files/Search/QueryOptimizer/SplitLargeIn.php',  | 
                                                        |
| 1701 | - 'OC\\Files\\Search\\SearchBinaryOperator' => __DIR__ . '/../../..' . '/lib/private/Files/Search/SearchBinaryOperator.php',  | 
                                                        |
| 1702 | - 'OC\\Files\\Search\\SearchComparison' => __DIR__ . '/../../..' . '/lib/private/Files/Search/SearchComparison.php',  | 
                                                        |
| 1703 | - 'OC\\Files\\Search\\SearchOrder' => __DIR__ . '/../../..' . '/lib/private/Files/Search/SearchOrder.php',  | 
                                                        |
| 1704 | - 'OC\\Files\\Search\\SearchQuery' => __DIR__ . '/../../..' . '/lib/private/Files/Search/SearchQuery.php',  | 
                                                        |
| 1705 | - 'OC\\Files\\SetupManager' => __DIR__ . '/../../..' . '/lib/private/Files/SetupManager.php',  | 
                                                        |
| 1706 | - 'OC\\Files\\SetupManagerFactory' => __DIR__ . '/../../..' . '/lib/private/Files/SetupManagerFactory.php',  | 
                                                        |
| 1707 | - 'OC\\Files\\SimpleFS\\NewSimpleFile' => __DIR__ . '/../../..' . '/lib/private/Files/SimpleFS/NewSimpleFile.php',  | 
                                                        |
| 1708 | - 'OC\\Files\\SimpleFS\\SimpleFile' => __DIR__ . '/../../..' . '/lib/private/Files/SimpleFS/SimpleFile.php',  | 
                                                        |
| 1709 | - 'OC\\Files\\SimpleFS\\SimpleFolder' => __DIR__ . '/../../..' . '/lib/private/Files/SimpleFS/SimpleFolder.php',  | 
                                                        |
| 1710 | - 'OC\\Files\\Storage\\Common' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Common.php',  | 
                                                        |
| 1711 | - 'OC\\Files\\Storage\\CommonTest' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/CommonTest.php',  | 
                                                        |
| 1712 | - 'OC\\Files\\Storage\\DAV' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/DAV.php',  | 
                                                        |
| 1713 | - 'OC\\Files\\Storage\\FailedStorage' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/FailedStorage.php',  | 
                                                        |
| 1714 | - 'OC\\Files\\Storage\\Home' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Home.php',  | 
                                                        |
| 1715 | - 'OC\\Files\\Storage\\Local' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Local.php',  | 
                                                        |
| 1716 | - 'OC\\Files\\Storage\\LocalRootStorage' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/LocalRootStorage.php',  | 
                                                        |
| 1717 | - 'OC\\Files\\Storage\\LocalTempFileTrait' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/LocalTempFileTrait.php',  | 
                                                        |
| 1718 | - 'OC\\Files\\Storage\\PolyFill\\CopyDirectory' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/PolyFill/CopyDirectory.php',  | 
                                                        |
| 1719 | - 'OC\\Files\\Storage\\Storage' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Storage.php',  | 
                                                        |
| 1720 | - 'OC\\Files\\Storage\\StorageFactory' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/StorageFactory.php',  | 
                                                        |
| 1721 | - 'OC\\Files\\Storage\\Temporary' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Temporary.php',  | 
                                                        |
| 1722 | - 'OC\\Files\\Storage\\Wrapper\\Availability' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Wrapper/Availability.php',  | 
                                                        |
| 1723 | - 'OC\\Files\\Storage\\Wrapper\\Encoding' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Wrapper/Encoding.php',  | 
                                                        |
| 1724 | - 'OC\\Files\\Storage\\Wrapper\\EncodingDirectoryWrapper' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Wrapper/EncodingDirectoryWrapper.php',  | 
                                                        |
| 1725 | - 'OC\\Files\\Storage\\Wrapper\\Encryption' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Wrapper/Encryption.php',  | 
                                                        |
| 1726 | - 'OC\\Files\\Storage\\Wrapper\\Jail' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Wrapper/Jail.php',  | 
                                                        |
| 1727 | - 'OC\\Files\\Storage\\Wrapper\\KnownMtime' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Wrapper/KnownMtime.php',  | 
                                                        |
| 1728 | - 'OC\\Files\\Storage\\Wrapper\\PermissionsMask' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Wrapper/PermissionsMask.php',  | 
                                                        |
| 1729 | - 'OC\\Files\\Storage\\Wrapper\\Quota' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Wrapper/Quota.php',  | 
                                                        |
| 1730 | - 'OC\\Files\\Storage\\Wrapper\\Wrapper' => __DIR__ . '/../../..' . '/lib/private/Files/Storage/Wrapper/Wrapper.php',  | 
                                                        |
| 1731 | - 'OC\\Files\\Stream\\Encryption' => __DIR__ . '/../../..' . '/lib/private/Files/Stream/Encryption.php',  | 
                                                        |
| 1732 | - 'OC\\Files\\Stream\\HashWrapper' => __DIR__ . '/../../..' . '/lib/private/Files/Stream/HashWrapper.php',  | 
                                                        |
| 1733 | - 'OC\\Files\\Stream\\Quota' => __DIR__ . '/../../..' . '/lib/private/Files/Stream/Quota.php',  | 
                                                        |
| 1734 | - 'OC\\Files\\Stream\\SeekableHttpStream' => __DIR__ . '/../../..' . '/lib/private/Files/Stream/SeekableHttpStream.php',  | 
                                                        |
| 1735 | - 'OC\\Files\\Template\\TemplateManager' => __DIR__ . '/../../..' . '/lib/private/Files/Template/TemplateManager.php',  | 
                                                        |
| 1736 | - 'OC\\Files\\Type\\Detection' => __DIR__ . '/../../..' . '/lib/private/Files/Type/Detection.php',  | 
                                                        |
| 1737 | - 'OC\\Files\\Type\\Loader' => __DIR__ . '/../../..' . '/lib/private/Files/Type/Loader.php',  | 
                                                        |
| 1738 | - 'OC\\Files\\Type\\TemplateManager' => __DIR__ . '/../../..' . '/lib/private/Files/Type/TemplateManager.php',  | 
                                                        |
| 1739 | - 'OC\\Files\\Utils\\PathHelper' => __DIR__ . '/../../..' . '/lib/private/Files/Utils/PathHelper.php',  | 
                                                        |
| 1740 | - 'OC\\Files\\Utils\\Scanner' => __DIR__ . '/../../..' . '/lib/private/Files/Utils/Scanner.php',  | 
                                                        |
| 1741 | - 'OC\\Files\\View' => __DIR__ . '/../../..' . '/lib/private/Files/View.php',  | 
                                                        |
| 1742 | - 'OC\\ForbiddenException' => __DIR__ . '/../../..' . '/lib/private/ForbiddenException.php',  | 
                                                        |
| 1743 | - 'OC\\FullTextSearch\\FullTextSearchManager' => __DIR__ . '/../../..' . '/lib/private/FullTextSearch/FullTextSearchManager.php',  | 
                                                        |
| 1744 | - 'OC\\FullTextSearch\\Model\\DocumentAccess' => __DIR__ . '/../../..' . '/lib/private/FullTextSearch/Model/DocumentAccess.php',  | 
                                                        |
| 1745 | - 'OC\\FullTextSearch\\Model\\IndexDocument' => __DIR__ . '/../../..' . '/lib/private/FullTextSearch/Model/IndexDocument.php',  | 
                                                        |
| 1746 | - 'OC\\FullTextSearch\\Model\\SearchOption' => __DIR__ . '/../../..' . '/lib/private/FullTextSearch/Model/SearchOption.php',  | 
                                                        |
| 1747 | - 'OC\\FullTextSearch\\Model\\SearchRequestSimpleQuery' => __DIR__ . '/../../..' . '/lib/private/FullTextSearch/Model/SearchRequestSimpleQuery.php',  | 
                                                        |
| 1748 | - 'OC\\FullTextSearch\\Model\\SearchTemplate' => __DIR__ . '/../../..' . '/lib/private/FullTextSearch/Model/SearchTemplate.php',  | 
                                                        |
| 1749 | - 'OC\\GlobalScale\\Config' => __DIR__ . '/../../..' . '/lib/private/GlobalScale/Config.php',  | 
                                                        |
| 1750 | - 'OC\\Group\\Backend' => __DIR__ . '/../../..' . '/lib/private/Group/Backend.php',  | 
                                                        |
| 1751 | - 'OC\\Group\\Database' => __DIR__ . '/../../..' . '/lib/private/Group/Database.php',  | 
                                                        |
| 1752 | - 'OC\\Group\\DisplayNameCache' => __DIR__ . '/../../..' . '/lib/private/Group/DisplayNameCache.php',  | 
                                                        |
| 1753 | - 'OC\\Group\\Group' => __DIR__ . '/../../..' . '/lib/private/Group/Group.php',  | 
                                                        |
| 1754 | - 'OC\\Group\\Manager' => __DIR__ . '/../../..' . '/lib/private/Group/Manager.php',  | 
                                                        |
| 1755 | - 'OC\\Group\\MetaData' => __DIR__ . '/../../..' . '/lib/private/Group/MetaData.php',  | 
                                                        |
| 1756 | - 'OC\\HintException' => __DIR__ . '/../../..' . '/lib/private/HintException.php',  | 
                                                        |
| 1757 | - 'OC\\Hooks\\BasicEmitter' => __DIR__ . '/../../..' . '/lib/private/Hooks/BasicEmitter.php',  | 
                                                        |
| 1758 | - 'OC\\Hooks\\Emitter' => __DIR__ . '/../../..' . '/lib/private/Hooks/Emitter.php',  | 
                                                        |
| 1759 | - 'OC\\Hooks\\EmitterTrait' => __DIR__ . '/../../..' . '/lib/private/Hooks/EmitterTrait.php',  | 
                                                        |
| 1760 | - 'OC\\Hooks\\PublicEmitter' => __DIR__ . '/../../..' . '/lib/private/Hooks/PublicEmitter.php',  | 
                                                        |
| 1761 | - 'OC\\Http\\Client\\Client' => __DIR__ . '/../../..' . '/lib/private/Http/Client/Client.php',  | 
                                                        |
| 1762 | - 'OC\\Http\\Client\\ClientService' => __DIR__ . '/../../..' . '/lib/private/Http/Client/ClientService.php',  | 
                                                        |
| 1763 | - 'OC\\Http\\Client\\DnsPinMiddleware' => __DIR__ . '/../../..' . '/lib/private/Http/Client/DnsPinMiddleware.php',  | 
                                                        |
| 1764 | - 'OC\\Http\\Client\\GuzzlePromiseAdapter' => __DIR__ . '/../../..' . '/lib/private/Http/Client/GuzzlePromiseAdapter.php',  | 
                                                        |
| 1765 | - 'OC\\Http\\Client\\NegativeDnsCache' => __DIR__ . '/../../..' . '/lib/private/Http/Client/NegativeDnsCache.php',  | 
                                                        |
| 1766 | - 'OC\\Http\\Client\\Response' => __DIR__ . '/../../..' . '/lib/private/Http/Client/Response.php',  | 
                                                        |
| 1767 | - 'OC\\Http\\CookieHelper' => __DIR__ . '/../../..' . '/lib/private/Http/CookieHelper.php',  | 
                                                        |
| 1768 | - 'OC\\Http\\WellKnown\\RequestManager' => __DIR__ . '/../../..' . '/lib/private/Http/WellKnown/RequestManager.php',  | 
                                                        |
| 1769 | - 'OC\\Image' => __DIR__ . '/../../..' . '/lib/private/Image.php',  | 
                                                        |
| 1770 | - 'OC\\InitialStateService' => __DIR__ . '/../../..' . '/lib/private/InitialStateService.php',  | 
                                                        |
| 1771 | - 'OC\\Installer' => __DIR__ . '/../../..' . '/lib/private/Installer.php',  | 
                                                        |
| 1772 | - 'OC\\IntegrityCheck\\Checker' => __DIR__ . '/../../..' . '/lib/private/IntegrityCheck/Checker.php',  | 
                                                        |
| 1773 | - 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException' => __DIR__ . '/../../..' . '/lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php',  | 
                                                        |
| 1774 | - 'OC\\IntegrityCheck\\Helpers\\AppLocator' => __DIR__ . '/../../..' . '/lib/private/IntegrityCheck/Helpers/AppLocator.php',  | 
                                                        |
| 1775 | - 'OC\\IntegrityCheck\\Helpers\\EnvironmentHelper' => __DIR__ . '/../../..' . '/lib/private/IntegrityCheck/Helpers/EnvironmentHelper.php',  | 
                                                        |
| 1776 | - 'OC\\IntegrityCheck\\Helpers\\FileAccessHelper' => __DIR__ . '/../../..' . '/lib/private/IntegrityCheck/Helpers/FileAccessHelper.php',  | 
                                                        |
| 1777 | - 'OC\\IntegrityCheck\\Iterator\\ExcludeFileByNameFilterIterator' => __DIR__ . '/../../..' . '/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php',  | 
                                                        |
| 1778 | - 'OC\\IntegrityCheck\\Iterator\\ExcludeFoldersByPathFilterIterator' => __DIR__ . '/../../..' . '/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php',  | 
                                                        |
| 1779 | - 'OC\\KnownUser\\KnownUser' => __DIR__ . '/../../..' . '/lib/private/KnownUser/KnownUser.php',  | 
                                                        |
| 1780 | - 'OC\\KnownUser\\KnownUserMapper' => __DIR__ . '/../../..' . '/lib/private/KnownUser/KnownUserMapper.php',  | 
                                                        |
| 1781 | - 'OC\\KnownUser\\KnownUserService' => __DIR__ . '/../../..' . '/lib/private/KnownUser/KnownUserService.php',  | 
                                                        |
| 1782 | - 'OC\\L10N\\Factory' => __DIR__ . '/../../..' . '/lib/private/L10N/Factory.php',  | 
                                                        |
| 1783 | - 'OC\\L10N\\L10N' => __DIR__ . '/../../..' . '/lib/private/L10N/L10N.php',  | 
                                                        |
| 1784 | - 'OC\\L10N\\L10NString' => __DIR__ . '/../../..' . '/lib/private/L10N/L10NString.php',  | 
                                                        |
| 1785 | - 'OC\\L10N\\LanguageIterator' => __DIR__ . '/../../..' . '/lib/private/L10N/LanguageIterator.php',  | 
                                                        |
| 1786 | - 'OC\\L10N\\LanguageNotFoundException' => __DIR__ . '/../../..' . '/lib/private/L10N/LanguageNotFoundException.php',  | 
                                                        |
| 1787 | - 'OC\\L10N\\LazyL10N' => __DIR__ . '/../../..' . '/lib/private/L10N/LazyL10N.php',  | 
                                                        |
| 1788 | - 'OC\\LDAP\\NullLDAPProviderFactory' => __DIR__ . '/../../..' . '/lib/private/LDAP/NullLDAPProviderFactory.php',  | 
                                                        |
| 1789 | - 'OC\\LargeFileHelper' => __DIR__ . '/../../..' . '/lib/private/LargeFileHelper.php',  | 
                                                        |
| 1790 | - 'OC\\Lock\\AbstractLockingProvider' => __DIR__ . '/../../..' . '/lib/private/Lock/AbstractLockingProvider.php',  | 
                                                        |
| 1791 | - 'OC\\Lock\\DBLockingProvider' => __DIR__ . '/../../..' . '/lib/private/Lock/DBLockingProvider.php',  | 
                                                        |
| 1792 | - 'OC\\Lock\\MemcacheLockingProvider' => __DIR__ . '/../../..' . '/lib/private/Lock/MemcacheLockingProvider.php',  | 
                                                        |
| 1793 | - 'OC\\Lock\\NoopLockingProvider' => __DIR__ . '/../../..' . '/lib/private/Lock/NoopLockingProvider.php',  | 
                                                        |
| 1794 | - 'OC\\Lockdown\\Filesystem\\NullCache' => __DIR__ . '/../../..' . '/lib/private/Lockdown/Filesystem/NullCache.php',  | 
                                                        |
| 1795 | - 'OC\\Lockdown\\Filesystem\\NullStorage' => __DIR__ . '/../../..' . '/lib/private/Lockdown/Filesystem/NullStorage.php',  | 
                                                        |
| 1796 | - 'OC\\Lockdown\\LockdownManager' => __DIR__ . '/../../..' . '/lib/private/Lockdown/LockdownManager.php',  | 
                                                        |
| 1797 | - 'OC\\Log' => __DIR__ . '/../../..' . '/lib/private/Log.php',  | 
                                                        |
| 1798 | - 'OC\\Log\\ErrorHandler' => __DIR__ . '/../../..' . '/lib/private/Log/ErrorHandler.php',  | 
                                                        |
| 1799 | - 'OC\\Log\\Errorlog' => __DIR__ . '/../../..' . '/lib/private/Log/Errorlog.php',  | 
                                                        |
| 1800 | - 'OC\\Log\\ExceptionSerializer' => __DIR__ . '/../../..' . '/lib/private/Log/ExceptionSerializer.php',  | 
                                                        |
| 1801 | - 'OC\\Log\\File' => __DIR__ . '/../../..' . '/lib/private/Log/File.php',  | 
                                                        |
| 1802 | - 'OC\\Log\\LogDetails' => __DIR__ . '/../../..' . '/lib/private/Log/LogDetails.php',  | 
                                                        |
| 1803 | - 'OC\\Log\\LogFactory' => __DIR__ . '/../../..' . '/lib/private/Log/LogFactory.php',  | 
                                                        |
| 1804 | - 'OC\\Log\\PsrLoggerAdapter' => __DIR__ . '/../../..' . '/lib/private/Log/PsrLoggerAdapter.php',  | 
                                                        |
| 1805 | - 'OC\\Log\\Rotate' => __DIR__ . '/../../..' . '/lib/private/Log/Rotate.php',  | 
                                                        |
| 1806 | - 'OC\\Log\\Syslog' => __DIR__ . '/../../..' . '/lib/private/Log/Syslog.php',  | 
                                                        |
| 1807 | - 'OC\\Log\\Systemdlog' => __DIR__ . '/../../..' . '/lib/private/Log/Systemdlog.php',  | 
                                                        |
| 1808 | - 'OC\\Mail\\Attachment' => __DIR__ . '/../../..' . '/lib/private/Mail/Attachment.php',  | 
                                                        |
| 1809 | - 'OC\\Mail\\EMailTemplate' => __DIR__ . '/../../..' . '/lib/private/Mail/EMailTemplate.php',  | 
                                                        |
| 1810 | - 'OC\\Mail\\Mailer' => __DIR__ . '/../../..' . '/lib/private/Mail/Mailer.php',  | 
                                                        |
| 1811 | - 'OC\\Mail\\Message' => __DIR__ . '/../../..' . '/lib/private/Mail/Message.php',  | 
                                                        |
| 1812 | - 'OC\\Mail\\Provider\\Manager' => __DIR__ . '/../../..' . '/lib/private/Mail/Provider/Manager.php',  | 
                                                        |
| 1813 | - 'OC\\Memcache\\APCu' => __DIR__ . '/../../..' . '/lib/private/Memcache/APCu.php',  | 
                                                        |
| 1814 | - 'OC\\Memcache\\ArrayCache' => __DIR__ . '/../../..' . '/lib/private/Memcache/ArrayCache.php',  | 
                                                        |
| 1815 | - 'OC\\Memcache\\CADTrait' => __DIR__ . '/../../..' . '/lib/private/Memcache/CADTrait.php',  | 
                                                        |
| 1816 | - 'OC\\Memcache\\CASTrait' => __DIR__ . '/../../..' . '/lib/private/Memcache/CASTrait.php',  | 
                                                        |
| 1817 | - 'OC\\Memcache\\Cache' => __DIR__ . '/../../..' . '/lib/private/Memcache/Cache.php',  | 
                                                        |
| 1818 | - 'OC\\Memcache\\Factory' => __DIR__ . '/../../..' . '/lib/private/Memcache/Factory.php',  | 
                                                        |
| 1819 | - 'OC\\Memcache\\LoggerWrapperCache' => __DIR__ . '/../../..' . '/lib/private/Memcache/LoggerWrapperCache.php',  | 
                                                        |
| 1820 | - 'OC\\Memcache\\Memcached' => __DIR__ . '/../../..' . '/lib/private/Memcache/Memcached.php',  | 
                                                        |
| 1821 | - 'OC\\Memcache\\NullCache' => __DIR__ . '/../../..' . '/lib/private/Memcache/NullCache.php',  | 
                                                        |
| 1822 | - 'OC\\Memcache\\ProfilerWrapperCache' => __DIR__ . '/../../..' . '/lib/private/Memcache/ProfilerWrapperCache.php',  | 
                                                        |
| 1823 | - 'OC\\Memcache\\Redis' => __DIR__ . '/../../..' . '/lib/private/Memcache/Redis.php',  | 
                                                        |
| 1824 | - 'OC\\Memcache\\WithLocalCache' => __DIR__ . '/../../..' . '/lib/private/Memcache/WithLocalCache.php',  | 
                                                        |
| 1825 | - 'OC\\MemoryInfo' => __DIR__ . '/../../..' . '/lib/private/MemoryInfo.php',  | 
                                                        |
| 1826 | - 'OC\\Migration\\BackgroundRepair' => __DIR__ . '/../../..' . '/lib/private/Migration/BackgroundRepair.php',  | 
                                                        |
| 1827 | - 'OC\\Migration\\ConsoleOutput' => __DIR__ . '/../../..' . '/lib/private/Migration/ConsoleOutput.php',  | 
                                                        |
| 1828 | - 'OC\\Migration\\Exceptions\\AttributeException' => __DIR__ . '/../../..' . '/lib/private/Migration/Exceptions/AttributeException.php',  | 
                                                        |
| 1829 | - 'OC\\Migration\\MetadataManager' => __DIR__ . '/../../..' . '/lib/private/Migration/MetadataManager.php',  | 
                                                        |
| 1830 | - 'OC\\Migration\\NullOutput' => __DIR__ . '/../../..' . '/lib/private/Migration/NullOutput.php',  | 
                                                        |
| 1831 | - 'OC\\Migration\\SimpleOutput' => __DIR__ . '/../../..' . '/lib/private/Migration/SimpleOutput.php',  | 
                                                        |
| 1832 | - 'OC\\NaturalSort' => __DIR__ . '/../../..' . '/lib/private/NaturalSort.php',  | 
                                                        |
| 1833 | - 'OC\\NaturalSort_DefaultCollator' => __DIR__ . '/../../..' . '/lib/private/NaturalSort_DefaultCollator.php',  | 
                                                        |
| 1834 | - 'OC\\NavigationManager' => __DIR__ . '/../../..' . '/lib/private/NavigationManager.php',  | 
                                                        |
| 1835 | - 'OC\\NeedsUpdateException' => __DIR__ . '/../../..' . '/lib/private/NeedsUpdateException.php',  | 
                                                        |
| 1836 | - 'OC\\Net\\HostnameClassifier' => __DIR__ . '/../../..' . '/lib/private/Net/HostnameClassifier.php',  | 
                                                        |
| 1837 | - 'OC\\Net\\IpAddressClassifier' => __DIR__ . '/../../..' . '/lib/private/Net/IpAddressClassifier.php',  | 
                                                        |
| 1838 | - 'OC\\NotSquareException' => __DIR__ . '/../../..' . '/lib/private/NotSquareException.php',  | 
                                                        |
| 1839 | - 'OC\\Notification\\Action' => __DIR__ . '/../../..' . '/lib/private/Notification/Action.php',  | 
                                                        |
| 1840 | - 'OC\\Notification\\Manager' => __DIR__ . '/../../..' . '/lib/private/Notification/Manager.php',  | 
                                                        |
| 1841 | - 'OC\\Notification\\Notification' => __DIR__ . '/../../..' . '/lib/private/Notification/Notification.php',  | 
                                                        |
| 1842 | - 'OC\\OCM\\Model\\OCMProvider' => __DIR__ . '/../../..' . '/lib/private/OCM/Model/OCMProvider.php',  | 
                                                        |
| 1843 | - 'OC\\OCM\\Model\\OCMResource' => __DIR__ . '/../../..' . '/lib/private/OCM/Model/OCMResource.php',  | 
                                                        |
| 1844 | - 'OC\\OCM\\OCMDiscoveryService' => __DIR__ . '/../../..' . '/lib/private/OCM/OCMDiscoveryService.php',  | 
                                                        |
| 1845 | - 'OC\\OCM\\OCMSignatoryManager' => __DIR__ . '/../../..' . '/lib/private/OCM/OCMSignatoryManager.php',  | 
                                                        |
| 1846 | - 'OC\\OCS\\ApiHelper' => __DIR__ . '/../../..' . '/lib/private/OCS/ApiHelper.php',  | 
                                                        |
| 1847 | - 'OC\\OCS\\CoreCapabilities' => __DIR__ . '/../../..' . '/lib/private/OCS/CoreCapabilities.php',  | 
                                                        |
| 1848 | - 'OC\\OCS\\DiscoveryService' => __DIR__ . '/../../..' . '/lib/private/OCS/DiscoveryService.php',  | 
                                                        |
| 1849 | - 'OC\\OCS\\Provider' => __DIR__ . '/../../..' . '/lib/private/OCS/Provider.php',  | 
                                                        |
| 1850 | - 'OC\\PhoneNumberUtil' => __DIR__ . '/../../..' . '/lib/private/PhoneNumberUtil.php',  | 
                                                        |
| 1851 | - 'OC\\PreviewManager' => __DIR__ . '/../../..' . '/lib/private/PreviewManager.php',  | 
                                                        |
| 1852 | - 'OC\\PreviewNotAvailableException' => __DIR__ . '/../../..' . '/lib/private/PreviewNotAvailableException.php',  | 
                                                        |
| 1853 | - 'OC\\Preview\\BMP' => __DIR__ . '/../../..' . '/lib/private/Preview/BMP.php',  | 
                                                        |
| 1854 | - 'OC\\Preview\\BackgroundCleanupJob' => __DIR__ . '/../../..' . '/lib/private/Preview/BackgroundCleanupJob.php',  | 
                                                        |
| 1855 | - 'OC\\Preview\\Bitmap' => __DIR__ . '/../../..' . '/lib/private/Preview/Bitmap.php',  | 
                                                        |
| 1856 | - 'OC\\Preview\\Bundled' => __DIR__ . '/../../..' . '/lib/private/Preview/Bundled.php',  | 
                                                        |
| 1857 | - 'OC\\Preview\\EMF' => __DIR__ . '/../../..' . '/lib/private/Preview/EMF.php',  | 
                                                        |
| 1858 | - 'OC\\Preview\\Font' => __DIR__ . '/../../..' . '/lib/private/Preview/Font.php',  | 
                                                        |
| 1859 | - 'OC\\Preview\\GIF' => __DIR__ . '/../../..' . '/lib/private/Preview/GIF.php',  | 
                                                        |
| 1860 | - 'OC\\Preview\\Generator' => __DIR__ . '/../../..' . '/lib/private/Preview/Generator.php',  | 
                                                        |
| 1861 | - 'OC\\Preview\\GeneratorHelper' => __DIR__ . '/../../..' . '/lib/private/Preview/GeneratorHelper.php',  | 
                                                        |
| 1862 | - 'OC\\Preview\\HEIC' => __DIR__ . '/../../..' . '/lib/private/Preview/HEIC.php',  | 
                                                        |
| 1863 | - 'OC\\Preview\\IMagickSupport' => __DIR__ . '/../../..' . '/lib/private/Preview/IMagickSupport.php',  | 
                                                        |
| 1864 | - 'OC\\Preview\\Illustrator' => __DIR__ . '/../../..' . '/lib/private/Preview/Illustrator.php',  | 
                                                        |
| 1865 | - 'OC\\Preview\\Image' => __DIR__ . '/../../..' . '/lib/private/Preview/Image.php',  | 
                                                        |
| 1866 | - 'OC\\Preview\\Imaginary' => __DIR__ . '/../../..' . '/lib/private/Preview/Imaginary.php',  | 
                                                        |
| 1867 | - 'OC\\Preview\\ImaginaryPDF' => __DIR__ . '/../../..' . '/lib/private/Preview/ImaginaryPDF.php',  | 
                                                        |
| 1868 | - 'OC\\Preview\\JPEG' => __DIR__ . '/../../..' . '/lib/private/Preview/JPEG.php',  | 
                                                        |
| 1869 | - 'OC\\Preview\\Krita' => __DIR__ . '/../../..' . '/lib/private/Preview/Krita.php',  | 
                                                        |
| 1870 | - 'OC\\Preview\\MP3' => __DIR__ . '/../../..' . '/lib/private/Preview/MP3.php',  | 
                                                        |
| 1871 | - 'OC\\Preview\\MSOffice2003' => __DIR__ . '/../../..' . '/lib/private/Preview/MSOffice2003.php',  | 
                                                        |
| 1872 | - 'OC\\Preview\\MSOffice2007' => __DIR__ . '/../../..' . '/lib/private/Preview/MSOffice2007.php',  | 
                                                        |
| 1873 | - 'OC\\Preview\\MSOfficeDoc' => __DIR__ . '/../../..' . '/lib/private/Preview/MSOfficeDoc.php',  | 
                                                        |
| 1874 | - 'OC\\Preview\\MarkDown' => __DIR__ . '/../../..' . '/lib/private/Preview/MarkDown.php',  | 
                                                        |
| 1875 | - 'OC\\Preview\\MimeIconProvider' => __DIR__ . '/../../..' . '/lib/private/Preview/MimeIconProvider.php',  | 
                                                        |
| 1876 | - 'OC\\Preview\\Movie' => __DIR__ . '/../../..' . '/lib/private/Preview/Movie.php',  | 
                                                        |
| 1877 | - 'OC\\Preview\\Office' => __DIR__ . '/../../..' . '/lib/private/Preview/Office.php',  | 
                                                        |
| 1878 | - 'OC\\Preview\\OpenDocument' => __DIR__ . '/../../..' . '/lib/private/Preview/OpenDocument.php',  | 
                                                        |
| 1879 | - 'OC\\Preview\\PDF' => __DIR__ . '/../../..' . '/lib/private/Preview/PDF.php',  | 
                                                        |
| 1880 | - 'OC\\Preview\\PNG' => __DIR__ . '/../../..' . '/lib/private/Preview/PNG.php',  | 
                                                        |
| 1881 | - 'OC\\Preview\\Photoshop' => __DIR__ . '/../../..' . '/lib/private/Preview/Photoshop.php',  | 
                                                        |
| 1882 | - 'OC\\Preview\\Postscript' => __DIR__ . '/../../..' . '/lib/private/Preview/Postscript.php',  | 
                                                        |
| 1883 | - 'OC\\Preview\\Provider' => __DIR__ . '/../../..' . '/lib/private/Preview/Provider.php',  | 
                                                        |
| 1884 | - 'OC\\Preview\\ProviderV1Adapter' => __DIR__ . '/../../..' . '/lib/private/Preview/ProviderV1Adapter.php',  | 
                                                        |
| 1885 | - 'OC\\Preview\\ProviderV2' => __DIR__ . '/../../..' . '/lib/private/Preview/ProviderV2.php',  | 
                                                        |
| 1886 | - 'OC\\Preview\\SGI' => __DIR__ . '/../../..' . '/lib/private/Preview/SGI.php',  | 
                                                        |
| 1887 | - 'OC\\Preview\\SVG' => __DIR__ . '/../../..' . '/lib/private/Preview/SVG.php',  | 
                                                        |
| 1888 | - 'OC\\Preview\\StarOffice' => __DIR__ . '/../../..' . '/lib/private/Preview/StarOffice.php',  | 
                                                        |
| 1889 | - 'OC\\Preview\\Storage\\Root' => __DIR__ . '/../../..' . '/lib/private/Preview/Storage/Root.php',  | 
                                                        |
| 1890 | - 'OC\\Preview\\TGA' => __DIR__ . '/../../..' . '/lib/private/Preview/TGA.php',  | 
                                                        |
| 1891 | - 'OC\\Preview\\TIFF' => __DIR__ . '/../../..' . '/lib/private/Preview/TIFF.php',  | 
                                                        |
| 1892 | - 'OC\\Preview\\TXT' => __DIR__ . '/../../..' . '/lib/private/Preview/TXT.php',  | 
                                                        |
| 1893 | - 'OC\\Preview\\Watcher' => __DIR__ . '/../../..' . '/lib/private/Preview/Watcher.php',  | 
                                                        |
| 1894 | - 'OC\\Preview\\WatcherConnector' => __DIR__ . '/../../..' . '/lib/private/Preview/WatcherConnector.php',  | 
                                                        |
| 1895 | - 'OC\\Preview\\WebP' => __DIR__ . '/../../..' . '/lib/private/Preview/WebP.php',  | 
                                                        |
| 1896 | - 'OC\\Preview\\XBitmap' => __DIR__ . '/../../..' . '/lib/private/Preview/XBitmap.php',  | 
                                                        |
| 1897 | - 'OC\\Profile\\Actions\\EmailAction' => __DIR__ . '/../../..' . '/lib/private/Profile/Actions/EmailAction.php',  | 
                                                        |
| 1898 | - 'OC\\Profile\\Actions\\FediverseAction' => __DIR__ . '/../../..' . '/lib/private/Profile/Actions/FediverseAction.php',  | 
                                                        |
| 1899 | - 'OC\\Profile\\Actions\\PhoneAction' => __DIR__ . '/../../..' . '/lib/private/Profile/Actions/PhoneAction.php',  | 
                                                        |
| 1900 | - 'OC\\Profile\\Actions\\TwitterAction' => __DIR__ . '/../../..' . '/lib/private/Profile/Actions/TwitterAction.php',  | 
                                                        |
| 1901 | - 'OC\\Profile\\Actions\\WebsiteAction' => __DIR__ . '/../../..' . '/lib/private/Profile/Actions/WebsiteAction.php',  | 
                                                        |
| 1902 | - 'OC\\Profile\\ProfileManager' => __DIR__ . '/../../..' . '/lib/private/Profile/ProfileManager.php',  | 
                                                        |
| 1903 | - 'OC\\Profile\\TProfileHelper' => __DIR__ . '/../../..' . '/lib/private/Profile/TProfileHelper.php',  | 
                                                        |
| 1904 | - 'OC\\Profiler\\FileProfilerStorage' => __DIR__ . '/../../..' . '/lib/private/Profiler/FileProfilerStorage.php',  | 
                                                        |
| 1905 | - 'OC\\Profiler\\Profile' => __DIR__ . '/../../..' . '/lib/private/Profiler/Profile.php',  | 
                                                        |
| 1906 | - 'OC\\Profiler\\Profiler' => __DIR__ . '/../../..' . '/lib/private/Profiler/Profiler.php',  | 
                                                        |
| 1907 | - 'OC\\Profiler\\RoutingDataCollector' => __DIR__ . '/../../..' . '/lib/private/Profiler/RoutingDataCollector.php',  | 
                                                        |
| 1908 | - 'OC\\RedisFactory' => __DIR__ . '/../../..' . '/lib/private/RedisFactory.php',  | 
                                                        |
| 1909 | - 'OC\\Remote\\Api\\ApiBase' => __DIR__ . '/../../..' . '/lib/private/Remote/Api/ApiBase.php',  | 
                                                        |
| 1910 | - 'OC\\Remote\\Api\\ApiCollection' => __DIR__ . '/../../..' . '/lib/private/Remote/Api/ApiCollection.php',  | 
                                                        |
| 1911 | - 'OC\\Remote\\Api\\ApiFactory' => __DIR__ . '/../../..' . '/lib/private/Remote/Api/ApiFactory.php',  | 
                                                        |
| 1912 | - 'OC\\Remote\\Api\\NotFoundException' => __DIR__ . '/../../..' . '/lib/private/Remote/Api/NotFoundException.php',  | 
                                                        |
| 1913 | - 'OC\\Remote\\Api\\OCS' => __DIR__ . '/../../..' . '/lib/private/Remote/Api/OCS.php',  | 
                                                        |
| 1914 | - 'OC\\Remote\\Credentials' => __DIR__ . '/../../..' . '/lib/private/Remote/Credentials.php',  | 
                                                        |
| 1915 | - 'OC\\Remote\\Instance' => __DIR__ . '/../../..' . '/lib/private/Remote/Instance.php',  | 
                                                        |
| 1916 | - 'OC\\Remote\\InstanceFactory' => __DIR__ . '/../../..' . '/lib/private/Remote/InstanceFactory.php',  | 
                                                        |
| 1917 | - 'OC\\Remote\\User' => __DIR__ . '/../../..' . '/lib/private/Remote/User.php',  | 
                                                        |
| 1918 | - 'OC\\Repair' => __DIR__ . '/../../..' . '/lib/private/Repair.php',  | 
                                                        |
| 1919 | - 'OC\\RepairException' => __DIR__ . '/../../..' . '/lib/private/RepairException.php',  | 
                                                        |
| 1920 | - 'OC\\Repair\\AddAppConfigLazyMigration' => __DIR__ . '/../../..' . '/lib/private/Repair/AddAppConfigLazyMigration.php',  | 
                                                        |
| 1921 | - 'OC\\Repair\\AddBruteForceCleanupJob' => __DIR__ . '/../../..' . '/lib/private/Repair/AddBruteForceCleanupJob.php',  | 
                                                        |
| 1922 | - 'OC\\Repair\\AddCleanupDeletedUsersBackgroundJob' => __DIR__ . '/../../..' . '/lib/private/Repair/AddCleanupDeletedUsersBackgroundJob.php',  | 
                                                        |
| 1923 | - 'OC\\Repair\\AddCleanupUpdaterBackupsJob' => __DIR__ . '/../../..' . '/lib/private/Repair/AddCleanupUpdaterBackupsJob.php',  | 
                                                        |
| 1924 | - 'OC\\Repair\\AddMetadataGenerationJob' => __DIR__ . '/../../..' . '/lib/private/Repair/AddMetadataGenerationJob.php',  | 
                                                        |
| 1925 | - 'OC\\Repair\\AddRemoveOldTasksBackgroundJob' => __DIR__ . '/../../..' . '/lib/private/Repair/AddRemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 1926 | - 'OC\\Repair\\CleanTags' => __DIR__ . '/../../..' . '/lib/private/Repair/CleanTags.php',  | 
                                                        |
| 1927 | - 'OC\\Repair\\CleanUpAbandonedApps' => __DIR__ . '/../../..' . '/lib/private/Repair/CleanUpAbandonedApps.php',  | 
                                                        |
| 1928 | - 'OC\\Repair\\ClearFrontendCaches' => __DIR__ . '/../../..' . '/lib/private/Repair/ClearFrontendCaches.php',  | 
                                                        |
| 1929 | - 'OC\\Repair\\ClearGeneratedAvatarCache' => __DIR__ . '/../../..' . '/lib/private/Repair/ClearGeneratedAvatarCache.php',  | 
                                                        |
| 1930 | - 'OC\\Repair\\ClearGeneratedAvatarCacheJob' => __DIR__ . '/../../..' . '/lib/private/Repair/ClearGeneratedAvatarCacheJob.php',  | 
                                                        |
| 1931 | - 'OC\\Repair\\Collation' => __DIR__ . '/../../..' . '/lib/private/Repair/Collation.php',  | 
                                                        |
| 1932 | - 'OC\\Repair\\Events\\RepairAdvanceEvent' => __DIR__ . '/../../..' . '/lib/private/Repair/Events/RepairAdvanceEvent.php',  | 
                                                        |
| 1933 | - 'OC\\Repair\\Events\\RepairErrorEvent' => __DIR__ . '/../../..' . '/lib/private/Repair/Events/RepairErrorEvent.php',  | 
                                                        |
| 1934 | - 'OC\\Repair\\Events\\RepairFinishEvent' => __DIR__ . '/../../..' . '/lib/private/Repair/Events/RepairFinishEvent.php',  | 
                                                        |
| 1935 | - 'OC\\Repair\\Events\\RepairInfoEvent' => __DIR__ . '/../../..' . '/lib/private/Repair/Events/RepairInfoEvent.php',  | 
                                                        |
| 1936 | - 'OC\\Repair\\Events\\RepairStartEvent' => __DIR__ . '/../../..' . '/lib/private/Repair/Events/RepairStartEvent.php',  | 
                                                        |
| 1937 | - 'OC\\Repair\\Events\\RepairStepEvent' => __DIR__ . '/../../..' . '/lib/private/Repair/Events/RepairStepEvent.php',  | 
                                                        |
| 1938 | - 'OC\\Repair\\Events\\RepairWarningEvent' => __DIR__ . '/../../..' . '/lib/private/Repair/Events/RepairWarningEvent.php',  | 
                                                        |
| 1939 | - 'OC\\Repair\\MoveUpdaterStepFile' => __DIR__ . '/../../..' . '/lib/private/Repair/MoveUpdaterStepFile.php',  | 
                                                        |
| 1940 | - 'OC\\Repair\\NC13\\AddLogRotateJob' => __DIR__ . '/../../..' . '/lib/private/Repair/NC13/AddLogRotateJob.php',  | 
                                                        |
| 1941 | - 'OC\\Repair\\NC14\\AddPreviewBackgroundCleanupJob' => __DIR__ . '/../../..' . '/lib/private/Repair/NC14/AddPreviewBackgroundCleanupJob.php',  | 
                                                        |
| 1942 | - 'OC\\Repair\\NC16\\AddClenupLoginFlowV2BackgroundJob' => __DIR__ . '/../../..' . '/lib/private/Repair/NC16/AddClenupLoginFlowV2BackgroundJob.php',  | 
                                                        |
| 1943 | - 'OC\\Repair\\NC16\\CleanupCardDAVPhotoCache' => __DIR__ . '/../../..' . '/lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php',  | 
                                                        |
| 1944 | - 'OC\\Repair\\NC16\\ClearCollectionsAccessCache' => __DIR__ . '/../../..' . '/lib/private/Repair/NC16/ClearCollectionsAccessCache.php',  | 
                                                        |
| 1945 | - 'OC\\Repair\\NC18\\ResetGeneratedAvatarFlag' => __DIR__ . '/../../..' . '/lib/private/Repair/NC18/ResetGeneratedAvatarFlag.php',  | 
                                                        |
| 1946 | - 'OC\\Repair\\NC20\\EncryptionLegacyCipher' => __DIR__ . '/../../..' . '/lib/private/Repair/NC20/EncryptionLegacyCipher.php',  | 
                                                        |
| 1947 | - 'OC\\Repair\\NC20\\EncryptionMigration' => __DIR__ . '/../../..' . '/lib/private/Repair/NC20/EncryptionMigration.php',  | 
                                                        |
| 1948 | - 'OC\\Repair\\NC20\\ShippedDashboardEnable' => __DIR__ . '/../../..' . '/lib/private/Repair/NC20/ShippedDashboardEnable.php',  | 
                                                        |
| 1949 | - 'OC\\Repair\\NC21\\AddCheckForUserCertificatesJob' => __DIR__ . '/../../..' . '/lib/private/Repair/NC21/AddCheckForUserCertificatesJob.php',  | 
                                                        |
| 1950 | - 'OC\\Repair\\NC22\\LookupServerSendCheck' => __DIR__ . '/../../..' . '/lib/private/Repair/NC22/LookupServerSendCheck.php',  | 
                                                        |
| 1951 | - 'OC\\Repair\\NC24\\AddTokenCleanupJob' => __DIR__ . '/../../..' . '/lib/private/Repair/NC24/AddTokenCleanupJob.php',  | 
                                                        |
| 1952 | - 'OC\\Repair\\NC25\\AddMissingSecretJob' => __DIR__ . '/../../..' . '/lib/private/Repair/NC25/AddMissingSecretJob.php',  | 
                                                        |
| 1953 | - 'OC\\Repair\\NC29\\SanitizeAccountProperties' => __DIR__ . '/../../..' . '/lib/private/Repair/NC29/SanitizeAccountProperties.php',  | 
                                                        |
| 1954 | - 'OC\\Repair\\NC29\\SanitizeAccountPropertiesJob' => __DIR__ . '/../../..' . '/lib/private/Repair/NC29/SanitizeAccountPropertiesJob.php',  | 
                                                        |
| 1955 | - 'OC\\Repair\\NC30\\RemoveLegacyDatadirFile' => __DIR__ . '/../../..' . '/lib/private/Repair/NC30/RemoveLegacyDatadirFile.php',  | 
                                                        |
| 1956 | - 'OC\\Repair\\OldGroupMembershipShares' => __DIR__ . '/../../..' . '/lib/private/Repair/OldGroupMembershipShares.php',  | 
                                                        |
| 1957 | - 'OC\\Repair\\Owncloud\\CleanPreviews' => __DIR__ . '/../../..' . '/lib/private/Repair/Owncloud/CleanPreviews.php',  | 
                                                        |
| 1958 | - 'OC\\Repair\\Owncloud\\CleanPreviewsBackgroundJob' => __DIR__ . '/../../..' . '/lib/private/Repair/Owncloud/CleanPreviewsBackgroundJob.php',  | 
                                                        |
| 1959 | - 'OC\\Repair\\Owncloud\\DropAccountTermsTable' => __DIR__ . '/../../..' . '/lib/private/Repair/Owncloud/DropAccountTermsTable.php',  | 
                                                        |
| 1960 | - 'OC\\Repair\\Owncloud\\MigrateOauthTables' => __DIR__ . '/../../..' . '/lib/private/Repair/Owncloud/MigrateOauthTables.php',  | 
                                                        |
| 1961 | - 'OC\\Repair\\Owncloud\\MoveAvatars' => __DIR__ . '/../../..' . '/lib/private/Repair/Owncloud/MoveAvatars.php',  | 
                                                        |
| 1962 | - 'OC\\Repair\\Owncloud\\MoveAvatarsBackgroundJob' => __DIR__ . '/../../..' . '/lib/private/Repair/Owncloud/MoveAvatarsBackgroundJob.php',  | 
                                                        |
| 1963 | - 'OC\\Repair\\Owncloud\\SaveAccountsTableData' => __DIR__ . '/../../..' . '/lib/private/Repair/Owncloud/SaveAccountsTableData.php',  | 
                                                        |
| 1964 | - 'OC\\Repair\\Owncloud\\UpdateLanguageCodes' => __DIR__ . '/../../..' . '/lib/private/Repair/Owncloud/UpdateLanguageCodes.php',  | 
                                                        |
| 1965 | - 'OC\\Repair\\RemoveBrokenProperties' => __DIR__ . '/../../..' . '/lib/private/Repair/RemoveBrokenProperties.php',  | 
                                                        |
| 1966 | - 'OC\\Repair\\RemoveLinkShares' => __DIR__ . '/../../..' . '/lib/private/Repair/RemoveLinkShares.php',  | 
                                                        |
| 1967 | - 'OC\\Repair\\RepairDavShares' => __DIR__ . '/../../..' . '/lib/private/Repair/RepairDavShares.php',  | 
                                                        |
| 1968 | - 'OC\\Repair\\RepairInvalidShares' => __DIR__ . '/../../..' . '/lib/private/Repair/RepairInvalidShares.php',  | 
                                                        |
| 1969 | - 'OC\\Repair\\RepairLogoDimension' => __DIR__ . '/../../..' . '/lib/private/Repair/RepairLogoDimension.php',  | 
                                                        |
| 1970 | - 'OC\\Repair\\RepairMimeTypes' => __DIR__ . '/../../..' . '/lib/private/Repair/RepairMimeTypes.php',  | 
                                                        |
| 1971 | - 'OC\\RichObjectStrings\\RichTextFormatter' => __DIR__ . '/../../..' . '/lib/private/RichObjectStrings/RichTextFormatter.php',  | 
                                                        |
| 1972 | - 'OC\\RichObjectStrings\\Validator' => __DIR__ . '/../../..' . '/lib/private/RichObjectStrings/Validator.php',  | 
                                                        |
| 1973 | - 'OC\\Route\\CachingRouter' => __DIR__ . '/../../..' . '/lib/private/Route/CachingRouter.php',  | 
                                                        |
| 1974 | - 'OC\\Route\\Route' => __DIR__ . '/../../..' . '/lib/private/Route/Route.php',  | 
                                                        |
| 1975 | - 'OC\\Route\\Router' => __DIR__ . '/../../..' . '/lib/private/Route/Router.php',  | 
                                                        |
| 1976 | - 'OC\\Search\\FilterCollection' => __DIR__ . '/../../..' . '/lib/private/Search/FilterCollection.php',  | 
                                                        |
| 1977 | - 'OC\\Search\\FilterFactory' => __DIR__ . '/../../..' . '/lib/private/Search/FilterFactory.php',  | 
                                                        |
| 1978 | - 'OC\\Search\\Filter\\BooleanFilter' => __DIR__ . '/../../..' . '/lib/private/Search/Filter/BooleanFilter.php',  | 
                                                        |
| 1979 | - 'OC\\Search\\Filter\\DateTimeFilter' => __DIR__ . '/../../..' . '/lib/private/Search/Filter/DateTimeFilter.php',  | 
                                                        |
| 1980 | - 'OC\\Search\\Filter\\FloatFilter' => __DIR__ . '/../../..' . '/lib/private/Search/Filter/FloatFilter.php',  | 
                                                        |
| 1981 | - 'OC\\Search\\Filter\\GroupFilter' => __DIR__ . '/../../..' . '/lib/private/Search/Filter/GroupFilter.php',  | 
                                                        |
| 1982 | - 'OC\\Search\\Filter\\IntegerFilter' => __DIR__ . '/../../..' . '/lib/private/Search/Filter/IntegerFilter.php',  | 
                                                        |
| 1983 | - 'OC\\Search\\Filter\\StringFilter' => __DIR__ . '/../../..' . '/lib/private/Search/Filter/StringFilter.php',  | 
                                                        |
| 1984 | - 'OC\\Search\\Filter\\StringsFilter' => __DIR__ . '/../../..' . '/lib/private/Search/Filter/StringsFilter.php',  | 
                                                        |
| 1985 | - 'OC\\Search\\Filter\\UserFilter' => __DIR__ . '/../../..' . '/lib/private/Search/Filter/UserFilter.php',  | 
                                                        |
| 1986 | - 'OC\\Search\\SearchComposer' => __DIR__ . '/../../..' . '/lib/private/Search/SearchComposer.php',  | 
                                                        |
| 1987 | - 'OC\\Search\\SearchQuery' => __DIR__ . '/../../..' . '/lib/private/Search/SearchQuery.php',  | 
                                                        |
| 1988 | - 'OC\\Search\\UnsupportedFilter' => __DIR__ . '/../../..' . '/lib/private/Search/UnsupportedFilter.php',  | 
                                                        |
| 1989 | - 'OC\\Security\\Bruteforce\\Backend\\DatabaseBackend' => __DIR__ . '/../../..' . '/lib/private/Security/Bruteforce/Backend/DatabaseBackend.php',  | 
                                                        |
| 1990 | - 'OC\\Security\\Bruteforce\\Backend\\IBackend' => __DIR__ . '/../../..' . '/lib/private/Security/Bruteforce/Backend/IBackend.php',  | 
                                                        |
| 1991 | - 'OC\\Security\\Bruteforce\\Backend\\MemoryCacheBackend' => __DIR__ . '/../../..' . '/lib/private/Security/Bruteforce/Backend/MemoryCacheBackend.php',  | 
                                                        |
| 1992 | - 'OC\\Security\\Bruteforce\\Capabilities' => __DIR__ . '/../../..' . '/lib/private/Security/Bruteforce/Capabilities.php',  | 
                                                        |
| 1993 | - 'OC\\Security\\Bruteforce\\CleanupJob' => __DIR__ . '/../../..' . '/lib/private/Security/Bruteforce/CleanupJob.php',  | 
                                                        |
| 1994 | - 'OC\\Security\\Bruteforce\\Throttler' => __DIR__ . '/../../..' . '/lib/private/Security/Bruteforce/Throttler.php',  | 
                                                        |
| 1995 | - 'OC\\Security\\CSP\\ContentSecurityPolicy' => __DIR__ . '/../../..' . '/lib/private/Security/CSP/ContentSecurityPolicy.php',  | 
                                                        |
| 1996 | - 'OC\\Security\\CSP\\ContentSecurityPolicyManager' => __DIR__ . '/../../..' . '/lib/private/Security/CSP/ContentSecurityPolicyManager.php',  | 
                                                        |
| 1997 | - 'OC\\Security\\CSP\\ContentSecurityPolicyNonceManager' => __DIR__ . '/../../..' . '/lib/private/Security/CSP/ContentSecurityPolicyNonceManager.php',  | 
                                                        |
| 1998 | - 'OC\\Security\\CSRF\\CsrfToken' => __DIR__ . '/../../..' . '/lib/private/Security/CSRF/CsrfToken.php',  | 
                                                        |
| 1999 | - 'OC\\Security\\CSRF\\CsrfTokenGenerator' => __DIR__ . '/../../..' . '/lib/private/Security/CSRF/CsrfTokenGenerator.php',  | 
                                                        |
| 2000 | - 'OC\\Security\\CSRF\\CsrfTokenManager' => __DIR__ . '/../../..' . '/lib/private/Security/CSRF/CsrfTokenManager.php',  | 
                                                        |
| 2001 | - 'OC\\Security\\CSRF\\TokenStorage\\SessionStorage' => __DIR__ . '/../../..' . '/lib/private/Security/CSRF/TokenStorage/SessionStorage.php',  | 
                                                        |
| 2002 | - 'OC\\Security\\Certificate' => __DIR__ . '/../../..' . '/lib/private/Security/Certificate.php',  | 
                                                        |
| 2003 | - 'OC\\Security\\CertificateManager' => __DIR__ . '/../../..' . '/lib/private/Security/CertificateManager.php',  | 
                                                        |
| 2004 | - 'OC\\Security\\CredentialsManager' => __DIR__ . '/../../..' . '/lib/private/Security/CredentialsManager.php',  | 
                                                        |
| 2005 | - 'OC\\Security\\Crypto' => __DIR__ . '/../../..' . '/lib/private/Security/Crypto.php',  | 
                                                        |
| 2006 | - 'OC\\Security\\FeaturePolicy\\FeaturePolicy' => __DIR__ . '/../../..' . '/lib/private/Security/FeaturePolicy/FeaturePolicy.php',  | 
                                                        |
| 2007 | - 'OC\\Security\\FeaturePolicy\\FeaturePolicyManager' => __DIR__ . '/../../..' . '/lib/private/Security/FeaturePolicy/FeaturePolicyManager.php',  | 
                                                        |
| 2008 | - 'OC\\Security\\Hasher' => __DIR__ . '/../../..' . '/lib/private/Security/Hasher.php',  | 
                                                        |
| 2009 | - 'OC\\Security\\IdentityProof\\Key' => __DIR__ . '/../../..' . '/lib/private/Security/IdentityProof/Key.php',  | 
                                                        |
| 2010 | - 'OC\\Security\\IdentityProof\\Manager' => __DIR__ . '/../../..' . '/lib/private/Security/IdentityProof/Manager.php',  | 
                                                        |
| 2011 | - 'OC\\Security\\IdentityProof\\Signer' => __DIR__ . '/../../..' . '/lib/private/Security/IdentityProof/Signer.php',  | 
                                                        |
| 2012 | - 'OC\\Security\\Ip\\Address' => __DIR__ . '/../../..' . '/lib/private/Security/Ip/Address.php',  | 
                                                        |
| 2013 | - 'OC\\Security\\Ip\\BruteforceAllowList' => __DIR__ . '/../../..' . '/lib/private/Security/Ip/BruteforceAllowList.php',  | 
                                                        |
| 2014 | - 'OC\\Security\\Ip\\Factory' => __DIR__ . '/../../..' . '/lib/private/Security/Ip/Factory.php',  | 
                                                        |
| 2015 | - 'OC\\Security\\Ip\\Range' => __DIR__ . '/../../..' . '/lib/private/Security/Ip/Range.php',  | 
                                                        |
| 2016 | - 'OC\\Security\\Ip\\RemoteAddress' => __DIR__ . '/../../..' . '/lib/private/Security/Ip/RemoteAddress.php',  | 
                                                        |
| 2017 | - 'OC\\Security\\Normalizer\\IpAddress' => __DIR__ . '/../../..' . '/lib/private/Security/Normalizer/IpAddress.php',  | 
                                                        |
| 2018 | - 'OC\\Security\\RateLimiting\\Backend\\DatabaseBackend' => __DIR__ . '/../../..' . '/lib/private/Security/RateLimiting/Backend/DatabaseBackend.php',  | 
                                                        |
| 2019 | - 'OC\\Security\\RateLimiting\\Backend\\IBackend' => __DIR__ . '/../../..' . '/lib/private/Security/RateLimiting/Backend/IBackend.php',  | 
                                                        |
| 2020 | - 'OC\\Security\\RateLimiting\\Backend\\MemoryCacheBackend' => __DIR__ . '/../../..' . '/lib/private/Security/RateLimiting/Backend/MemoryCacheBackend.php',  | 
                                                        |
| 2021 | - 'OC\\Security\\RateLimiting\\Exception\\RateLimitExceededException' => __DIR__ . '/../../..' . '/lib/private/Security/RateLimiting/Exception/RateLimitExceededException.php',  | 
                                                        |
| 2022 | - 'OC\\Security\\RateLimiting\\Limiter' => __DIR__ . '/../../..' . '/lib/private/Security/RateLimiting/Limiter.php',  | 
                                                        |
| 2023 | - 'OC\\Security\\RemoteHostValidator' => __DIR__ . '/../../..' . '/lib/private/Security/RemoteHostValidator.php',  | 
                                                        |
| 2024 | - 'OC\\Security\\SecureRandom' => __DIR__ . '/../../..' . '/lib/private/Security/SecureRandom.php',  | 
                                                        |
| 2025 | - 'OC\\Security\\Signature\\Db\\SignatoryMapper' => __DIR__ . '/../../..' . '/lib/private/Security/Signature/Db/SignatoryMapper.php',  | 
                                                        |
| 2026 | - 'OC\\Security\\Signature\\Model\\IncomingSignedRequest' => __DIR__ . '/../../..' . '/lib/private/Security/Signature/Model/IncomingSignedRequest.php',  | 
                                                        |
| 2027 | - 'OC\\Security\\Signature\\Model\\OutgoingSignedRequest' => __DIR__ . '/../../..' . '/lib/private/Security/Signature/Model/OutgoingSignedRequest.php',  | 
                                                        |
| 2028 | - 'OC\\Security\\Signature\\Model\\SignedRequest' => __DIR__ . '/../../..' . '/lib/private/Security/Signature/Model/SignedRequest.php',  | 
                                                        |
| 2029 | - 'OC\\Security\\Signature\\SignatureManager' => __DIR__ . '/../../..' . '/lib/private/Security/Signature/SignatureManager.php',  | 
                                                        |
| 2030 | - 'OC\\Security\\TrustedDomainHelper' => __DIR__ . '/../../..' . '/lib/private/Security/TrustedDomainHelper.php',  | 
                                                        |
| 2031 | - 'OC\\Security\\VerificationToken\\CleanUpJob' => __DIR__ . '/../../..' . '/lib/private/Security/VerificationToken/CleanUpJob.php',  | 
                                                        |
| 2032 | - 'OC\\Security\\VerificationToken\\VerificationToken' => __DIR__ . '/../../..' . '/lib/private/Security/VerificationToken/VerificationToken.php',  | 
                                                        |
| 2033 | - 'OC\\Server' => __DIR__ . '/../../..' . '/lib/private/Server.php',  | 
                                                        |
| 2034 | - 'OC\\ServerContainer' => __DIR__ . '/../../..' . '/lib/private/ServerContainer.php',  | 
                                                        |
| 2035 | - 'OC\\ServerNotAvailableException' => __DIR__ . '/../../..' . '/lib/private/ServerNotAvailableException.php',  | 
                                                        |
| 2036 | - 'OC\\ServiceUnavailableException' => __DIR__ . '/../../..' . '/lib/private/ServiceUnavailableException.php',  | 
                                                        |
| 2037 | - 'OC\\Session\\CryptoSessionData' => __DIR__ . '/../../..' . '/lib/private/Session/CryptoSessionData.php',  | 
                                                        |
| 2038 | - 'OC\\Session\\CryptoWrapper' => __DIR__ . '/../../..' . '/lib/private/Session/CryptoWrapper.php',  | 
                                                        |
| 2039 | - 'OC\\Session\\Internal' => __DIR__ . '/../../..' . '/lib/private/Session/Internal.php',  | 
                                                        |
| 2040 | - 'OC\\Session\\Memory' => __DIR__ . '/../../..' . '/lib/private/Session/Memory.php',  | 
                                                        |
| 2041 | - 'OC\\Session\\Session' => __DIR__ . '/../../..' . '/lib/private/Session/Session.php',  | 
                                                        |
| 2042 | - 'OC\\Settings\\AuthorizedGroup' => __DIR__ . '/../../..' . '/lib/private/Settings/AuthorizedGroup.php',  | 
                                                        |
| 2043 | - 'OC\\Settings\\AuthorizedGroupMapper' => __DIR__ . '/../../..' . '/lib/private/Settings/AuthorizedGroupMapper.php',  | 
                                                        |
| 2044 | - 'OC\\Settings\\DeclarativeManager' => __DIR__ . '/../../..' . '/lib/private/Settings/DeclarativeManager.php',  | 
                                                        |
| 2045 | - 'OC\\Settings\\Manager' => __DIR__ . '/../../..' . '/lib/private/Settings/Manager.php',  | 
                                                        |
| 2046 | - 'OC\\Settings\\Section' => __DIR__ . '/../../..' . '/lib/private/Settings/Section.php',  | 
                                                        |
| 2047 | - 'OC\\Setup' => __DIR__ . '/../../..' . '/lib/private/Setup.php',  | 
                                                        |
| 2048 | - 'OC\\SetupCheck\\SetupCheckManager' => __DIR__ . '/../../..' . '/lib/private/SetupCheck/SetupCheckManager.php',  | 
                                                        |
| 2049 | - 'OC\\Setup\\AbstractDatabase' => __DIR__ . '/../../..' . '/lib/private/Setup/AbstractDatabase.php',  | 
                                                        |
| 2050 | - 'OC\\Setup\\MySQL' => __DIR__ . '/../../..' . '/lib/private/Setup/MySQL.php',  | 
                                                        |
| 2051 | - 'OC\\Setup\\OCI' => __DIR__ . '/../../..' . '/lib/private/Setup/OCI.php',  | 
                                                        |
| 2052 | - 'OC\\Setup\\PostgreSQL' => __DIR__ . '/../../..' . '/lib/private/Setup/PostgreSQL.php',  | 
                                                        |
| 2053 | - 'OC\\Setup\\Sqlite' => __DIR__ . '/../../..' . '/lib/private/Setup/Sqlite.php',  | 
                                                        |
| 2054 | - 'OC\\Share20\\DefaultShareProvider' => __DIR__ . '/../../..' . '/lib/private/Share20/DefaultShareProvider.php',  | 
                                                        |
| 2055 | - 'OC\\Share20\\Exception\\BackendError' => __DIR__ . '/../../..' . '/lib/private/Share20/Exception/BackendError.php',  | 
                                                        |
| 2056 | - 'OC\\Share20\\Exception\\InvalidShare' => __DIR__ . '/../../..' . '/lib/private/Share20/Exception/InvalidShare.php',  | 
                                                        |
| 2057 | - 'OC\\Share20\\Exception\\ProviderException' => __DIR__ . '/../../..' . '/lib/private/Share20/Exception/ProviderException.php',  | 
                                                        |
| 2058 | - 'OC\\Share20\\GroupDeletedListener' => __DIR__ . '/../../..' . '/lib/private/Share20/GroupDeletedListener.php',  | 
                                                        |
| 2059 | - 'OC\\Share20\\LegacyHooks' => __DIR__ . '/../../..' . '/lib/private/Share20/LegacyHooks.php',  | 
                                                        |
| 2060 | - 'OC\\Share20\\Manager' => __DIR__ . '/../../..' . '/lib/private/Share20/Manager.php',  | 
                                                        |
| 2061 | - 'OC\\Share20\\ProviderFactory' => __DIR__ . '/../../..' . '/lib/private/Share20/ProviderFactory.php',  | 
                                                        |
| 2062 | - 'OC\\Share20\\PublicShareTemplateFactory' => __DIR__ . '/../../..' . '/lib/private/Share20/PublicShareTemplateFactory.php',  | 
                                                        |
| 2063 | - 'OC\\Share20\\Share' => __DIR__ . '/../../..' . '/lib/private/Share20/Share.php',  | 
                                                        |
| 2064 | - 'OC\\Share20\\ShareAttributes' => __DIR__ . '/../../..' . '/lib/private/Share20/ShareAttributes.php',  | 
                                                        |
| 2065 | - 'OC\\Share20\\ShareDisableChecker' => __DIR__ . '/../../..' . '/lib/private/Share20/ShareDisableChecker.php',  | 
                                                        |
| 2066 | - 'OC\\Share20\\ShareHelper' => __DIR__ . '/../../..' . '/lib/private/Share20/ShareHelper.php',  | 
                                                        |
| 2067 | - 'OC\\Share20\\UserDeletedListener' => __DIR__ . '/../../..' . '/lib/private/Share20/UserDeletedListener.php',  | 
                                                        |
| 2068 | - 'OC\\Share20\\UserRemovedListener' => __DIR__ . '/../../..' . '/lib/private/Share20/UserRemovedListener.php',  | 
                                                        |
| 2069 | - 'OC\\Share\\Constants' => __DIR__ . '/../../..' . '/lib/private/Share/Constants.php',  | 
                                                        |
| 2070 | - 'OC\\Share\\Helper' => __DIR__ . '/../../..' . '/lib/private/Share/Helper.php',  | 
                                                        |
| 2071 | - 'OC\\Share\\Share' => __DIR__ . '/../../..' . '/lib/private/Share/Share.php',  | 
                                                        |
| 2072 | - 'OC\\SpeechToText\\SpeechToTextManager' => __DIR__ . '/../../..' . '/lib/private/SpeechToText/SpeechToTextManager.php',  | 
                                                        |
| 2073 | - 'OC\\SpeechToText\\TranscriptionJob' => __DIR__ . '/../../..' . '/lib/private/SpeechToText/TranscriptionJob.php',  | 
                                                        |
| 2074 | - 'OC\\StreamImage' => __DIR__ . '/../../..' . '/lib/private/StreamImage.php',  | 
                                                        |
| 2075 | - 'OC\\Streamer' => __DIR__ . '/../../..' . '/lib/private/Streamer.php',  | 
                                                        |
| 2076 | - 'OC\\SubAdmin' => __DIR__ . '/../../..' . '/lib/private/SubAdmin.php',  | 
                                                        |
| 2077 | - 'OC\\Support\\CrashReport\\Registry' => __DIR__ . '/../../..' . '/lib/private/Support/CrashReport/Registry.php',  | 
                                                        |
| 2078 | - 'OC\\Support\\Subscription\\Assertion' => __DIR__ . '/../../..' . '/lib/private/Support/Subscription/Assertion.php',  | 
                                                        |
| 2079 | - 'OC\\Support\\Subscription\\Registry' => __DIR__ . '/../../..' . '/lib/private/Support/Subscription/Registry.php',  | 
                                                        |
| 2080 | - 'OC\\SystemConfig' => __DIR__ . '/../../..' . '/lib/private/SystemConfig.php',  | 
                                                        |
| 2081 | - 'OC\\SystemTag\\ManagerFactory' => __DIR__ . '/../../..' . '/lib/private/SystemTag/ManagerFactory.php',  | 
                                                        |
| 2082 | - 'OC\\SystemTag\\SystemTag' => __DIR__ . '/../../..' . '/lib/private/SystemTag/SystemTag.php',  | 
                                                        |
| 2083 | - 'OC\\SystemTag\\SystemTagManager' => __DIR__ . '/../../..' . '/lib/private/SystemTag/SystemTagManager.php',  | 
                                                        |
| 2084 | - 'OC\\SystemTag\\SystemTagObjectMapper' => __DIR__ . '/../../..' . '/lib/private/SystemTag/SystemTagObjectMapper.php',  | 
                                                        |
| 2085 | - 'OC\\SystemTag\\SystemTagsInFilesDetector' => __DIR__ . '/../../..' . '/lib/private/SystemTag/SystemTagsInFilesDetector.php',  | 
                                                        |
| 2086 | - 'OC\\TagManager' => __DIR__ . '/../../..' . '/lib/private/TagManager.php',  | 
                                                        |
| 2087 | - 'OC\\Tagging\\Tag' => __DIR__ . '/../../..' . '/lib/private/Tagging/Tag.php',  | 
                                                        |
| 2088 | - 'OC\\Tagging\\TagMapper' => __DIR__ . '/../../..' . '/lib/private/Tagging/TagMapper.php',  | 
                                                        |
| 2089 | - 'OC\\Tags' => __DIR__ . '/../../..' . '/lib/private/Tags.php',  | 
                                                        |
| 2090 | - 'OC\\Talk\\Broker' => __DIR__ . '/../../..' . '/lib/private/Talk/Broker.php',  | 
                                                        |
| 2091 | - 'OC\\Talk\\ConversationOptions' => __DIR__ . '/../../..' . '/lib/private/Talk/ConversationOptions.php',  | 
                                                        |
| 2092 | - 'OC\\TaskProcessing\\Db\\Task' => __DIR__ . '/../../..' . '/lib/private/TaskProcessing/Db/Task.php',  | 
                                                        |
| 2093 | - 'OC\\TaskProcessing\\Db\\TaskMapper' => __DIR__ . '/../../..' . '/lib/private/TaskProcessing/Db/TaskMapper.php',  | 
                                                        |
| 2094 | - 'OC\\TaskProcessing\\Manager' => __DIR__ . '/../../..' . '/lib/private/TaskProcessing/Manager.php',  | 
                                                        |
| 2095 | - 'OC\\TaskProcessing\\RemoveOldTasksBackgroundJob' => __DIR__ . '/../../..' . '/lib/private/TaskProcessing/RemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 2096 | - 'OC\\TaskProcessing\\SynchronousBackgroundJob' => __DIR__ . '/../../..' . '/lib/private/TaskProcessing/SynchronousBackgroundJob.php',  | 
                                                        |
| 2097 | - 'OC\\Teams\\TeamManager' => __DIR__ . '/../../..' . '/lib/private/Teams/TeamManager.php',  | 
                                                        |
| 2098 | - 'OC\\TempManager' => __DIR__ . '/../../..' . '/lib/private/TempManager.php',  | 
                                                        |
| 2099 | - 'OC\\TemplateLayout' => __DIR__ . '/../../..' . '/lib/private/TemplateLayout.php',  | 
                                                        |
| 2100 | - 'OC\\Template\\Base' => __DIR__ . '/../../..' . '/lib/private/Template/Base.php',  | 
                                                        |
| 2101 | - 'OC\\Template\\CSSResourceLocator' => __DIR__ . '/../../..' . '/lib/private/Template/CSSResourceLocator.php',  | 
                                                        |
| 2102 | - 'OC\\Template\\JSCombiner' => __DIR__ . '/../../..' . '/lib/private/Template/JSCombiner.php',  | 
                                                        |
| 2103 | - 'OC\\Template\\JSConfigHelper' => __DIR__ . '/../../..' . '/lib/private/Template/JSConfigHelper.php',  | 
                                                        |
| 2104 | - 'OC\\Template\\JSResourceLocator' => __DIR__ . '/../../..' . '/lib/private/Template/JSResourceLocator.php',  | 
                                                        |
| 2105 | - 'OC\\Template\\ResourceLocator' => __DIR__ . '/../../..' . '/lib/private/Template/ResourceLocator.php',  | 
                                                        |
| 2106 | - 'OC\\Template\\ResourceNotFoundException' => __DIR__ . '/../../..' . '/lib/private/Template/ResourceNotFoundException.php',  | 
                                                        |
| 2107 | - 'OC\\Template\\Template' => __DIR__ . '/../../..' . '/lib/private/Template/Template.php',  | 
                                                        |
| 2108 | - 'OC\\Template\\TemplateFileLocator' => __DIR__ . '/../../..' . '/lib/private/Template/TemplateFileLocator.php',  | 
                                                        |
| 2109 | - 'OC\\Template\\TemplateManager' => __DIR__ . '/../../..' . '/lib/private/Template/TemplateManager.php',  | 
                                                        |
| 2110 | - 'OC\\TextProcessing\\Db\\Task' => __DIR__ . '/../../..' . '/lib/private/TextProcessing/Db/Task.php',  | 
                                                        |
| 2111 | - 'OC\\TextProcessing\\Db\\TaskMapper' => __DIR__ . '/../../..' . '/lib/private/TextProcessing/Db/TaskMapper.php',  | 
                                                        |
| 2112 | - 'OC\\TextProcessing\\Manager' => __DIR__ . '/../../..' . '/lib/private/TextProcessing/Manager.php',  | 
                                                        |
| 2113 | - 'OC\\TextProcessing\\RemoveOldTasksBackgroundJob' => __DIR__ . '/../../..' . '/lib/private/TextProcessing/RemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 2114 | - 'OC\\TextProcessing\\TaskBackgroundJob' => __DIR__ . '/../../..' . '/lib/private/TextProcessing/TaskBackgroundJob.php',  | 
                                                        |
| 2115 | - 'OC\\TextToImage\\Db\\Task' => __DIR__ . '/../../..' . '/lib/private/TextToImage/Db/Task.php',  | 
                                                        |
| 2116 | - 'OC\\TextToImage\\Db\\TaskMapper' => __DIR__ . '/../../..' . '/lib/private/TextToImage/Db/TaskMapper.php',  | 
                                                        |
| 2117 | - 'OC\\TextToImage\\Manager' => __DIR__ . '/../../..' . '/lib/private/TextToImage/Manager.php',  | 
                                                        |
| 2118 | - 'OC\\TextToImage\\RemoveOldTasksBackgroundJob' => __DIR__ . '/../../..' . '/lib/private/TextToImage/RemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 2119 | - 'OC\\TextToImage\\TaskBackgroundJob' => __DIR__ . '/../../..' . '/lib/private/TextToImage/TaskBackgroundJob.php',  | 
                                                        |
| 2120 | - 'OC\\Translation\\TranslationManager' => __DIR__ . '/../../..' . '/lib/private/Translation/TranslationManager.php',  | 
                                                        |
| 2121 | - 'OC\\URLGenerator' => __DIR__ . '/../../..' . '/lib/private/URLGenerator.php',  | 
                                                        |
| 2122 | - 'OC\\Updater' => __DIR__ . '/../../..' . '/lib/private/Updater.php',  | 
                                                        |
| 2123 | - 'OC\\Updater\\Changes' => __DIR__ . '/../../..' . '/lib/private/Updater/Changes.php',  | 
                                                        |
| 2124 | - 'OC\\Updater\\ChangesCheck' => __DIR__ . '/../../..' . '/lib/private/Updater/ChangesCheck.php',  | 
                                                        |
| 2125 | - 'OC\\Updater\\ChangesMapper' => __DIR__ . '/../../..' . '/lib/private/Updater/ChangesMapper.php',  | 
                                                        |
| 2126 | - 'OC\\Updater\\Exceptions\\ReleaseMetadataException' => __DIR__ . '/../../..' . '/lib/private/Updater/Exceptions/ReleaseMetadataException.php',  | 
                                                        |
| 2127 | - 'OC\\Updater\\ReleaseMetadata' => __DIR__ . '/../../..' . '/lib/private/Updater/ReleaseMetadata.php',  | 
                                                        |
| 2128 | - 'OC\\Updater\\VersionCheck' => __DIR__ . '/../../..' . '/lib/private/Updater/VersionCheck.php',  | 
                                                        |
| 2129 | - 'OC\\UserStatus\\ISettableProvider' => __DIR__ . '/../../..' . '/lib/private/UserStatus/ISettableProvider.php',  | 
                                                        |
| 2130 | - 'OC\\UserStatus\\Manager' => __DIR__ . '/../../..' . '/lib/private/UserStatus/Manager.php',  | 
                                                        |
| 2131 | - 'OC\\User\\AvailabilityCoordinator' => __DIR__ . '/../../..' . '/lib/private/User/AvailabilityCoordinator.php',  | 
                                                        |
| 2132 | - 'OC\\User\\Backend' => __DIR__ . '/../../..' . '/lib/private/User/Backend.php',  | 
                                                        |
| 2133 | - 'OC\\User\\BackgroundJobs\\CleanupDeletedUsers' => __DIR__ . '/../../..' . '/lib/private/User/BackgroundJobs/CleanupDeletedUsers.php',  | 
                                                        |
| 2134 | - 'OC\\User\\Database' => __DIR__ . '/../../..' . '/lib/private/User/Database.php',  | 
                                                        |
| 2135 | - 'OC\\User\\DisplayNameCache' => __DIR__ . '/../../..' . '/lib/private/User/DisplayNameCache.php',  | 
                                                        |
| 2136 | - 'OC\\User\\LazyUser' => __DIR__ . '/../../..' . '/lib/private/User/LazyUser.php',  | 
                                                        |
| 2137 | - 'OC\\User\\Listeners\\BeforeUserDeletedListener' => __DIR__ . '/../../..' . '/lib/private/User/Listeners/BeforeUserDeletedListener.php',  | 
                                                        |
| 2138 | - 'OC\\User\\Listeners\\UserChangedListener' => __DIR__ . '/../../..' . '/lib/private/User/Listeners/UserChangedListener.php',  | 
                                                        |
| 2139 | - 'OC\\User\\LoginException' => __DIR__ . '/../../..' . '/lib/private/User/LoginException.php',  | 
                                                        |
| 2140 | - 'OC\\User\\Manager' => __DIR__ . '/../../..' . '/lib/private/User/Manager.php',  | 
                                                        |
| 2141 | - 'OC\\User\\NoUserException' => __DIR__ . '/../../..' . '/lib/private/User/NoUserException.php',  | 
                                                        |
| 2142 | - 'OC\\User\\OutOfOfficeData' => __DIR__ . '/../../..' . '/lib/private/User/OutOfOfficeData.php',  | 
                                                        |
| 2143 | - 'OC\\User\\PartiallyDeletedUsersBackend' => __DIR__ . '/../../..' . '/lib/private/User/PartiallyDeletedUsersBackend.php',  | 
                                                        |
| 2144 | - 'OC\\User\\Session' => __DIR__ . '/../../..' . '/lib/private/User/Session.php',  | 
                                                        |
| 2145 | - 'OC\\User\\User' => __DIR__ . '/../../..' . '/lib/private/User/User.php',  | 
                                                        |
| 2146 | - 'OC_App' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_App.php',  | 
                                                        |
| 2147 | - 'OC_Defaults' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Defaults.php',  | 
                                                        |
| 2148 | - 'OC_Helper' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Helper.php',  | 
                                                        |
| 2149 | - 'OC_Hook' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Hook.php',  | 
                                                        |
| 2150 | - 'OC_JSON' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_JSON.php',  | 
                                                        |
| 2151 | - 'OC_Response' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Response.php',  | 
                                                        |
| 2152 | - 'OC_Template' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Template.php',  | 
                                                        |
| 2153 | - 'OC_User' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_User.php',  | 
                                                        |
| 2154 | - 'OC_Util' => __DIR__ . '/../../..' . '/lib/private/legacy/OC_Util.php',  | 
                                                        |
| 57 | + public static $classMap = array(  | 
                                                        |
| 58 | + 'Composer\\InstalledVersions' => __DIR__.'/..'.'/composer/InstalledVersions.php',  | 
                                                        |
| 59 | + 'NCU\\Config\\Exceptions\\IncorrectTypeException' => __DIR__.'/../../..'.'/lib/unstable/Config/Exceptions/IncorrectTypeException.php',  | 
                                                        |
| 60 | + 'NCU\\Config\\Exceptions\\TypeConflictException' => __DIR__.'/../../..'.'/lib/unstable/Config/Exceptions/TypeConflictException.php',  | 
                                                        |
| 61 | + 'NCU\\Config\\Exceptions\\UnknownKeyException' => __DIR__.'/../../..'.'/lib/unstable/Config/Exceptions/UnknownKeyException.php',  | 
                                                        |
| 62 | + 'NCU\\Config\\IUserConfig' => __DIR__.'/../../..'.'/lib/unstable/Config/IUserConfig.php',  | 
                                                        |
| 63 | + 'NCU\\Config\\Lexicon\\ConfigLexiconEntry' => __DIR__.'/../../..'.'/lib/unstable/Config/Lexicon/ConfigLexiconEntry.php',  | 
                                                        |
| 64 | + 'NCU\\Config\\Lexicon\\ConfigLexiconStrictness' => __DIR__.'/../../..'.'/lib/unstable/Config/Lexicon/ConfigLexiconStrictness.php',  | 
                                                        |
| 65 | + 'NCU\\Config\\Lexicon\\IConfigLexicon' => __DIR__.'/../../..'.'/lib/unstable/Config/Lexicon/IConfigLexicon.php',  | 
                                                        |
| 66 | + 'NCU\\Config\\ValueType' => __DIR__.'/../../..'.'/lib/unstable/Config/ValueType.php',  | 
                                                        |
| 67 | + 'NCU\\Federation\\ISignedCloudFederationProvider' => __DIR__.'/../../..'.'/lib/unstable/Federation/ISignedCloudFederationProvider.php',  | 
                                                        |
| 68 | + 'NCU\\Security\\Signature\\Enum\\DigestAlgorithm' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Enum/DigestAlgorithm.php',  | 
                                                        |
| 69 | + 'NCU\\Security\\Signature\\Enum\\SignatoryStatus' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Enum/SignatoryStatus.php',  | 
                                                        |
| 70 | + 'NCU\\Security\\Signature\\Enum\\SignatoryType' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Enum/SignatoryType.php',  | 
                                                        |
| 71 | + 'NCU\\Security\\Signature\\Enum\\SignatureAlgorithm' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Enum/SignatureAlgorithm.php',  | 
                                                        |
| 72 | + 'NCU\\Security\\Signature\\Exceptions\\IdentityNotFoundException' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Exceptions/IdentityNotFoundException.php',  | 
                                                        |
| 73 | + 'NCU\\Security\\Signature\\Exceptions\\IncomingRequestException' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Exceptions/IncomingRequestException.php',  | 
                                                        |
| 74 | + 'NCU\\Security\\Signature\\Exceptions\\InvalidKeyOriginException' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Exceptions/InvalidKeyOriginException.php',  | 
                                                        |
| 75 | + 'NCU\\Security\\Signature\\Exceptions\\InvalidSignatureException' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Exceptions/InvalidSignatureException.php',  | 
                                                        |
| 76 | + 'NCU\\Security\\Signature\\Exceptions\\SignatoryConflictException' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Exceptions/SignatoryConflictException.php',  | 
                                                        |
| 77 | + 'NCU\\Security\\Signature\\Exceptions\\SignatoryException' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Exceptions/SignatoryException.php',  | 
                                                        |
| 78 | + 'NCU\\Security\\Signature\\Exceptions\\SignatoryNotFoundException' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Exceptions/SignatoryNotFoundException.php',  | 
                                                        |
| 79 | + 'NCU\\Security\\Signature\\Exceptions\\SignatureElementNotFoundException' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Exceptions/SignatureElementNotFoundException.php',  | 
                                                        |
| 80 | + 'NCU\\Security\\Signature\\Exceptions\\SignatureException' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Exceptions/SignatureException.php',  | 
                                                        |
| 81 | + 'NCU\\Security\\Signature\\Exceptions\\SignatureNotFoundException' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Exceptions/SignatureNotFoundException.php',  | 
                                                        |
| 82 | + 'NCU\\Security\\Signature\\IIncomingSignedRequest' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/IIncomingSignedRequest.php',  | 
                                                        |
| 83 | + 'NCU\\Security\\Signature\\IOutgoingSignedRequest' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/IOutgoingSignedRequest.php',  | 
                                                        |
| 84 | + 'NCU\\Security\\Signature\\ISignatoryManager' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/ISignatoryManager.php',  | 
                                                        |
| 85 | + 'NCU\\Security\\Signature\\ISignatureManager' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/ISignatureManager.php',  | 
                                                        |
| 86 | + 'NCU\\Security\\Signature\\ISignedRequest' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/ISignedRequest.php',  | 
                                                        |
| 87 | + 'NCU\\Security\\Signature\\Model\\Signatory' => __DIR__.'/../../..'.'/lib/unstable/Security/Signature/Model/Signatory.php',  | 
                                                        |
| 88 | + 'OCP\\Accounts\\IAccount' => __DIR__.'/../../..'.'/lib/public/Accounts/IAccount.php',  | 
                                                        |
| 89 | + 'OCP\\Accounts\\IAccountManager' => __DIR__.'/../../..'.'/lib/public/Accounts/IAccountManager.php',  | 
                                                        |
| 90 | + 'OCP\\Accounts\\IAccountProperty' => __DIR__.'/../../..'.'/lib/public/Accounts/IAccountProperty.php',  | 
                                                        |
| 91 | + 'OCP\\Accounts\\IAccountPropertyCollection' => __DIR__.'/../../..'.'/lib/public/Accounts/IAccountPropertyCollection.php',  | 
                                                        |
| 92 | + 'OCP\\Accounts\\PropertyDoesNotExistException' => __DIR__.'/../../..'.'/lib/public/Accounts/PropertyDoesNotExistException.php',  | 
                                                        |
| 93 | + 'OCP\\Accounts\\UserUpdatedEvent' => __DIR__.'/../../..'.'/lib/public/Accounts/UserUpdatedEvent.php',  | 
                                                        |
| 94 | + 'OCP\\Activity\\ActivitySettings' => __DIR__.'/../../..'.'/lib/public/Activity/ActivitySettings.php',  | 
                                                        |
| 95 | + 'OCP\\Activity\\Exceptions\\FilterNotFoundException' => __DIR__.'/../../..'.'/lib/public/Activity/Exceptions/FilterNotFoundException.php',  | 
                                                        |
| 96 | + 'OCP\\Activity\\Exceptions\\IncompleteActivityException' => __DIR__.'/../../..'.'/lib/public/Activity/Exceptions/IncompleteActivityException.php',  | 
                                                        |
| 97 | + 'OCP\\Activity\\Exceptions\\InvalidValueException' => __DIR__.'/../../..'.'/lib/public/Activity/Exceptions/InvalidValueException.php',  | 
                                                        |
| 98 | + 'OCP\\Activity\\Exceptions\\SettingNotFoundException' => __DIR__.'/../../..'.'/lib/public/Activity/Exceptions/SettingNotFoundException.php',  | 
                                                        |
| 99 | + 'OCP\\Activity\\Exceptions\\UnknownActivityException' => __DIR__.'/../../..'.'/lib/public/Activity/Exceptions/UnknownActivityException.php',  | 
                                                        |
| 100 | + 'OCP\\Activity\\IConsumer' => __DIR__.'/../../..'.'/lib/public/Activity/IConsumer.php',  | 
                                                        |
| 101 | + 'OCP\\Activity\\IEvent' => __DIR__.'/../../..'.'/lib/public/Activity/IEvent.php',  | 
                                                        |
| 102 | + 'OCP\\Activity\\IEventMerger' => __DIR__.'/../../..'.'/lib/public/Activity/IEventMerger.php',  | 
                                                        |
| 103 | + 'OCP\\Activity\\IExtension' => __DIR__.'/../../..'.'/lib/public/Activity/IExtension.php',  | 
                                                        |
| 104 | + 'OCP\\Activity\\IFilter' => __DIR__.'/../../..'.'/lib/public/Activity/IFilter.php',  | 
                                                        |
| 105 | + 'OCP\\Activity\\IManager' => __DIR__.'/../../..'.'/lib/public/Activity/IManager.php',  | 
                                                        |
| 106 | + 'OCP\\Activity\\IProvider' => __DIR__.'/../../..'.'/lib/public/Activity/IProvider.php',  | 
                                                        |
| 107 | + 'OCP\\Activity\\ISetting' => __DIR__.'/../../..'.'/lib/public/Activity/ISetting.php',  | 
                                                        |
| 108 | + 'OCP\\AppFramework\\ApiController' => __DIR__.'/../../..'.'/lib/public/AppFramework/ApiController.php',  | 
                                                        |
| 109 | + 'OCP\\AppFramework\\App' => __DIR__.'/../../..'.'/lib/public/AppFramework/App.php',  | 
                                                        |
| 110 | + 'OCP\\AppFramework\\AuthPublicShareController' => __DIR__.'/../../..'.'/lib/public/AppFramework/AuthPublicShareController.php',  | 
                                                        |
| 111 | + 'OCP\\AppFramework\\Bootstrap\\IBootContext' => __DIR__.'/../../..'.'/lib/public/AppFramework/Bootstrap/IBootContext.php',  | 
                                                        |
| 112 | + 'OCP\\AppFramework\\Bootstrap\\IBootstrap' => __DIR__.'/../../..'.'/lib/public/AppFramework/Bootstrap/IBootstrap.php',  | 
                                                        |
| 113 | + 'OCP\\AppFramework\\Bootstrap\\IRegistrationContext' => __DIR__.'/../../..'.'/lib/public/AppFramework/Bootstrap/IRegistrationContext.php',  | 
                                                        |
| 114 | + 'OCP\\AppFramework\\Controller' => __DIR__.'/../../..'.'/lib/public/AppFramework/Controller.php',  | 
                                                        |
| 115 | + 'OCP\\AppFramework\\Db\\DoesNotExistException' => __DIR__.'/../../..'.'/lib/public/AppFramework/Db/DoesNotExistException.php',  | 
                                                        |
| 116 | + 'OCP\\AppFramework\\Db\\Entity' => __DIR__.'/../../..'.'/lib/public/AppFramework/Db/Entity.php',  | 
                                                        |
| 117 | + 'OCP\\AppFramework\\Db\\IMapperException' => __DIR__.'/../../..'.'/lib/public/AppFramework/Db/IMapperException.php',  | 
                                                        |
| 118 | + 'OCP\\AppFramework\\Db\\MultipleObjectsReturnedException' => __DIR__.'/../../..'.'/lib/public/AppFramework/Db/MultipleObjectsReturnedException.php',  | 
                                                        |
| 119 | + 'OCP\\AppFramework\\Db\\QBMapper' => __DIR__.'/../../..'.'/lib/public/AppFramework/Db/QBMapper.php',  | 
                                                        |
| 120 | + 'OCP\\AppFramework\\Db\\TTransactional' => __DIR__.'/../../..'.'/lib/public/AppFramework/Db/TTransactional.php',  | 
                                                        |
| 121 | + 'OCP\\AppFramework\\Http' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http.php',  | 
                                                        |
| 122 | + 'OCP\\AppFramework\\Http\\Attribute\\ARateLimit' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/ARateLimit.php',  | 
                                                        |
| 123 | + 'OCP\\AppFramework\\Http\\Attribute\\AnonRateLimit' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/AnonRateLimit.php',  | 
                                                        |
| 124 | + 'OCP\\AppFramework\\Http\\Attribute\\ApiRoute' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/ApiRoute.php',  | 
                                                        |
| 125 | + 'OCP\\AppFramework\\Http\\Attribute\\AppApiAdminAccessWithoutUser' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/AppApiAdminAccessWithoutUser.php',  | 
                                                        |
| 126 | + 'OCP\\AppFramework\\Http\\Attribute\\AuthorizedAdminSetting' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/AuthorizedAdminSetting.php',  | 
                                                        |
| 127 | + 'OCP\\AppFramework\\Http\\Attribute\\BruteForceProtection' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/BruteForceProtection.php',  | 
                                                        |
| 128 | + 'OCP\\AppFramework\\Http\\Attribute\\CORS' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/CORS.php',  | 
                                                        |
| 129 | + 'OCP\\AppFramework\\Http\\Attribute\\ExAppRequired' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/ExAppRequired.php',  | 
                                                        |
| 130 | + 'OCP\\AppFramework\\Http\\Attribute\\FrontpageRoute' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/FrontpageRoute.php',  | 
                                                        |
| 131 | + 'OCP\\AppFramework\\Http\\Attribute\\IgnoreOpenAPI' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/IgnoreOpenAPI.php',  | 
                                                        |
| 132 | + 'OCP\\AppFramework\\Http\\Attribute\\NoAdminRequired' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/NoAdminRequired.php',  | 
                                                        |
| 133 | + 'OCP\\AppFramework\\Http\\Attribute\\NoCSRFRequired' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/NoCSRFRequired.php',  | 
                                                        |
| 134 | + 'OCP\\AppFramework\\Http\\Attribute\\OpenAPI' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/OpenAPI.php',  | 
                                                        |
| 135 | + 'OCP\\AppFramework\\Http\\Attribute\\PasswordConfirmationRequired' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/PasswordConfirmationRequired.php',  | 
                                                        |
| 136 | + 'OCP\\AppFramework\\Http\\Attribute\\PublicPage' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/PublicPage.php',  | 
                                                        |
| 137 | + 'OCP\\AppFramework\\Http\\Attribute\\Route' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/Route.php',  | 
                                                        |
| 138 | + 'OCP\\AppFramework\\Http\\Attribute\\StrictCookiesRequired' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/StrictCookiesRequired.php',  | 
                                                        |
| 139 | + 'OCP\\AppFramework\\Http\\Attribute\\SubAdminRequired' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/SubAdminRequired.php',  | 
                                                        |
| 140 | + 'OCP\\AppFramework\\Http\\Attribute\\UseSession' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/UseSession.php',  | 
                                                        |
| 141 | + 'OCP\\AppFramework\\Http\\Attribute\\UserRateLimit' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Attribute/UserRateLimit.php',  | 
                                                        |
| 142 | + 'OCP\\AppFramework\\Http\\ContentSecurityPolicy' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/ContentSecurityPolicy.php',  | 
                                                        |
| 143 | + 'OCP\\AppFramework\\Http\\DataDisplayResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/DataDisplayResponse.php',  | 
                                                        |
| 144 | + 'OCP\\AppFramework\\Http\\DataDownloadResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/DataDownloadResponse.php',  | 
                                                        |
| 145 | + 'OCP\\AppFramework\\Http\\DataResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/DataResponse.php',  | 
                                                        |
| 146 | + 'OCP\\AppFramework\\Http\\DownloadResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/DownloadResponse.php',  | 
                                                        |
| 147 | + 'OCP\\AppFramework\\Http\\EmptyContentSecurityPolicy' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/EmptyContentSecurityPolicy.php',  | 
                                                        |
| 148 | + 'OCP\\AppFramework\\Http\\EmptyFeaturePolicy' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/EmptyFeaturePolicy.php',  | 
                                                        |
| 149 | + 'OCP\\AppFramework\\Http\\Events\\BeforeLoginTemplateRenderedEvent' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Events/BeforeLoginTemplateRenderedEvent.php',  | 
                                                        |
| 150 | + 'OCP\\AppFramework\\Http\\Events\\BeforeTemplateRenderedEvent' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Events/BeforeTemplateRenderedEvent.php',  | 
                                                        |
| 151 | + 'OCP\\AppFramework\\Http\\FeaturePolicy' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/FeaturePolicy.php',  | 
                                                        |
| 152 | + 'OCP\\AppFramework\\Http\\FileDisplayResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/FileDisplayResponse.php',  | 
                                                        |
| 153 | + 'OCP\\AppFramework\\Http\\ICallbackResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/ICallbackResponse.php',  | 
                                                        |
| 154 | + 'OCP\\AppFramework\\Http\\IOutput' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/IOutput.php',  | 
                                                        |
| 155 | + 'OCP\\AppFramework\\Http\\JSONResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/JSONResponse.php',  | 
                                                        |
| 156 | + 'OCP\\AppFramework\\Http\\NotFoundResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/NotFoundResponse.php',  | 
                                                        |
| 157 | + 'OCP\\AppFramework\\Http\\ParameterOutOfRangeException' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/ParameterOutOfRangeException.php',  | 
                                                        |
| 158 | + 'OCP\\AppFramework\\Http\\RedirectResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/RedirectResponse.php',  | 
                                                        |
| 159 | + 'OCP\\AppFramework\\Http\\RedirectToDefaultAppResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/RedirectToDefaultAppResponse.php',  | 
                                                        |
| 160 | + 'OCP\\AppFramework\\Http\\Response' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Response.php',  | 
                                                        |
| 161 | + 'OCP\\AppFramework\\Http\\StandaloneTemplateResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/StandaloneTemplateResponse.php',  | 
                                                        |
| 162 | + 'OCP\\AppFramework\\Http\\StreamResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/StreamResponse.php',  | 
                                                        |
| 163 | + 'OCP\\AppFramework\\Http\\StrictContentSecurityPolicy' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/StrictContentSecurityPolicy.php',  | 
                                                        |
| 164 | + 'OCP\\AppFramework\\Http\\StrictEvalContentSecurityPolicy' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/StrictEvalContentSecurityPolicy.php',  | 
                                                        |
| 165 | + 'OCP\\AppFramework\\Http\\StrictInlineContentSecurityPolicy' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/StrictInlineContentSecurityPolicy.php',  | 
                                                        |
| 166 | + 'OCP\\AppFramework\\Http\\TemplateResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/TemplateResponse.php',  | 
                                                        |
| 167 | + 'OCP\\AppFramework\\Http\\Template\\ExternalShareMenuAction' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Template/ExternalShareMenuAction.php',  | 
                                                        |
| 168 | + 'OCP\\AppFramework\\Http\\Template\\IMenuAction' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Template/IMenuAction.php',  | 
                                                        |
| 169 | + 'OCP\\AppFramework\\Http\\Template\\LinkMenuAction' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Template/LinkMenuAction.php',  | 
                                                        |
| 170 | + 'OCP\\AppFramework\\Http\\Template\\PublicTemplateResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Template/PublicTemplateResponse.php',  | 
                                                        |
| 171 | + 'OCP\\AppFramework\\Http\\Template\\SimpleMenuAction' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/Template/SimpleMenuAction.php',  | 
                                                        |
| 172 | + 'OCP\\AppFramework\\Http\\TextPlainResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/TextPlainResponse.php',  | 
                                                        |
| 173 | + 'OCP\\AppFramework\\Http\\TooManyRequestsResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/TooManyRequestsResponse.php',  | 
                                                        |
| 174 | + 'OCP\\AppFramework\\Http\\ZipResponse' => __DIR__.'/../../..'.'/lib/public/AppFramework/Http/ZipResponse.php',  | 
                                                        |
| 175 | + 'OCP\\AppFramework\\IAppContainer' => __DIR__.'/../../..'.'/lib/public/AppFramework/IAppContainer.php',  | 
                                                        |
| 176 | + 'OCP\\AppFramework\\Middleware' => __DIR__.'/../../..'.'/lib/public/AppFramework/Middleware.php',  | 
                                                        |
| 177 | + 'OCP\\AppFramework\\OCSController' => __DIR__.'/../../..'.'/lib/public/AppFramework/OCSController.php',  | 
                                                        |
| 178 | + 'OCP\\AppFramework\\OCS\\OCSBadRequestException' => __DIR__.'/../../..'.'/lib/public/AppFramework/OCS/OCSBadRequestException.php',  | 
                                                        |
| 179 | + 'OCP\\AppFramework\\OCS\\OCSException' => __DIR__.'/../../..'.'/lib/public/AppFramework/OCS/OCSException.php',  | 
                                                        |
| 180 | + 'OCP\\AppFramework\\OCS\\OCSForbiddenException' => __DIR__.'/../../..'.'/lib/public/AppFramework/OCS/OCSForbiddenException.php',  | 
                                                        |
| 181 | + 'OCP\\AppFramework\\OCS\\OCSNotFoundException' => __DIR__.'/../../..'.'/lib/public/AppFramework/OCS/OCSNotFoundException.php',  | 
                                                        |
| 182 | + 'OCP\\AppFramework\\OCS\\OCSPreconditionFailedException' => __DIR__.'/../../..'.'/lib/public/AppFramework/OCS/OCSPreconditionFailedException.php',  | 
                                                        |
| 183 | + 'OCP\\AppFramework\\PublicShareController' => __DIR__.'/../../..'.'/lib/public/AppFramework/PublicShareController.php',  | 
                                                        |
| 184 | + 'OCP\\AppFramework\\QueryException' => __DIR__.'/../../..'.'/lib/public/AppFramework/QueryException.php',  | 
                                                        |
| 185 | + 'OCP\\AppFramework\\Services\\IAppConfig' => __DIR__.'/../../..'.'/lib/public/AppFramework/Services/IAppConfig.php',  | 
                                                        |
| 186 | + 'OCP\\AppFramework\\Services\\IInitialState' => __DIR__.'/../../..'.'/lib/public/AppFramework/Services/IInitialState.php',  | 
                                                        |
| 187 | + 'OCP\\AppFramework\\Services\\InitialStateProvider' => __DIR__.'/../../..'.'/lib/public/AppFramework/Services/InitialStateProvider.php',  | 
                                                        |
| 188 | + 'OCP\\AppFramework\\Utility\\IControllerMethodReflector' => __DIR__.'/../../..'.'/lib/public/AppFramework/Utility/IControllerMethodReflector.php',  | 
                                                        |
| 189 | + 'OCP\\AppFramework\\Utility\\ITimeFactory' => __DIR__.'/../../..'.'/lib/public/AppFramework/Utility/ITimeFactory.php',  | 
                                                        |
| 190 | + 'OCP\\App\\AppPathNotFoundException' => __DIR__.'/../../..'.'/lib/public/App/AppPathNotFoundException.php',  | 
                                                        |
| 191 | + 'OCP\\App\\Events\\AppDisableEvent' => __DIR__.'/../../..'.'/lib/public/App/Events/AppDisableEvent.php',  | 
                                                        |
| 192 | + 'OCP\\App\\Events\\AppEnableEvent' => __DIR__.'/../../..'.'/lib/public/App/Events/AppEnableEvent.php',  | 
                                                        |
| 193 | + 'OCP\\App\\Events\\AppUpdateEvent' => __DIR__.'/../../..'.'/lib/public/App/Events/AppUpdateEvent.php',  | 
                                                        |
| 194 | + 'OCP\\App\\IAppManager' => __DIR__.'/../../..'.'/lib/public/App/IAppManager.php',  | 
                                                        |
| 195 | + 'OCP\\App\\ManagerEvent' => __DIR__.'/../../..'.'/lib/public/App/ManagerEvent.php',  | 
                                                        |
| 196 | + 'OCP\\Authentication\\Events\\AnyLoginFailedEvent' => __DIR__.'/../../..'.'/lib/public/Authentication/Events/AnyLoginFailedEvent.php',  | 
                                                        |
| 197 | + 'OCP\\Authentication\\Events\\LoginFailedEvent' => __DIR__.'/../../..'.'/lib/public/Authentication/Events/LoginFailedEvent.php',  | 
                                                        |
| 198 | + 'OCP\\Authentication\\Exceptions\\CredentialsUnavailableException' => __DIR__.'/../../..'.'/lib/public/Authentication/Exceptions/CredentialsUnavailableException.php',  | 
                                                        |
| 199 | + 'OCP\\Authentication\\Exceptions\\ExpiredTokenException' => __DIR__.'/../../..'.'/lib/public/Authentication/Exceptions/ExpiredTokenException.php',  | 
                                                        |
| 200 | + 'OCP\\Authentication\\Exceptions\\InvalidTokenException' => __DIR__.'/../../..'.'/lib/public/Authentication/Exceptions/InvalidTokenException.php',  | 
                                                        |
| 201 | + 'OCP\\Authentication\\Exceptions\\PasswordUnavailableException' => __DIR__.'/../../..'.'/lib/public/Authentication/Exceptions/PasswordUnavailableException.php',  | 
                                                        |
| 202 | + 'OCP\\Authentication\\Exceptions\\WipeTokenException' => __DIR__.'/../../..'.'/lib/public/Authentication/Exceptions/WipeTokenException.php',  | 
                                                        |
| 203 | + 'OCP\\Authentication\\IAlternativeLogin' => __DIR__.'/../../..'.'/lib/public/Authentication/IAlternativeLogin.php',  | 
                                                        |
| 204 | + 'OCP\\Authentication\\IApacheBackend' => __DIR__.'/../../..'.'/lib/public/Authentication/IApacheBackend.php',  | 
                                                        |
| 205 | + 'OCP\\Authentication\\IProvideUserSecretBackend' => __DIR__.'/../../..'.'/lib/public/Authentication/IProvideUserSecretBackend.php',  | 
                                                        |
| 206 | + 'OCP\\Authentication\\LoginCredentials\\ICredentials' => __DIR__.'/../../..'.'/lib/public/Authentication/LoginCredentials/ICredentials.php',  | 
                                                        |
| 207 | + 'OCP\\Authentication\\LoginCredentials\\IStore' => __DIR__.'/../../..'.'/lib/public/Authentication/LoginCredentials/IStore.php',  | 
                                                        |
| 208 | + 'OCP\\Authentication\\Token\\IProvider' => __DIR__.'/../../..'.'/lib/public/Authentication/Token/IProvider.php',  | 
                                                        |
| 209 | + 'OCP\\Authentication\\Token\\IToken' => __DIR__.'/../../..'.'/lib/public/Authentication/Token/IToken.php',  | 
                                                        |
| 210 | + 'OCP\\Authentication\\TwoFactorAuth\\ALoginSetupController' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/ALoginSetupController.php',  | 
                                                        |
| 211 | + 'OCP\\Authentication\\TwoFactorAuth\\IActivatableAtLogin' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/IActivatableAtLogin.php',  | 
                                                        |
| 212 | + 'OCP\\Authentication\\TwoFactorAuth\\IActivatableByAdmin' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/IActivatableByAdmin.php',  | 
                                                        |
| 213 | + 'OCP\\Authentication\\TwoFactorAuth\\IDeactivatableByAdmin' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/IDeactivatableByAdmin.php',  | 
                                                        |
| 214 | + 'OCP\\Authentication\\TwoFactorAuth\\ILoginSetupProvider' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/ILoginSetupProvider.php',  | 
                                                        |
| 215 | + 'OCP\\Authentication\\TwoFactorAuth\\IPersonalProviderSettings' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/IPersonalProviderSettings.php',  | 
                                                        |
| 216 | + 'OCP\\Authentication\\TwoFactorAuth\\IProvider' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/IProvider.php',  | 
                                                        |
| 217 | + 'OCP\\Authentication\\TwoFactorAuth\\IProvidesCustomCSP' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/IProvidesCustomCSP.php',  | 
                                                        |
| 218 | + 'OCP\\Authentication\\TwoFactorAuth\\IProvidesIcons' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/IProvidesIcons.php',  | 
                                                        |
| 219 | + 'OCP\\Authentication\\TwoFactorAuth\\IProvidesPersonalSettings' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/IProvidesPersonalSettings.php',  | 
                                                        |
| 220 | + 'OCP\\Authentication\\TwoFactorAuth\\IRegistry' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/IRegistry.php',  | 
                                                        |
| 221 | + 'OCP\\Authentication\\TwoFactorAuth\\RegistryEvent' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/RegistryEvent.php',  | 
                                                        |
| 222 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorException' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/TwoFactorException.php',  | 
                                                        |
| 223 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderChallengeFailed' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderChallengeFailed.php',  | 
                                                        |
| 224 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderChallengePassed' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderChallengePassed.php',  | 
                                                        |
| 225 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderDisabled' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderDisabled.php',  | 
                                                        |
| 226 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserDisabled' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserDisabled.php',  | 
                                                        |
| 227 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserEnabled' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserEnabled.php',  | 
                                                        |
| 228 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserRegistered' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserRegistered.php',  | 
                                                        |
| 229 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserUnregistered' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserUnregistered.php',  | 
                                                        |
| 230 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderUserDeleted' => __DIR__.'/../../..'.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderUserDeleted.php',  | 
                                                        |
| 231 | + 'OCP\\AutoloadNotAllowedException' => __DIR__.'/../../..'.'/lib/public/AutoloadNotAllowedException.php',  | 
                                                        |
| 232 | + 'OCP\\BackgroundJob\\IJob' => __DIR__.'/../../..'.'/lib/public/BackgroundJob/IJob.php',  | 
                                                        |
| 233 | + 'OCP\\BackgroundJob\\IJobList' => __DIR__.'/../../..'.'/lib/public/BackgroundJob/IJobList.php',  | 
                                                        |
| 234 | + 'OCP\\BackgroundJob\\IParallelAwareJob' => __DIR__.'/../../..'.'/lib/public/BackgroundJob/IParallelAwareJob.php',  | 
                                                        |
| 235 | + 'OCP\\BackgroundJob\\Job' => __DIR__.'/../../..'.'/lib/public/BackgroundJob/Job.php',  | 
                                                        |
| 236 | + 'OCP\\BackgroundJob\\QueuedJob' => __DIR__.'/../../..'.'/lib/public/BackgroundJob/QueuedJob.php',  | 
                                                        |
| 237 | + 'OCP\\BackgroundJob\\TimedJob' => __DIR__.'/../../..'.'/lib/public/BackgroundJob/TimedJob.php',  | 
                                                        |
| 238 | + 'OCP\\BeforeSabrePubliclyLoadedEvent' => __DIR__.'/../../..'.'/lib/public/BeforeSabrePubliclyLoadedEvent.php',  | 
                                                        |
| 239 | + 'OCP\\Broadcast\\Events\\IBroadcastEvent' => __DIR__.'/../../..'.'/lib/public/Broadcast/Events/IBroadcastEvent.php',  | 
                                                        |
| 240 | + 'OCP\\Cache\\CappedMemoryCache' => __DIR__.'/../../..'.'/lib/public/Cache/CappedMemoryCache.php',  | 
                                                        |
| 241 | + 'OCP\\Calendar\\BackendTemporarilyUnavailableException' => __DIR__.'/../../..'.'/lib/public/Calendar/BackendTemporarilyUnavailableException.php',  | 
                                                        |
| 242 | + 'OCP\\Calendar\\CalendarEventStatus' => __DIR__.'/../../..'.'/lib/public/Calendar/CalendarEventStatus.php',  | 
                                                        |
| 243 | + 'OCP\\Calendar\\Events\\AbstractCalendarObjectEvent' => __DIR__.'/../../..'.'/lib/public/Calendar/Events/AbstractCalendarObjectEvent.php',  | 
                                                        |
| 244 | + 'OCP\\Calendar\\Events\\CalendarObjectCreatedEvent' => __DIR__.'/../../..'.'/lib/public/Calendar/Events/CalendarObjectCreatedEvent.php',  | 
                                                        |
| 245 | + 'OCP\\Calendar\\Events\\CalendarObjectDeletedEvent' => __DIR__.'/../../..'.'/lib/public/Calendar/Events/CalendarObjectDeletedEvent.php',  | 
                                                        |
| 246 | + 'OCP\\Calendar\\Events\\CalendarObjectMovedEvent' => __DIR__.'/../../..'.'/lib/public/Calendar/Events/CalendarObjectMovedEvent.php',  | 
                                                        |
| 247 | + 'OCP\\Calendar\\Events\\CalendarObjectMovedToTrashEvent' => __DIR__.'/../../..'.'/lib/public/Calendar/Events/CalendarObjectMovedToTrashEvent.php',  | 
                                                        |
| 248 | + 'OCP\\Calendar\\Events\\CalendarObjectRestoredEvent' => __DIR__.'/../../..'.'/lib/public/Calendar/Events/CalendarObjectRestoredEvent.php',  | 
                                                        |
| 249 | + 'OCP\\Calendar\\Events\\CalendarObjectUpdatedEvent' => __DIR__.'/../../..'.'/lib/public/Calendar/Events/CalendarObjectUpdatedEvent.php',  | 
                                                        |
| 250 | + 'OCP\\Calendar\\Exceptions\\CalendarException' => __DIR__.'/../../..'.'/lib/public/Calendar/Exceptions/CalendarException.php',  | 
                                                        |
| 251 | + 'OCP\\Calendar\\IAvailabilityResult' => __DIR__.'/../../..'.'/lib/public/Calendar/IAvailabilityResult.php',  | 
                                                        |
| 252 | + 'OCP\\Calendar\\ICalendar' => __DIR__.'/../../..'.'/lib/public/Calendar/ICalendar.php',  | 
                                                        |
| 253 | + 'OCP\\Calendar\\ICalendarEventBuilder' => __DIR__.'/../../..'.'/lib/public/Calendar/ICalendarEventBuilder.php',  | 
                                                        |
| 254 | + 'OCP\\Calendar\\ICalendarIsShared' => __DIR__.'/../../..'.'/lib/public/Calendar/ICalendarIsShared.php',  | 
                                                        |
| 255 | + 'OCP\\Calendar\\ICalendarIsWritable' => __DIR__.'/../../..'.'/lib/public/Calendar/ICalendarIsWritable.php',  | 
                                                        |
| 256 | + 'OCP\\Calendar\\ICalendarProvider' => __DIR__.'/../../..'.'/lib/public/Calendar/ICalendarProvider.php',  | 
                                                        |
| 257 | + 'OCP\\Calendar\\ICalendarQuery' => __DIR__.'/../../..'.'/lib/public/Calendar/ICalendarQuery.php',  | 
                                                        |
| 258 | + 'OCP\\Calendar\\ICreateFromString' => __DIR__.'/../../..'.'/lib/public/Calendar/ICreateFromString.php',  | 
                                                        |
| 259 | + 'OCP\\Calendar\\IHandleImipMessage' => __DIR__.'/../../..'.'/lib/public/Calendar/IHandleImipMessage.php',  | 
                                                        |
| 260 | + 'OCP\\Calendar\\IManager' => __DIR__.'/../../..'.'/lib/public/Calendar/IManager.php',  | 
                                                        |
| 261 | + 'OCP\\Calendar\\IMetadataProvider' => __DIR__.'/../../..'.'/lib/public/Calendar/IMetadataProvider.php',  | 
                                                        |
| 262 | + 'OCP\\Calendar\\Resource\\IBackend' => __DIR__.'/../../..'.'/lib/public/Calendar/Resource/IBackend.php',  | 
                                                        |
| 263 | + 'OCP\\Calendar\\Resource\\IManager' => __DIR__.'/../../..'.'/lib/public/Calendar/Resource/IManager.php',  | 
                                                        |
| 264 | + 'OCP\\Calendar\\Resource\\IResource' => __DIR__.'/../../..'.'/lib/public/Calendar/Resource/IResource.php',  | 
                                                        |
| 265 | + 'OCP\\Calendar\\Resource\\IResourceMetadata' => __DIR__.'/../../..'.'/lib/public/Calendar/Resource/IResourceMetadata.php',  | 
                                                        |
| 266 | + 'OCP\\Calendar\\Room\\IBackend' => __DIR__.'/../../..'.'/lib/public/Calendar/Room/IBackend.php',  | 
                                                        |
| 267 | + 'OCP\\Calendar\\Room\\IManager' => __DIR__.'/../../..'.'/lib/public/Calendar/Room/IManager.php',  | 
                                                        |
| 268 | + 'OCP\\Calendar\\Room\\IRoom' => __DIR__.'/../../..'.'/lib/public/Calendar/Room/IRoom.php',  | 
                                                        |
| 269 | + 'OCP\\Calendar\\Room\\IRoomMetadata' => __DIR__.'/../../..'.'/lib/public/Calendar/Room/IRoomMetadata.php',  | 
                                                        |
| 270 | + 'OCP\\Capabilities\\ICapability' => __DIR__.'/../../..'.'/lib/public/Capabilities/ICapability.php',  | 
                                                        |
| 271 | + 'OCP\\Capabilities\\IInitialStateExcludedCapability' => __DIR__.'/../../..'.'/lib/public/Capabilities/IInitialStateExcludedCapability.php',  | 
                                                        |
| 272 | + 'OCP\\Capabilities\\IPublicCapability' => __DIR__.'/../../..'.'/lib/public/Capabilities/IPublicCapability.php',  | 
                                                        |
| 273 | + 'OCP\\Collaboration\\AutoComplete\\AutoCompleteEvent' => __DIR__.'/../../..'.'/lib/public/Collaboration/AutoComplete/AutoCompleteEvent.php',  | 
                                                        |
| 274 | + 'OCP\\Collaboration\\AutoComplete\\AutoCompleteFilterEvent' => __DIR__.'/../../..'.'/lib/public/Collaboration/AutoComplete/AutoCompleteFilterEvent.php',  | 
                                                        |
| 275 | + 'OCP\\Collaboration\\AutoComplete\\IManager' => __DIR__.'/../../..'.'/lib/public/Collaboration/AutoComplete/IManager.php',  | 
                                                        |
| 276 | + 'OCP\\Collaboration\\AutoComplete\\ISorter' => __DIR__.'/../../..'.'/lib/public/Collaboration/AutoComplete/ISorter.php',  | 
                                                        |
| 277 | + 'OCP\\Collaboration\\Collaborators\\ISearch' => __DIR__.'/../../..'.'/lib/public/Collaboration/Collaborators/ISearch.php',  | 
                                                        |
| 278 | + 'OCP\\Collaboration\\Collaborators\\ISearchPlugin' => __DIR__.'/../../..'.'/lib/public/Collaboration/Collaborators/ISearchPlugin.php',  | 
                                                        |
| 279 | + 'OCP\\Collaboration\\Collaborators\\ISearchResult' => __DIR__.'/../../..'.'/lib/public/Collaboration/Collaborators/ISearchResult.php',  | 
                                                        |
| 280 | + 'OCP\\Collaboration\\Collaborators\\SearchResultType' => __DIR__.'/../../..'.'/lib/public/Collaboration/Collaborators/SearchResultType.php',  | 
                                                        |
| 281 | + 'OCP\\Collaboration\\Reference\\ADiscoverableReferenceProvider' => __DIR__.'/../../..'.'/lib/public/Collaboration/Reference/ADiscoverableReferenceProvider.php',  | 
                                                        |
| 282 | + 'OCP\\Collaboration\\Reference\\IDiscoverableReferenceProvider' => __DIR__.'/../../..'.'/lib/public/Collaboration/Reference/IDiscoverableReferenceProvider.php',  | 
                                                        |
| 283 | + 'OCP\\Collaboration\\Reference\\IPublicReferenceProvider' => __DIR__.'/../../..'.'/lib/public/Collaboration/Reference/IPublicReferenceProvider.php',  | 
                                                        |
| 284 | + 'OCP\\Collaboration\\Reference\\IReference' => __DIR__.'/../../..'.'/lib/public/Collaboration/Reference/IReference.php',  | 
                                                        |
| 285 | + 'OCP\\Collaboration\\Reference\\IReferenceManager' => __DIR__.'/../../..'.'/lib/public/Collaboration/Reference/IReferenceManager.php',  | 
                                                        |
| 286 | + 'OCP\\Collaboration\\Reference\\IReferenceProvider' => __DIR__.'/../../..'.'/lib/public/Collaboration/Reference/IReferenceProvider.php',  | 
                                                        |
| 287 | + 'OCP\\Collaboration\\Reference\\ISearchableReferenceProvider' => __DIR__.'/../../..'.'/lib/public/Collaboration/Reference/ISearchableReferenceProvider.php',  | 
                                                        |
| 288 | + 'OCP\\Collaboration\\Reference\\LinkReferenceProvider' => __DIR__.'/../../..'.'/lib/public/Collaboration/Reference/LinkReferenceProvider.php',  | 
                                                        |
| 289 | + 'OCP\\Collaboration\\Reference\\Reference' => __DIR__.'/../../..'.'/lib/public/Collaboration/Reference/Reference.php',  | 
                                                        |
| 290 | + 'OCP\\Collaboration\\Reference\\RenderReferenceEvent' => __DIR__.'/../../..'.'/lib/public/Collaboration/Reference/RenderReferenceEvent.php',  | 
                                                        |
| 291 | + 'OCP\\Collaboration\\Resources\\CollectionException' => __DIR__.'/../../..'.'/lib/public/Collaboration/Resources/CollectionException.php',  | 
                                                        |
| 292 | + 'OCP\\Collaboration\\Resources\\ICollection' => __DIR__.'/../../..'.'/lib/public/Collaboration/Resources/ICollection.php',  | 
                                                        |
| 293 | + 'OCP\\Collaboration\\Resources\\IManager' => __DIR__.'/../../..'.'/lib/public/Collaboration/Resources/IManager.php',  | 
                                                        |
| 294 | + 'OCP\\Collaboration\\Resources\\IProvider' => __DIR__.'/../../..'.'/lib/public/Collaboration/Resources/IProvider.php',  | 
                                                        |
| 295 | + 'OCP\\Collaboration\\Resources\\IProviderManager' => __DIR__.'/../../..'.'/lib/public/Collaboration/Resources/IProviderManager.php',  | 
                                                        |
| 296 | + 'OCP\\Collaboration\\Resources\\IResource' => __DIR__.'/../../..'.'/lib/public/Collaboration/Resources/IResource.php',  | 
                                                        |
| 297 | + 'OCP\\Collaboration\\Resources\\LoadAdditionalScriptsEvent' => __DIR__.'/../../..'.'/lib/public/Collaboration/Resources/LoadAdditionalScriptsEvent.php',  | 
                                                        |
| 298 | + 'OCP\\Collaboration\\Resources\\ResourceException' => __DIR__.'/../../..'.'/lib/public/Collaboration/Resources/ResourceException.php',  | 
                                                        |
| 299 | + 'OCP\\Color' => __DIR__.'/../../..'.'/lib/public/Color.php',  | 
                                                        |
| 300 | + 'OCP\\Command\\IBus' => __DIR__.'/../../..'.'/lib/public/Command/IBus.php',  | 
                                                        |
| 301 | + 'OCP\\Command\\ICommand' => __DIR__.'/../../..'.'/lib/public/Command/ICommand.php',  | 
                                                        |
| 302 | + 'OCP\\Comments\\CommentsEntityEvent' => __DIR__.'/../../..'.'/lib/public/Comments/CommentsEntityEvent.php',  | 
                                                        |
| 303 | + 'OCP\\Comments\\CommentsEvent' => __DIR__.'/../../..'.'/lib/public/Comments/CommentsEvent.php',  | 
                                                        |
| 304 | + 'OCP\\Comments\\IComment' => __DIR__.'/../../..'.'/lib/public/Comments/IComment.php',  | 
                                                        |
| 305 | + 'OCP\\Comments\\ICommentsEventHandler' => __DIR__.'/../../..'.'/lib/public/Comments/ICommentsEventHandler.php',  | 
                                                        |
| 306 | + 'OCP\\Comments\\ICommentsManager' => __DIR__.'/../../..'.'/lib/public/Comments/ICommentsManager.php',  | 
                                                        |
| 307 | + 'OCP\\Comments\\ICommentsManagerFactory' => __DIR__.'/../../..'.'/lib/public/Comments/ICommentsManagerFactory.php',  | 
                                                        |
| 308 | + 'OCP\\Comments\\IllegalIDChangeException' => __DIR__.'/../../..'.'/lib/public/Comments/IllegalIDChangeException.php',  | 
                                                        |
| 309 | + 'OCP\\Comments\\MessageTooLongException' => __DIR__.'/../../..'.'/lib/public/Comments/MessageTooLongException.php',  | 
                                                        |
| 310 | + 'OCP\\Comments\\NotFoundException' => __DIR__.'/../../..'.'/lib/public/Comments/NotFoundException.php',  | 
                                                        |
| 311 | + 'OCP\\Common\\Exception\\NotFoundException' => __DIR__.'/../../..'.'/lib/public/Common/Exception/NotFoundException.php',  | 
                                                        |
| 312 | + 'OCP\\Config\\BeforePreferenceDeletedEvent' => __DIR__.'/../../..'.'/lib/public/Config/BeforePreferenceDeletedEvent.php',  | 
                                                        |
| 313 | + 'OCP\\Config\\BeforePreferenceSetEvent' => __DIR__.'/../../..'.'/lib/public/Config/BeforePreferenceSetEvent.php',  | 
                                                        |
| 314 | + 'OCP\\Console\\ConsoleEvent' => __DIR__.'/../../..'.'/lib/public/Console/ConsoleEvent.php',  | 
                                                        |
| 315 | + 'OCP\\Console\\ReservedOptions' => __DIR__.'/../../..'.'/lib/public/Console/ReservedOptions.php',  | 
                                                        |
| 316 | + 'OCP\\Constants' => __DIR__.'/../../..'.'/lib/public/Constants.php',  | 
                                                        |
| 317 | + 'OCP\\Contacts\\ContactsMenu\\IAction' => __DIR__.'/../../..'.'/lib/public/Contacts/ContactsMenu/IAction.php',  | 
                                                        |
| 318 | + 'OCP\\Contacts\\ContactsMenu\\IActionFactory' => __DIR__.'/../../..'.'/lib/public/Contacts/ContactsMenu/IActionFactory.php',  | 
                                                        |
| 319 | + 'OCP\\Contacts\\ContactsMenu\\IBulkProvider' => __DIR__.'/../../..'.'/lib/public/Contacts/ContactsMenu/IBulkProvider.php',  | 
                                                        |
| 320 | + 'OCP\\Contacts\\ContactsMenu\\IContactsStore' => __DIR__.'/../../..'.'/lib/public/Contacts/ContactsMenu/IContactsStore.php',  | 
                                                        |
| 321 | + 'OCP\\Contacts\\ContactsMenu\\IEntry' => __DIR__.'/../../..'.'/lib/public/Contacts/ContactsMenu/IEntry.php',  | 
                                                        |
| 322 | + 'OCP\\Contacts\\ContactsMenu\\ILinkAction' => __DIR__.'/../../..'.'/lib/public/Contacts/ContactsMenu/ILinkAction.php',  | 
                                                        |
| 323 | + 'OCP\\Contacts\\ContactsMenu\\IProvider' => __DIR__.'/../../..'.'/lib/public/Contacts/ContactsMenu/IProvider.php',  | 
                                                        |
| 324 | + 'OCP\\Contacts\\Events\\ContactInteractedWithEvent' => __DIR__.'/../../..'.'/lib/public/Contacts/Events/ContactInteractedWithEvent.php',  | 
                                                        |
| 325 | + 'OCP\\Contacts\\IManager' => __DIR__.'/../../..'.'/lib/public/Contacts/IManager.php',  | 
                                                        |
| 326 | + 'OCP\\DB\\Events\\AddMissingColumnsEvent' => __DIR__.'/../../..'.'/lib/public/DB/Events/AddMissingColumnsEvent.php',  | 
                                                        |
| 327 | + 'OCP\\DB\\Events\\AddMissingIndicesEvent' => __DIR__.'/../../..'.'/lib/public/DB/Events/AddMissingIndicesEvent.php',  | 
                                                        |
| 328 | + 'OCP\\DB\\Events\\AddMissingPrimaryKeyEvent' => __DIR__.'/../../..'.'/lib/public/DB/Events/AddMissingPrimaryKeyEvent.php',  | 
                                                        |
| 329 | + 'OCP\\DB\\Exception' => __DIR__.'/../../..'.'/lib/public/DB/Exception.php',  | 
                                                        |
| 330 | + 'OCP\\DB\\IPreparedStatement' => __DIR__.'/../../..'.'/lib/public/DB/IPreparedStatement.php',  | 
                                                        |
| 331 | + 'OCP\\DB\\IResult' => __DIR__.'/../../..'.'/lib/public/DB/IResult.php',  | 
                                                        |
| 332 | + 'OCP\\DB\\ISchemaWrapper' => __DIR__.'/../../..'.'/lib/public/DB/ISchemaWrapper.php',  | 
                                                        |
| 333 | + 'OCP\\DB\\QueryBuilder\\ICompositeExpression' => __DIR__.'/../../..'.'/lib/public/DB/QueryBuilder/ICompositeExpression.php',  | 
                                                        |
| 334 | + 'OCP\\DB\\QueryBuilder\\IExpressionBuilder' => __DIR__.'/../../..'.'/lib/public/DB/QueryBuilder/IExpressionBuilder.php',  | 
                                                        |
| 335 | + 'OCP\\DB\\QueryBuilder\\IFunctionBuilder' => __DIR__.'/../../..'.'/lib/public/DB/QueryBuilder/IFunctionBuilder.php',  | 
                                                        |
| 336 | + 'OCP\\DB\\QueryBuilder\\ILiteral' => __DIR__.'/../../..'.'/lib/public/DB/QueryBuilder/ILiteral.php',  | 
                                                        |
| 337 | + 'OCP\\DB\\QueryBuilder\\IParameter' => __DIR__.'/../../..'.'/lib/public/DB/QueryBuilder/IParameter.php',  | 
                                                        |
| 338 | + 'OCP\\DB\\QueryBuilder\\IQueryBuilder' => __DIR__.'/../../..'.'/lib/public/DB/QueryBuilder/IQueryBuilder.php',  | 
                                                        |
| 339 | + 'OCP\\DB\\QueryBuilder\\IQueryFunction' => __DIR__.'/../../..'.'/lib/public/DB/QueryBuilder/IQueryFunction.php',  | 
                                                        |
| 340 | + 'OCP\\DB\\QueryBuilder\\Sharded\\IShardMapper' => __DIR__.'/../../..'.'/lib/public/DB/QueryBuilder/Sharded/IShardMapper.php',  | 
                                                        |
| 341 | + 'OCP\\DB\\Types' => __DIR__.'/../../..'.'/lib/public/DB/Types.php',  | 
                                                        |
| 342 | + 'OCP\\Dashboard\\IAPIWidget' => __DIR__.'/../../..'.'/lib/public/Dashboard/IAPIWidget.php',  | 
                                                        |
| 343 | + 'OCP\\Dashboard\\IAPIWidgetV2' => __DIR__.'/../../..'.'/lib/public/Dashboard/IAPIWidgetV2.php',  | 
                                                        |
| 344 | + 'OCP\\Dashboard\\IButtonWidget' => __DIR__.'/../../..'.'/lib/public/Dashboard/IButtonWidget.php',  | 
                                                        |
| 345 | + 'OCP\\Dashboard\\IConditionalWidget' => __DIR__.'/../../..'.'/lib/public/Dashboard/IConditionalWidget.php',  | 
                                                        |
| 346 | + 'OCP\\Dashboard\\IIconWidget' => __DIR__.'/../../..'.'/lib/public/Dashboard/IIconWidget.php',  | 
                                                        |
| 347 | + 'OCP\\Dashboard\\IManager' => __DIR__.'/../../..'.'/lib/public/Dashboard/IManager.php',  | 
                                                        |
| 348 | + 'OCP\\Dashboard\\IOptionWidget' => __DIR__.'/../../..'.'/lib/public/Dashboard/IOptionWidget.php',  | 
                                                        |
| 349 | + 'OCP\\Dashboard\\IReloadableWidget' => __DIR__.'/../../..'.'/lib/public/Dashboard/IReloadableWidget.php',  | 
                                                        |
| 350 | + 'OCP\\Dashboard\\IWidget' => __DIR__.'/../../..'.'/lib/public/Dashboard/IWidget.php',  | 
                                                        |
| 351 | + 'OCP\\Dashboard\\Model\\WidgetButton' => __DIR__.'/../../..'.'/lib/public/Dashboard/Model/WidgetButton.php',  | 
                                                        |
| 352 | + 'OCP\\Dashboard\\Model\\WidgetItem' => __DIR__.'/../../..'.'/lib/public/Dashboard/Model/WidgetItem.php',  | 
                                                        |
| 353 | + 'OCP\\Dashboard\\Model\\WidgetItems' => __DIR__.'/../../..'.'/lib/public/Dashboard/Model/WidgetItems.php',  | 
                                                        |
| 354 | + 'OCP\\Dashboard\\Model\\WidgetOptions' => __DIR__.'/../../..'.'/lib/public/Dashboard/Model/WidgetOptions.php',  | 
                                                        |
| 355 | + 'OCP\\DataCollector\\AbstractDataCollector' => __DIR__.'/../../..'.'/lib/public/DataCollector/AbstractDataCollector.php',  | 
                                                        |
| 356 | + 'OCP\\DataCollector\\IDataCollector' => __DIR__.'/../../..'.'/lib/public/DataCollector/IDataCollector.php',  | 
                                                        |
| 357 | + 'OCP\\Defaults' => __DIR__.'/../../..'.'/lib/public/Defaults.php',  | 
                                                        |
| 358 | + 'OCP\\Diagnostics\\IEvent' => __DIR__.'/../../..'.'/lib/public/Diagnostics/IEvent.php',  | 
                                                        |
| 359 | + 'OCP\\Diagnostics\\IEventLogger' => __DIR__.'/../../..'.'/lib/public/Diagnostics/IEventLogger.php',  | 
                                                        |
| 360 | + 'OCP\\Diagnostics\\IQuery' => __DIR__.'/../../..'.'/lib/public/Diagnostics/IQuery.php',  | 
                                                        |
| 361 | + 'OCP\\Diagnostics\\IQueryLogger' => __DIR__.'/../../..'.'/lib/public/Diagnostics/IQueryLogger.php',  | 
                                                        |
| 362 | + 'OCP\\DirectEditing\\ACreateEmpty' => __DIR__.'/../../..'.'/lib/public/DirectEditing/ACreateEmpty.php',  | 
                                                        |
| 363 | + 'OCP\\DirectEditing\\ACreateFromTemplate' => __DIR__.'/../../..'.'/lib/public/DirectEditing/ACreateFromTemplate.php',  | 
                                                        |
| 364 | + 'OCP\\DirectEditing\\ATemplate' => __DIR__.'/../../..'.'/lib/public/DirectEditing/ATemplate.php',  | 
                                                        |
| 365 | + 'OCP\\DirectEditing\\IEditor' => __DIR__.'/../../..'.'/lib/public/DirectEditing/IEditor.php',  | 
                                                        |
| 366 | + 'OCP\\DirectEditing\\IManager' => __DIR__.'/../../..'.'/lib/public/DirectEditing/IManager.php',  | 
                                                        |
| 367 | + 'OCP\\DirectEditing\\IToken' => __DIR__.'/../../..'.'/lib/public/DirectEditing/IToken.php',  | 
                                                        |
| 368 | + 'OCP\\DirectEditing\\RegisterDirectEditorEvent' => __DIR__.'/../../..'.'/lib/public/DirectEditing/RegisterDirectEditorEvent.php',  | 
                                                        |
| 369 | + 'OCP\\Encryption\\Exceptions\\GenericEncryptionException' => __DIR__.'/../../..'.'/lib/public/Encryption/Exceptions/GenericEncryptionException.php',  | 
                                                        |
| 370 | + 'OCP\\Encryption\\IEncryptionModule' => __DIR__.'/../../..'.'/lib/public/Encryption/IEncryptionModule.php',  | 
                                                        |
| 371 | + 'OCP\\Encryption\\IFile' => __DIR__.'/../../..'.'/lib/public/Encryption/IFile.php',  | 
                                                        |
| 372 | + 'OCP\\Encryption\\IManager' => __DIR__.'/../../..'.'/lib/public/Encryption/IManager.php',  | 
                                                        |
| 373 | + 'OCP\\Encryption\\Keys\\IStorage' => __DIR__.'/../../..'.'/lib/public/Encryption/Keys/IStorage.php',  | 
                                                        |
| 374 | + 'OCP\\EventDispatcher\\ABroadcastedEvent' => __DIR__.'/../../..'.'/lib/public/EventDispatcher/ABroadcastedEvent.php',  | 
                                                        |
| 375 | + 'OCP\\EventDispatcher\\Event' => __DIR__.'/../../..'.'/lib/public/EventDispatcher/Event.php',  | 
                                                        |
| 376 | + 'OCP\\EventDispatcher\\GenericEvent' => __DIR__.'/../../..'.'/lib/public/EventDispatcher/GenericEvent.php',  | 
                                                        |
| 377 | + 'OCP\\EventDispatcher\\IEventDispatcher' => __DIR__.'/../../..'.'/lib/public/EventDispatcher/IEventDispatcher.php',  | 
                                                        |
| 378 | + 'OCP\\EventDispatcher\\IEventListener' => __DIR__.'/../../..'.'/lib/public/EventDispatcher/IEventListener.php',  | 
                                                        |
| 379 | + 'OCP\\EventDispatcher\\IWebhookCompatibleEvent' => __DIR__.'/../../..'.'/lib/public/EventDispatcher/IWebhookCompatibleEvent.php',  | 
                                                        |
| 380 | + 'OCP\\EventDispatcher\\JsonSerializer' => __DIR__.'/../../..'.'/lib/public/EventDispatcher/JsonSerializer.php',  | 
                                                        |
| 381 | + 'OCP\\Exceptions\\AbortedEventException' => __DIR__.'/../../..'.'/lib/public/Exceptions/AbortedEventException.php',  | 
                                                        |
| 382 | + 'OCP\\Exceptions\\AppConfigException' => __DIR__.'/../../..'.'/lib/public/Exceptions/AppConfigException.php',  | 
                                                        |
| 383 | + 'OCP\\Exceptions\\AppConfigIncorrectTypeException' => __DIR__.'/../../..'.'/lib/public/Exceptions/AppConfigIncorrectTypeException.php',  | 
                                                        |
| 384 | + 'OCP\\Exceptions\\AppConfigTypeConflictException' => __DIR__.'/../../..'.'/lib/public/Exceptions/AppConfigTypeConflictException.php',  | 
                                                        |
| 385 | + 'OCP\\Exceptions\\AppConfigUnknownKeyException' => __DIR__.'/../../..'.'/lib/public/Exceptions/AppConfigUnknownKeyException.php',  | 
                                                        |
| 386 | + 'OCP\\Federation\\Events\\TrustedServerRemovedEvent' => __DIR__.'/../../..'.'/lib/public/Federation/Events/TrustedServerRemovedEvent.php',  | 
                                                        |
| 387 | + 'OCP\\Federation\\Exceptions\\ActionNotSupportedException' => __DIR__.'/../../..'.'/lib/public/Federation/Exceptions/ActionNotSupportedException.php',  | 
                                                        |
| 388 | + 'OCP\\Federation\\Exceptions\\AuthenticationFailedException' => __DIR__.'/../../..'.'/lib/public/Federation/Exceptions/AuthenticationFailedException.php',  | 
                                                        |
| 389 | + 'OCP\\Federation\\Exceptions\\BadRequestException' => __DIR__.'/../../..'.'/lib/public/Federation/Exceptions/BadRequestException.php',  | 
                                                        |
| 390 | + 'OCP\\Federation\\Exceptions\\ProviderAlreadyExistsException' => __DIR__.'/../../..'.'/lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php',  | 
                                                        |
| 391 | + 'OCP\\Federation\\Exceptions\\ProviderCouldNotAddShareException' => __DIR__.'/../../..'.'/lib/public/Federation/Exceptions/ProviderCouldNotAddShareException.php',  | 
                                                        |
| 392 | + 'OCP\\Federation\\Exceptions\\ProviderDoesNotExistsException' => __DIR__.'/../../..'.'/lib/public/Federation/Exceptions/ProviderDoesNotExistsException.php',  | 
                                                        |
| 393 | + 'OCP\\Federation\\ICloudFederationFactory' => __DIR__.'/../../..'.'/lib/public/Federation/ICloudFederationFactory.php',  | 
                                                        |
| 394 | + 'OCP\\Federation\\ICloudFederationNotification' => __DIR__.'/../../..'.'/lib/public/Federation/ICloudFederationNotification.php',  | 
                                                        |
| 395 | + 'OCP\\Federation\\ICloudFederationProvider' => __DIR__.'/../../..'.'/lib/public/Federation/ICloudFederationProvider.php',  | 
                                                        |
| 396 | + 'OCP\\Federation\\ICloudFederationProviderManager' => __DIR__.'/../../..'.'/lib/public/Federation/ICloudFederationProviderManager.php',  | 
                                                        |
| 397 | + 'OCP\\Federation\\ICloudFederationShare' => __DIR__.'/../../..'.'/lib/public/Federation/ICloudFederationShare.php',  | 
                                                        |
| 398 | + 'OCP\\Federation\\ICloudId' => __DIR__.'/../../..'.'/lib/public/Federation/ICloudId.php',  | 
                                                        |
| 399 | + 'OCP\\Federation\\ICloudIdManager' => __DIR__.'/../../..'.'/lib/public/Federation/ICloudIdManager.php',  | 
                                                        |
| 400 | + 'OCP\\Files' => __DIR__.'/../../..'.'/lib/public/Files.php',  | 
                                                        |
| 401 | + 'OCP\\FilesMetadata\\AMetadataEvent' => __DIR__.'/../../..'.'/lib/public/FilesMetadata/AMetadataEvent.php',  | 
                                                        |
| 402 | + 'OCP\\FilesMetadata\\Event\\MetadataBackgroundEvent' => __DIR__.'/../../..'.'/lib/public/FilesMetadata/Event/MetadataBackgroundEvent.php',  | 
                                                        |
| 403 | + 'OCP\\FilesMetadata\\Event\\MetadataLiveEvent' => __DIR__.'/../../..'.'/lib/public/FilesMetadata/Event/MetadataLiveEvent.php',  | 
                                                        |
| 404 | + 'OCP\\FilesMetadata\\Event\\MetadataNamedEvent' => __DIR__.'/../../..'.'/lib/public/FilesMetadata/Event/MetadataNamedEvent.php',  | 
                                                        |
| 405 | + 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataException' => __DIR__.'/../../..'.'/lib/public/FilesMetadata/Exceptions/FilesMetadataException.php',  | 
                                                        |
| 406 | + 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataKeyFormatException' => __DIR__.'/../../..'.'/lib/public/FilesMetadata/Exceptions/FilesMetadataKeyFormatException.php',  | 
                                                        |
| 407 | + 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataNotFoundException' => __DIR__.'/../../..'.'/lib/public/FilesMetadata/Exceptions/FilesMetadataNotFoundException.php',  | 
                                                        |
| 408 | + 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataTypeException' => __DIR__.'/../../..'.'/lib/public/FilesMetadata/Exceptions/FilesMetadataTypeException.php',  | 
                                                        |
| 409 | + 'OCP\\FilesMetadata\\IFilesMetadataManager' => __DIR__.'/../../..'.'/lib/public/FilesMetadata/IFilesMetadataManager.php',  | 
                                                        |
| 410 | + 'OCP\\FilesMetadata\\IMetadataQuery' => __DIR__.'/../../..'.'/lib/public/FilesMetadata/IMetadataQuery.php',  | 
                                                        |
| 411 | + 'OCP\\FilesMetadata\\Model\\IFilesMetadata' => __DIR__.'/../../..'.'/lib/public/FilesMetadata/Model/IFilesMetadata.php',  | 
                                                        |
| 412 | + 'OCP\\FilesMetadata\\Model\\IMetadataValueWrapper' => __DIR__.'/../../..'.'/lib/public/FilesMetadata/Model/IMetadataValueWrapper.php',  | 
                                                        |
| 413 | + 'OCP\\Files\\AlreadyExistsException' => __DIR__.'/../../..'.'/lib/public/Files/AlreadyExistsException.php',  | 
                                                        |
| 414 | + 'OCP\\Files\\AppData\\IAppDataFactory' => __DIR__.'/../../..'.'/lib/public/Files/AppData/IAppDataFactory.php',  | 
                                                        |
| 415 | + 'OCP\\Files\\Cache\\AbstractCacheEvent' => __DIR__.'/../../..'.'/lib/public/Files/Cache/AbstractCacheEvent.php',  | 
                                                        |
| 416 | + 'OCP\\Files\\Cache\\CacheEntryInsertedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Cache/CacheEntryInsertedEvent.php',  | 
                                                        |
| 417 | + 'OCP\\Files\\Cache\\CacheEntryRemovedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Cache/CacheEntryRemovedEvent.php',  | 
                                                        |
| 418 | + 'OCP\\Files\\Cache\\CacheEntryUpdatedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Cache/CacheEntryUpdatedEvent.php',  | 
                                                        |
| 419 | + 'OCP\\Files\\Cache\\CacheInsertEvent' => __DIR__.'/../../..'.'/lib/public/Files/Cache/CacheInsertEvent.php',  | 
                                                        |
| 420 | + 'OCP\\Files\\Cache\\CacheUpdateEvent' => __DIR__.'/../../..'.'/lib/public/Files/Cache/CacheUpdateEvent.php',  | 
                                                        |
| 421 | + 'OCP\\Files\\Cache\\ICache' => __DIR__.'/../../..'.'/lib/public/Files/Cache/ICache.php',  | 
                                                        |
| 422 | + 'OCP\\Files\\Cache\\ICacheEntry' => __DIR__.'/../../..'.'/lib/public/Files/Cache/ICacheEntry.php',  | 
                                                        |
| 423 | + 'OCP\\Files\\Cache\\ICacheEvent' => __DIR__.'/../../..'.'/lib/public/Files/Cache/ICacheEvent.php',  | 
                                                        |
| 424 | + 'OCP\\Files\\Cache\\IFileAccess' => __DIR__.'/../../..'.'/lib/public/Files/Cache/IFileAccess.php',  | 
                                                        |
| 425 | + 'OCP\\Files\\Cache\\IPropagator' => __DIR__.'/../../..'.'/lib/public/Files/Cache/IPropagator.php',  | 
                                                        |
| 426 | + 'OCP\\Files\\Cache\\IScanner' => __DIR__.'/../../..'.'/lib/public/Files/Cache/IScanner.php',  | 
                                                        |
| 427 | + 'OCP\\Files\\Cache\\IUpdater' => __DIR__.'/../../..'.'/lib/public/Files/Cache/IUpdater.php',  | 
                                                        |
| 428 | + 'OCP\\Files\\Cache\\IWatcher' => __DIR__.'/../../..'.'/lib/public/Files/Cache/IWatcher.php',  | 
                                                        |
| 429 | + 'OCP\\Files\\Config\\ICachedMountFileInfo' => __DIR__.'/../../..'.'/lib/public/Files/Config/ICachedMountFileInfo.php',  | 
                                                        |
| 430 | + 'OCP\\Files\\Config\\ICachedMountInfo' => __DIR__.'/../../..'.'/lib/public/Files/Config/ICachedMountInfo.php',  | 
                                                        |
| 431 | + 'OCP\\Files\\Config\\IHomeMountProvider' => __DIR__.'/../../..'.'/lib/public/Files/Config/IHomeMountProvider.php',  | 
                                                        |
| 432 | + 'OCP\\Files\\Config\\IMountProvider' => __DIR__.'/../../..'.'/lib/public/Files/Config/IMountProvider.php',  | 
                                                        |
| 433 | + 'OCP\\Files\\Config\\IMountProviderCollection' => __DIR__.'/../../..'.'/lib/public/Files/Config/IMountProviderCollection.php',  | 
                                                        |
| 434 | + 'OCP\\Files\\Config\\IRootMountProvider' => __DIR__.'/../../..'.'/lib/public/Files/Config/IRootMountProvider.php',  | 
                                                        |
| 435 | + 'OCP\\Files\\Config\\IUserMountCache' => __DIR__.'/../../..'.'/lib/public/Files/Config/IUserMountCache.php',  | 
                                                        |
| 436 | + 'OCP\\Files\\ConnectionLostException' => __DIR__.'/../../..'.'/lib/public/Files/ConnectionLostException.php',  | 
                                                        |
| 437 | + 'OCP\\Files\\Conversion\\ConversionMimeProvider' => __DIR__.'/../../..'.'/lib/public/Files/Conversion/ConversionMimeProvider.php',  | 
                                                        |
| 438 | + 'OCP\\Files\\Conversion\\IConversionManager' => __DIR__.'/../../..'.'/lib/public/Files/Conversion/IConversionManager.php',  | 
                                                        |
| 439 | + 'OCP\\Files\\Conversion\\IConversionProvider' => __DIR__.'/../../..'.'/lib/public/Files/Conversion/IConversionProvider.php',  | 
                                                        |
| 440 | + 'OCP\\Files\\DavUtil' => __DIR__.'/../../..'.'/lib/public/Files/DavUtil.php',  | 
                                                        |
| 441 | + 'OCP\\Files\\EmptyFileNameException' => __DIR__.'/../../..'.'/lib/public/Files/EmptyFileNameException.php',  | 
                                                        |
| 442 | + 'OCP\\Files\\EntityTooLargeException' => __DIR__.'/../../..'.'/lib/public/Files/EntityTooLargeException.php',  | 
                                                        |
| 443 | + 'OCP\\Files\\Events\\BeforeDirectFileDownloadEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/BeforeDirectFileDownloadEvent.php',  | 
                                                        |
| 444 | + 'OCP\\Files\\Events\\BeforeFileScannedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/BeforeFileScannedEvent.php',  | 
                                                        |
| 445 | + 'OCP\\Files\\Events\\BeforeFileSystemSetupEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/BeforeFileSystemSetupEvent.php',  | 
                                                        |
| 446 | + 'OCP\\Files\\Events\\BeforeFolderScannedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/BeforeFolderScannedEvent.php',  | 
                                                        |
| 447 | + 'OCP\\Files\\Events\\BeforeZipCreatedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/BeforeZipCreatedEvent.php',  | 
                                                        |
| 448 | + 'OCP\\Files\\Events\\FileCacheUpdated' => __DIR__.'/../../..'.'/lib/public/Files/Events/FileCacheUpdated.php',  | 
                                                        |
| 449 | + 'OCP\\Files\\Events\\FileScannedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/FileScannedEvent.php',  | 
                                                        |
| 450 | + 'OCP\\Files\\Events\\FolderScannedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/FolderScannedEvent.php',  | 
                                                        |
| 451 | + 'OCP\\Files\\Events\\InvalidateMountCacheEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/InvalidateMountCacheEvent.php',  | 
                                                        |
| 452 | + 'OCP\\Files\\Events\\NodeAddedToCache' => __DIR__.'/../../..'.'/lib/public/Files/Events/NodeAddedToCache.php',  | 
                                                        |
| 453 | + 'OCP\\Files\\Events\\NodeAddedToFavorite' => __DIR__.'/../../..'.'/lib/public/Files/Events/NodeAddedToFavorite.php',  | 
                                                        |
| 454 | + 'OCP\\Files\\Events\\NodeRemovedFromCache' => __DIR__.'/../../..'.'/lib/public/Files/Events/NodeRemovedFromCache.php',  | 
                                                        |
| 455 | + 'OCP\\Files\\Events\\NodeRemovedFromFavorite' => __DIR__.'/../../..'.'/lib/public/Files/Events/NodeRemovedFromFavorite.php',  | 
                                                        |
| 456 | + 'OCP\\Files\\Events\\Node\\AbstractNodeEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/AbstractNodeEvent.php',  | 
                                                        |
| 457 | + 'OCP\\Files\\Events\\Node\\AbstractNodesEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/AbstractNodesEvent.php',  | 
                                                        |
| 458 | + 'OCP\\Files\\Events\\Node\\BeforeNodeCopiedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/BeforeNodeCopiedEvent.php',  | 
                                                        |
| 459 | + 'OCP\\Files\\Events\\Node\\BeforeNodeCreatedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/BeforeNodeCreatedEvent.php',  | 
                                                        |
| 460 | + 'OCP\\Files\\Events\\Node\\BeforeNodeDeletedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/BeforeNodeDeletedEvent.php',  | 
                                                        |
| 461 | + 'OCP\\Files\\Events\\Node\\BeforeNodeReadEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/BeforeNodeReadEvent.php',  | 
                                                        |
| 462 | + 'OCP\\Files\\Events\\Node\\BeforeNodeRenamedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/BeforeNodeRenamedEvent.php',  | 
                                                        |
| 463 | + 'OCP\\Files\\Events\\Node\\BeforeNodeTouchedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/BeforeNodeTouchedEvent.php',  | 
                                                        |
| 464 | + 'OCP\\Files\\Events\\Node\\BeforeNodeWrittenEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/BeforeNodeWrittenEvent.php',  | 
                                                        |
| 465 | + 'OCP\\Files\\Events\\Node\\FilesystemTornDownEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/FilesystemTornDownEvent.php',  | 
                                                        |
| 466 | + 'OCP\\Files\\Events\\Node\\NodeCopiedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/NodeCopiedEvent.php',  | 
                                                        |
| 467 | + 'OCP\\Files\\Events\\Node\\NodeCreatedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/NodeCreatedEvent.php',  | 
                                                        |
| 468 | + 'OCP\\Files\\Events\\Node\\NodeDeletedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/NodeDeletedEvent.php',  | 
                                                        |
| 469 | + 'OCP\\Files\\Events\\Node\\NodeRenamedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/NodeRenamedEvent.php',  | 
                                                        |
| 470 | + 'OCP\\Files\\Events\\Node\\NodeTouchedEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/NodeTouchedEvent.php',  | 
                                                        |
| 471 | + 'OCP\\Files\\Events\\Node\\NodeWrittenEvent' => __DIR__.'/../../..'.'/lib/public/Files/Events/Node/NodeWrittenEvent.php',  | 
                                                        |
| 472 | + 'OCP\\Files\\File' => __DIR__.'/../../..'.'/lib/public/Files/File.php',  | 
                                                        |
| 473 | + 'OCP\\Files\\FileInfo' => __DIR__.'/../../..'.'/lib/public/Files/FileInfo.php',  | 
                                                        |
| 474 | + 'OCP\\Files\\FileNameTooLongException' => __DIR__.'/../../..'.'/lib/public/Files/FileNameTooLongException.php',  | 
                                                        |
| 475 | + 'OCP\\Files\\Folder' => __DIR__.'/../../..'.'/lib/public/Files/Folder.php',  | 
                                                        |
| 476 | + 'OCP\\Files\\ForbiddenException' => __DIR__.'/../../..'.'/lib/public/Files/ForbiddenException.php',  | 
                                                        |
| 477 | + 'OCP\\Files\\GenericFileException' => __DIR__.'/../../..'.'/lib/public/Files/GenericFileException.php',  | 
                                                        |
| 478 | + 'OCP\\Files\\IAppData' => __DIR__.'/../../..'.'/lib/public/Files/IAppData.php',  | 
                                                        |
| 479 | + 'OCP\\Files\\IFilenameValidator' => __DIR__.'/../../..'.'/lib/public/Files/IFilenameValidator.php',  | 
                                                        |
| 480 | + 'OCP\\Files\\IHomeStorage' => __DIR__.'/../../..'.'/lib/public/Files/IHomeStorage.php',  | 
                                                        |
| 481 | + 'OCP\\Files\\IMimeTypeDetector' => __DIR__.'/../../..'.'/lib/public/Files/IMimeTypeDetector.php',  | 
                                                        |
| 482 | + 'OCP\\Files\\IMimeTypeLoader' => __DIR__.'/../../..'.'/lib/public/Files/IMimeTypeLoader.php',  | 
                                                        |
| 483 | + 'OCP\\Files\\IRootFolder' => __DIR__.'/../../..'.'/lib/public/Files/IRootFolder.php',  | 
                                                        |
| 484 | + 'OCP\\Files\\InvalidCharacterInPathException' => __DIR__.'/../../..'.'/lib/public/Files/InvalidCharacterInPathException.php',  | 
                                                        |
| 485 | + 'OCP\\Files\\InvalidContentException' => __DIR__.'/../../..'.'/lib/public/Files/InvalidContentException.php',  | 
                                                        |
| 486 | + 'OCP\\Files\\InvalidDirectoryException' => __DIR__.'/../../..'.'/lib/public/Files/InvalidDirectoryException.php',  | 
                                                        |
| 487 | + 'OCP\\Files\\InvalidPathException' => __DIR__.'/../../..'.'/lib/public/Files/InvalidPathException.php',  | 
                                                        |
| 488 | + 'OCP\\Files\\LockNotAcquiredException' => __DIR__.'/../../..'.'/lib/public/Files/LockNotAcquiredException.php',  | 
                                                        |
| 489 | + 'OCP\\Files\\Lock\\ILock' => __DIR__.'/../../..'.'/lib/public/Files/Lock/ILock.php',  | 
                                                        |
| 490 | + 'OCP\\Files\\Lock\\ILockManager' => __DIR__.'/../../..'.'/lib/public/Files/Lock/ILockManager.php',  | 
                                                        |
| 491 | + 'OCP\\Files\\Lock\\ILockProvider' => __DIR__.'/../../..'.'/lib/public/Files/Lock/ILockProvider.php',  | 
                                                        |
| 492 | + 'OCP\\Files\\Lock\\LockContext' => __DIR__.'/../../..'.'/lib/public/Files/Lock/LockContext.php',  | 
                                                        |
| 493 | + 'OCP\\Files\\Lock\\NoLockProviderException' => __DIR__.'/../../..'.'/lib/public/Files/Lock/NoLockProviderException.php',  | 
                                                        |
| 494 | + 'OCP\\Files\\Lock\\OwnerLockedException' => __DIR__.'/../../..'.'/lib/public/Files/Lock/OwnerLockedException.php',  | 
                                                        |
| 495 | + 'OCP\\Files\\Mount\\IMountManager' => __DIR__.'/../../..'.'/lib/public/Files/Mount/IMountManager.php',  | 
                                                        |
| 496 | + 'OCP\\Files\\Mount\\IMountPoint' => __DIR__.'/../../..'.'/lib/public/Files/Mount/IMountPoint.php',  | 
                                                        |
| 497 | + 'OCP\\Files\\Mount\\IMovableMount' => __DIR__.'/../../..'.'/lib/public/Files/Mount/IMovableMount.php',  | 
                                                        |
| 498 | + 'OCP\\Files\\Mount\\IShareOwnerlessMount' => __DIR__.'/../../..'.'/lib/public/Files/Mount/IShareOwnerlessMount.php',  | 
                                                        |
| 499 | + 'OCP\\Files\\Mount\\ISystemMountPoint' => __DIR__.'/../../..'.'/lib/public/Files/Mount/ISystemMountPoint.php',  | 
                                                        |
| 500 | + 'OCP\\Files\\Node' => __DIR__.'/../../..'.'/lib/public/Files/Node.php',  | 
                                                        |
| 501 | + 'OCP\\Files\\NotEnoughSpaceException' => __DIR__.'/../../..'.'/lib/public/Files/NotEnoughSpaceException.php',  | 
                                                        |
| 502 | + 'OCP\\Files\\NotFoundException' => __DIR__.'/../../..'.'/lib/public/Files/NotFoundException.php',  | 
                                                        |
| 503 | + 'OCP\\Files\\NotPermittedException' => __DIR__.'/../../..'.'/lib/public/Files/NotPermittedException.php',  | 
                                                        |
| 504 | + 'OCP\\Files\\Notify\\IChange' => __DIR__.'/../../..'.'/lib/public/Files/Notify/IChange.php',  | 
                                                        |
| 505 | + 'OCP\\Files\\Notify\\INotifyHandler' => __DIR__.'/../../..'.'/lib/public/Files/Notify/INotifyHandler.php',  | 
                                                        |
| 506 | + 'OCP\\Files\\Notify\\IRenameChange' => __DIR__.'/../../..'.'/lib/public/Files/Notify/IRenameChange.php',  | 
                                                        |
| 507 | + 'OCP\\Files\\ObjectStore\\IObjectStore' => __DIR__.'/../../..'.'/lib/public/Files/ObjectStore/IObjectStore.php',  | 
                                                        |
| 508 | + 'OCP\\Files\\ObjectStore\\IObjectStoreMetaData' => __DIR__.'/../../..'.'/lib/public/Files/ObjectStore/IObjectStoreMetaData.php',  | 
                                                        |
| 509 | + 'OCP\\Files\\ObjectStore\\IObjectStoreMultiPartUpload' => __DIR__.'/../../..'.'/lib/public/Files/ObjectStore/IObjectStoreMultiPartUpload.php',  | 
                                                        |
| 510 | + 'OCP\\Files\\ReservedWordException' => __DIR__.'/../../..'.'/lib/public/Files/ReservedWordException.php',  | 
                                                        |
| 511 | + 'OCP\\Files\\Search\\ISearchBinaryOperator' => __DIR__.'/../../..'.'/lib/public/Files/Search/ISearchBinaryOperator.php',  | 
                                                        |
| 512 | + 'OCP\\Files\\Search\\ISearchComparison' => __DIR__.'/../../..'.'/lib/public/Files/Search/ISearchComparison.php',  | 
                                                        |
| 513 | + 'OCP\\Files\\Search\\ISearchOperator' => __DIR__.'/../../..'.'/lib/public/Files/Search/ISearchOperator.php',  | 
                                                        |
| 514 | + 'OCP\\Files\\Search\\ISearchOrder' => __DIR__.'/../../..'.'/lib/public/Files/Search/ISearchOrder.php',  | 
                                                        |
| 515 | + 'OCP\\Files\\Search\\ISearchQuery' => __DIR__.'/../../..'.'/lib/public/Files/Search/ISearchQuery.php',  | 
                                                        |
| 516 | + 'OCP\\Files\\SimpleFS\\ISimpleFile' => __DIR__.'/../../..'.'/lib/public/Files/SimpleFS/ISimpleFile.php',  | 
                                                        |
| 517 | + 'OCP\\Files\\SimpleFS\\ISimpleFolder' => __DIR__.'/../../..'.'/lib/public/Files/SimpleFS/ISimpleFolder.php',  | 
                                                        |
| 518 | + 'OCP\\Files\\SimpleFS\\ISimpleRoot' => __DIR__.'/../../..'.'/lib/public/Files/SimpleFS/ISimpleRoot.php',  | 
                                                        |
| 519 | + 'OCP\\Files\\SimpleFS\\InMemoryFile' => __DIR__.'/../../..'.'/lib/public/Files/SimpleFS/InMemoryFile.php',  | 
                                                        |
| 520 | + 'OCP\\Files\\StorageAuthException' => __DIR__.'/../../..'.'/lib/public/Files/StorageAuthException.php',  | 
                                                        |
| 521 | + 'OCP\\Files\\StorageBadConfigException' => __DIR__.'/../../..'.'/lib/public/Files/StorageBadConfigException.php',  | 
                                                        |
| 522 | + 'OCP\\Files\\StorageConnectionException' => __DIR__.'/../../..'.'/lib/public/Files/StorageConnectionException.php',  | 
                                                        |
| 523 | + 'OCP\\Files\\StorageInvalidException' => __DIR__.'/../../..'.'/lib/public/Files/StorageInvalidException.php',  | 
                                                        |
| 524 | + 'OCP\\Files\\StorageNotAvailableException' => __DIR__.'/../../..'.'/lib/public/Files/StorageNotAvailableException.php',  | 
                                                        |
| 525 | + 'OCP\\Files\\StorageTimeoutException' => __DIR__.'/../../..'.'/lib/public/Files/StorageTimeoutException.php',  | 
                                                        |
| 526 | + 'OCP\\Files\\Storage\\IChunkedFileWrite' => __DIR__.'/../../..'.'/lib/public/Files/Storage/IChunkedFileWrite.php',  | 
                                                        |
| 527 | + 'OCP\\Files\\Storage\\IConstructableStorage' => __DIR__.'/../../..'.'/lib/public/Files/Storage/IConstructableStorage.php',  | 
                                                        |
| 528 | + 'OCP\\Files\\Storage\\IDisableEncryptionStorage' => __DIR__.'/../../..'.'/lib/public/Files/Storage/IDisableEncryptionStorage.php',  | 
                                                        |
| 529 | + 'OCP\\Files\\Storage\\ILockingStorage' => __DIR__.'/../../..'.'/lib/public/Files/Storage/ILockingStorage.php',  | 
                                                        |
| 530 | + 'OCP\\Files\\Storage\\INotifyStorage' => __DIR__.'/../../..'.'/lib/public/Files/Storage/INotifyStorage.php',  | 
                                                        |
| 531 | + 'OCP\\Files\\Storage\\IReliableEtagStorage' => __DIR__.'/../../..'.'/lib/public/Files/Storage/IReliableEtagStorage.php',  | 
                                                        |
| 532 | + 'OCP\\Files\\Storage\\ISharedStorage' => __DIR__.'/../../..'.'/lib/public/Files/Storage/ISharedStorage.php',  | 
                                                        |
| 533 | + 'OCP\\Files\\Storage\\IStorage' => __DIR__.'/../../..'.'/lib/public/Files/Storage/IStorage.php',  | 
                                                        |
| 534 | + 'OCP\\Files\\Storage\\IStorageFactory' => __DIR__.'/../../..'.'/lib/public/Files/Storage/IStorageFactory.php',  | 
                                                        |
| 535 | + 'OCP\\Files\\Storage\\IWriteStreamStorage' => __DIR__.'/../../..'.'/lib/public/Files/Storage/IWriteStreamStorage.php',  | 
                                                        |
| 536 | + 'OCP\\Files\\Template\\BeforeGetTemplatesEvent' => __DIR__.'/../../..'.'/lib/public/Files/Template/BeforeGetTemplatesEvent.php',  | 
                                                        |
| 537 | + 'OCP\\Files\\Template\\Field' => __DIR__.'/../../..'.'/lib/public/Files/Template/Field.php',  | 
                                                        |
| 538 | + 'OCP\\Files\\Template\\FieldFactory' => __DIR__.'/../../..'.'/lib/public/Files/Template/FieldFactory.php',  | 
                                                        |
| 539 | + 'OCP\\Files\\Template\\FieldType' => __DIR__.'/../../..'.'/lib/public/Files/Template/FieldType.php',  | 
                                                        |
| 540 | + 'OCP\\Files\\Template\\Fields\\CheckBoxField' => __DIR__.'/../../..'.'/lib/public/Files/Template/Fields/CheckBoxField.php',  | 
                                                        |
| 541 | + 'OCP\\Files\\Template\\Fields\\RichTextField' => __DIR__.'/../../..'.'/lib/public/Files/Template/Fields/RichTextField.php',  | 
                                                        |
| 542 | + 'OCP\\Files\\Template\\FileCreatedFromTemplateEvent' => __DIR__.'/../../..'.'/lib/public/Files/Template/FileCreatedFromTemplateEvent.php',  | 
                                                        |
| 543 | + 'OCP\\Files\\Template\\ICustomTemplateProvider' => __DIR__.'/../../..'.'/lib/public/Files/Template/ICustomTemplateProvider.php',  | 
                                                        |
| 544 | + 'OCP\\Files\\Template\\ITemplateManager' => __DIR__.'/../../..'.'/lib/public/Files/Template/ITemplateManager.php',  | 
                                                        |
| 545 | + 'OCP\\Files\\Template\\InvalidFieldTypeException' => __DIR__.'/../../..'.'/lib/public/Files/Template/InvalidFieldTypeException.php',  | 
                                                        |
| 546 | + 'OCP\\Files\\Template\\RegisterTemplateCreatorEvent' => __DIR__.'/../../..'.'/lib/public/Files/Template/RegisterTemplateCreatorEvent.php',  | 
                                                        |
| 547 | + 'OCP\\Files\\Template\\Template' => __DIR__.'/../../..'.'/lib/public/Files/Template/Template.php',  | 
                                                        |
| 548 | + 'OCP\\Files\\Template\\TemplateFileCreator' => __DIR__.'/../../..'.'/lib/public/Files/Template/TemplateFileCreator.php',  | 
                                                        |
| 549 | + 'OCP\\Files\\UnseekableException' => __DIR__.'/../../..'.'/lib/public/Files/UnseekableException.php',  | 
                                                        |
| 550 | + 'OCP\\Files_FullTextSearch\\Model\\AFilesDocument' => __DIR__.'/../../..'.'/lib/public/Files_FullTextSearch/Model/AFilesDocument.php',  | 
                                                        |
| 551 | + 'OCP\\FullTextSearch\\Exceptions\\FullTextSearchAppNotAvailableException' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Exceptions/FullTextSearchAppNotAvailableException.php',  | 
                                                        |
| 552 | + 'OCP\\FullTextSearch\\Exceptions\\FullTextSearchIndexNotAvailableException' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Exceptions/FullTextSearchIndexNotAvailableException.php',  | 
                                                        |
| 553 | + 'OCP\\FullTextSearch\\IFullTextSearchManager' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/IFullTextSearchManager.php',  | 
                                                        |
| 554 | + 'OCP\\FullTextSearch\\IFullTextSearchPlatform' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/IFullTextSearchPlatform.php',  | 
                                                        |
| 555 | + 'OCP\\FullTextSearch\\IFullTextSearchProvider' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/IFullTextSearchProvider.php',  | 
                                                        |
| 556 | + 'OCP\\FullTextSearch\\Model\\IDocumentAccess' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Model/IDocumentAccess.php',  | 
                                                        |
| 557 | + 'OCP\\FullTextSearch\\Model\\IIndex' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Model/IIndex.php',  | 
                                                        |
| 558 | + 'OCP\\FullTextSearch\\Model\\IIndexDocument' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Model/IIndexDocument.php',  | 
                                                        |
| 559 | + 'OCP\\FullTextSearch\\Model\\IIndexOptions' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Model/IIndexOptions.php',  | 
                                                        |
| 560 | + 'OCP\\FullTextSearch\\Model\\IRunner' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Model/IRunner.php',  | 
                                                        |
| 561 | + 'OCP\\FullTextSearch\\Model\\ISearchOption' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Model/ISearchOption.php',  | 
                                                        |
| 562 | + 'OCP\\FullTextSearch\\Model\\ISearchRequest' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Model/ISearchRequest.php',  | 
                                                        |
| 563 | + 'OCP\\FullTextSearch\\Model\\ISearchRequestSimpleQuery' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Model/ISearchRequestSimpleQuery.php',  | 
                                                        |
| 564 | + 'OCP\\FullTextSearch\\Model\\ISearchResult' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Model/ISearchResult.php',  | 
                                                        |
| 565 | + 'OCP\\FullTextSearch\\Model\\ISearchTemplate' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Model/ISearchTemplate.php',  | 
                                                        |
| 566 | + 'OCP\\FullTextSearch\\Service\\IIndexService' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Service/IIndexService.php',  | 
                                                        |
| 567 | + 'OCP\\FullTextSearch\\Service\\IProviderService' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Service/IProviderService.php',  | 
                                                        |
| 568 | + 'OCP\\FullTextSearch\\Service\\ISearchService' => __DIR__.'/../../..'.'/lib/public/FullTextSearch/Service/ISearchService.php',  | 
                                                        |
| 569 | + 'OCP\\GlobalScale\\IConfig' => __DIR__.'/../../..'.'/lib/public/GlobalScale/IConfig.php',  | 
                                                        |
| 570 | + 'OCP\\GroupInterface' => __DIR__.'/../../..'.'/lib/public/GroupInterface.php',  | 
                                                        |
| 571 | + 'OCP\\Group\\Backend\\ABackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/ABackend.php',  | 
                                                        |
| 572 | + 'OCP\\Group\\Backend\\IAddToGroupBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/IAddToGroupBackend.php',  | 
                                                        |
| 573 | + 'OCP\\Group\\Backend\\IBatchMethodsBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/IBatchMethodsBackend.php',  | 
                                                        |
| 574 | + 'OCP\\Group\\Backend\\ICountDisabledInGroup' => __DIR__.'/../../..'.'/lib/public/Group/Backend/ICountDisabledInGroup.php',  | 
                                                        |
| 575 | + 'OCP\\Group\\Backend\\ICountUsersBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/ICountUsersBackend.php',  | 
                                                        |
| 576 | + 'OCP\\Group\\Backend\\ICreateGroupBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/ICreateGroupBackend.php',  | 
                                                        |
| 577 | + 'OCP\\Group\\Backend\\ICreateNamedGroupBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/ICreateNamedGroupBackend.php',  | 
                                                        |
| 578 | + 'OCP\\Group\\Backend\\IDeleteGroupBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/IDeleteGroupBackend.php',  | 
                                                        |
| 579 | + 'OCP\\Group\\Backend\\IGetDisplayNameBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/IGetDisplayNameBackend.php',  | 
                                                        |
| 580 | + 'OCP\\Group\\Backend\\IGroupDetailsBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/IGroupDetailsBackend.php',  | 
                                                        |
| 581 | + 'OCP\\Group\\Backend\\IHideFromCollaborationBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/IHideFromCollaborationBackend.php',  | 
                                                        |
| 582 | + 'OCP\\Group\\Backend\\IIsAdminBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/IIsAdminBackend.php',  | 
                                                        |
| 583 | + 'OCP\\Group\\Backend\\INamedBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/INamedBackend.php',  | 
                                                        |
| 584 | + 'OCP\\Group\\Backend\\IRemoveFromGroupBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/IRemoveFromGroupBackend.php',  | 
                                                        |
| 585 | + 'OCP\\Group\\Backend\\ISearchableGroupBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/ISearchableGroupBackend.php',  | 
                                                        |
| 586 | + 'OCP\\Group\\Backend\\ISetDisplayNameBackend' => __DIR__.'/../../..'.'/lib/public/Group/Backend/ISetDisplayNameBackend.php',  | 
                                                        |
| 587 | + 'OCP\\Group\\Events\\BeforeGroupChangedEvent' => __DIR__.'/../../..'.'/lib/public/Group/Events/BeforeGroupChangedEvent.php',  | 
                                                        |
| 588 | + 'OCP\\Group\\Events\\BeforeGroupCreatedEvent' => __DIR__.'/../../..'.'/lib/public/Group/Events/BeforeGroupCreatedEvent.php',  | 
                                                        |
| 589 | + 'OCP\\Group\\Events\\BeforeGroupDeletedEvent' => __DIR__.'/../../..'.'/lib/public/Group/Events/BeforeGroupDeletedEvent.php',  | 
                                                        |
| 590 | + 'OCP\\Group\\Events\\BeforeUserAddedEvent' => __DIR__.'/../../..'.'/lib/public/Group/Events/BeforeUserAddedEvent.php',  | 
                                                        |
| 591 | + 'OCP\\Group\\Events\\BeforeUserRemovedEvent' => __DIR__.'/../../..'.'/lib/public/Group/Events/BeforeUserRemovedEvent.php',  | 
                                                        |
| 592 | + 'OCP\\Group\\Events\\GroupChangedEvent' => __DIR__.'/../../..'.'/lib/public/Group/Events/GroupChangedEvent.php',  | 
                                                        |
| 593 | + 'OCP\\Group\\Events\\GroupCreatedEvent' => __DIR__.'/../../..'.'/lib/public/Group/Events/GroupCreatedEvent.php',  | 
                                                        |
| 594 | + 'OCP\\Group\\Events\\GroupDeletedEvent' => __DIR__.'/../../..'.'/lib/public/Group/Events/GroupDeletedEvent.php',  | 
                                                        |
| 595 | + 'OCP\\Group\\Events\\SubAdminAddedEvent' => __DIR__.'/../../..'.'/lib/public/Group/Events/SubAdminAddedEvent.php',  | 
                                                        |
| 596 | + 'OCP\\Group\\Events\\SubAdminRemovedEvent' => __DIR__.'/../../..'.'/lib/public/Group/Events/SubAdminRemovedEvent.php',  | 
                                                        |
| 597 | + 'OCP\\Group\\Events\\UserAddedEvent' => __DIR__.'/../../..'.'/lib/public/Group/Events/UserAddedEvent.php',  | 
                                                        |
| 598 | + 'OCP\\Group\\Events\\UserRemovedEvent' => __DIR__.'/../../..'.'/lib/public/Group/Events/UserRemovedEvent.php',  | 
                                                        |
| 599 | + 'OCP\\Group\\ISubAdmin' => __DIR__.'/../../..'.'/lib/public/Group/ISubAdmin.php',  | 
                                                        |
| 600 | + 'OCP\\HintException' => __DIR__.'/../../..'.'/lib/public/HintException.php',  | 
                                                        |
| 601 | + 'OCP\\Http\\Client\\IClient' => __DIR__.'/../../..'.'/lib/public/Http/Client/IClient.php',  | 
                                                        |
| 602 | + 'OCP\\Http\\Client\\IClientService' => __DIR__.'/../../..'.'/lib/public/Http/Client/IClientService.php',  | 
                                                        |
| 603 | + 'OCP\\Http\\Client\\IPromise' => __DIR__.'/../../..'.'/lib/public/Http/Client/IPromise.php',  | 
                                                        |
| 604 | + 'OCP\\Http\\Client\\IResponse' => __DIR__.'/../../..'.'/lib/public/Http/Client/IResponse.php',  | 
                                                        |
| 605 | + 'OCP\\Http\\Client\\LocalServerException' => __DIR__.'/../../..'.'/lib/public/Http/Client/LocalServerException.php',  | 
                                                        |
| 606 | + 'OCP\\Http\\WellKnown\\GenericResponse' => __DIR__.'/../../..'.'/lib/public/Http/WellKnown/GenericResponse.php',  | 
                                                        |
| 607 | + 'OCP\\Http\\WellKnown\\IHandler' => __DIR__.'/../../..'.'/lib/public/Http/WellKnown/IHandler.php',  | 
                                                        |
| 608 | + 'OCP\\Http\\WellKnown\\IRequestContext' => __DIR__.'/../../..'.'/lib/public/Http/WellKnown/IRequestContext.php',  | 
                                                        |
| 609 | + 'OCP\\Http\\WellKnown\\IResponse' => __DIR__.'/../../..'.'/lib/public/Http/WellKnown/IResponse.php',  | 
                                                        |
| 610 | + 'OCP\\Http\\WellKnown\\JrdResponse' => __DIR__.'/../../..'.'/lib/public/Http/WellKnown/JrdResponse.php',  | 
                                                        |
| 611 | + 'OCP\\IAddressBook' => __DIR__.'/../../..'.'/lib/public/IAddressBook.php',  | 
                                                        |
| 612 | + 'OCP\\IAddressBookEnabled' => __DIR__.'/../../..'.'/lib/public/IAddressBookEnabled.php',  | 
                                                        |
| 613 | + 'OCP\\IAppConfig' => __DIR__.'/../../..'.'/lib/public/IAppConfig.php',  | 
                                                        |
| 614 | + 'OCP\\IAvatar' => __DIR__.'/../../..'.'/lib/public/IAvatar.php',  | 
                                                        |
| 615 | + 'OCP\\IAvatarManager' => __DIR__.'/../../..'.'/lib/public/IAvatarManager.php',  | 
                                                        |
| 616 | + 'OCP\\IBinaryFinder' => __DIR__.'/../../..'.'/lib/public/IBinaryFinder.php',  | 
                                                        |
| 617 | + 'OCP\\ICache' => __DIR__.'/../../..'.'/lib/public/ICache.php',  | 
                                                        |
| 618 | + 'OCP\\ICacheFactory' => __DIR__.'/../../..'.'/lib/public/ICacheFactory.php',  | 
                                                        |
| 619 | + 'OCP\\ICertificate' => __DIR__.'/../../..'.'/lib/public/ICertificate.php',  | 
                                                        |
| 620 | + 'OCP\\ICertificateManager' => __DIR__.'/../../..'.'/lib/public/ICertificateManager.php',  | 
                                                        |
| 621 | + 'OCP\\IConfig' => __DIR__.'/../../..'.'/lib/public/IConfig.php',  | 
                                                        |
| 622 | + 'OCP\\IContainer' => __DIR__.'/../../..'.'/lib/public/IContainer.php',  | 
                                                        |
| 623 | + 'OCP\\IDBConnection' => __DIR__.'/../../..'.'/lib/public/IDBConnection.php',  | 
                                                        |
| 624 | + 'OCP\\IDateTimeFormatter' => __DIR__.'/../../..'.'/lib/public/IDateTimeFormatter.php',  | 
                                                        |
| 625 | + 'OCP\\IDateTimeZone' => __DIR__.'/../../..'.'/lib/public/IDateTimeZone.php',  | 
                                                        |
| 626 | + 'OCP\\IEmojiHelper' => __DIR__.'/../../..'.'/lib/public/IEmojiHelper.php',  | 
                                                        |
| 627 | + 'OCP\\IEventSource' => __DIR__.'/../../..'.'/lib/public/IEventSource.php',  | 
                                                        |
| 628 | + 'OCP\\IEventSourceFactory' => __DIR__.'/../../..'.'/lib/public/IEventSourceFactory.php',  | 
                                                        |
| 629 | + 'OCP\\IGroup' => __DIR__.'/../../..'.'/lib/public/IGroup.php',  | 
                                                        |
| 630 | + 'OCP\\IGroupManager' => __DIR__.'/../../..'.'/lib/public/IGroupManager.php',  | 
                                                        |
| 631 | + 'OCP\\IImage' => __DIR__.'/../../..'.'/lib/public/IImage.php',  | 
                                                        |
| 632 | + 'OCP\\IInitialStateService' => __DIR__.'/../../..'.'/lib/public/IInitialStateService.php',  | 
                                                        |
| 633 | + 'OCP\\IL10N' => __DIR__.'/../../..'.'/lib/public/IL10N.php',  | 
                                                        |
| 634 | + 'OCP\\ILogger' => __DIR__.'/../../..'.'/lib/public/ILogger.php',  | 
                                                        |
| 635 | + 'OCP\\IMemcache' => __DIR__.'/../../..'.'/lib/public/IMemcache.php',  | 
                                                        |
| 636 | + 'OCP\\IMemcacheTTL' => __DIR__.'/../../..'.'/lib/public/IMemcacheTTL.php',  | 
                                                        |
| 637 | + 'OCP\\INavigationManager' => __DIR__.'/../../..'.'/lib/public/INavigationManager.php',  | 
                                                        |
| 638 | + 'OCP\\IPhoneNumberUtil' => __DIR__.'/../../..'.'/lib/public/IPhoneNumberUtil.php',  | 
                                                        |
| 639 | + 'OCP\\IPreview' => __DIR__.'/../../..'.'/lib/public/IPreview.php',  | 
                                                        |
| 640 | + 'OCP\\IRequest' => __DIR__.'/../../..'.'/lib/public/IRequest.php',  | 
                                                        |
| 641 | + 'OCP\\IRequestId' => __DIR__.'/../../..'.'/lib/public/IRequestId.php',  | 
                                                        |
| 642 | + 'OCP\\IServerContainer' => __DIR__.'/../../..'.'/lib/public/IServerContainer.php',  | 
                                                        |
| 643 | + 'OCP\\ISession' => __DIR__.'/../../..'.'/lib/public/ISession.php',  | 
                                                        |
| 644 | + 'OCP\\IStreamImage' => __DIR__.'/../../..'.'/lib/public/IStreamImage.php',  | 
                                                        |
| 645 | + 'OCP\\ITagManager' => __DIR__.'/../../..'.'/lib/public/ITagManager.php',  | 
                                                        |
| 646 | + 'OCP\\ITags' => __DIR__.'/../../..'.'/lib/public/ITags.php',  | 
                                                        |
| 647 | + 'OCP\\ITempManager' => __DIR__.'/../../..'.'/lib/public/ITempManager.php',  | 
                                                        |
| 648 | + 'OCP\\IURLGenerator' => __DIR__.'/../../..'.'/lib/public/IURLGenerator.php',  | 
                                                        |
| 649 | + 'OCP\\IUser' => __DIR__.'/../../..'.'/lib/public/IUser.php',  | 
                                                        |
| 650 | + 'OCP\\IUserBackend' => __DIR__.'/../../..'.'/lib/public/IUserBackend.php',  | 
                                                        |
| 651 | + 'OCP\\IUserManager' => __DIR__.'/../../..'.'/lib/public/IUserManager.php',  | 
                                                        |
| 652 | + 'OCP\\IUserSession' => __DIR__.'/../../..'.'/lib/public/IUserSession.php',  | 
                                                        |
| 653 | + 'OCP\\Image' => __DIR__.'/../../..'.'/lib/public/Image.php',  | 
                                                        |
| 654 | + 'OCP\\L10N\\IFactory' => __DIR__.'/../../..'.'/lib/public/L10N/IFactory.php',  | 
                                                        |
| 655 | + 'OCP\\L10N\\ILanguageIterator' => __DIR__.'/../../..'.'/lib/public/L10N/ILanguageIterator.php',  | 
                                                        |
| 656 | + 'OCP\\LDAP\\IDeletionFlagSupport' => __DIR__.'/../../..'.'/lib/public/LDAP/IDeletionFlagSupport.php',  | 
                                                        |
| 657 | + 'OCP\\LDAP\\ILDAPProvider' => __DIR__.'/../../..'.'/lib/public/LDAP/ILDAPProvider.php',  | 
                                                        |
| 658 | + 'OCP\\LDAP\\ILDAPProviderFactory' => __DIR__.'/../../..'.'/lib/public/LDAP/ILDAPProviderFactory.php',  | 
                                                        |
| 659 | + 'OCP\\Lock\\ILockingProvider' => __DIR__.'/../../..'.'/lib/public/Lock/ILockingProvider.php',  | 
                                                        |
| 660 | + 'OCP\\Lock\\LockedException' => __DIR__.'/../../..'.'/lib/public/Lock/LockedException.php',  | 
                                                        |
| 661 | + 'OCP\\Lock\\ManuallyLockedException' => __DIR__.'/../../..'.'/lib/public/Lock/ManuallyLockedException.php',  | 
                                                        |
| 662 | + 'OCP\\Lockdown\\ILockdownManager' => __DIR__.'/../../..'.'/lib/public/Lockdown/ILockdownManager.php',  | 
                                                        |
| 663 | + 'OCP\\Log\\Audit\\CriticalActionPerformedEvent' => __DIR__.'/../../..'.'/lib/public/Log/Audit/CriticalActionPerformedEvent.php',  | 
                                                        |
| 664 | + 'OCP\\Log\\BeforeMessageLoggedEvent' => __DIR__.'/../../..'.'/lib/public/Log/BeforeMessageLoggedEvent.php',  | 
                                                        |
| 665 | + 'OCP\\Log\\IDataLogger' => __DIR__.'/../../..'.'/lib/public/Log/IDataLogger.php',  | 
                                                        |
| 666 | + 'OCP\\Log\\IFileBased' => __DIR__.'/../../..'.'/lib/public/Log/IFileBased.php',  | 
                                                        |
| 667 | + 'OCP\\Log\\ILogFactory' => __DIR__.'/../../..'.'/lib/public/Log/ILogFactory.php',  | 
                                                        |
| 668 | + 'OCP\\Log\\IWriter' => __DIR__.'/../../..'.'/lib/public/Log/IWriter.php',  | 
                                                        |
| 669 | + 'OCP\\Log\\RotationTrait' => __DIR__.'/../../..'.'/lib/public/Log/RotationTrait.php',  | 
                                                        |
| 670 | + 'OCP\\Mail\\Events\\BeforeMessageSent' => __DIR__.'/../../..'.'/lib/public/Mail/Events/BeforeMessageSent.php',  | 
                                                        |
| 671 | + 'OCP\\Mail\\Headers\\AutoSubmitted' => __DIR__.'/../../..'.'/lib/public/Mail/Headers/AutoSubmitted.php',  | 
                                                        |
| 672 | + 'OCP\\Mail\\IAttachment' => __DIR__.'/../../..'.'/lib/public/Mail/IAttachment.php',  | 
                                                        |
| 673 | + 'OCP\\Mail\\IEMailTemplate' => __DIR__.'/../../..'.'/lib/public/Mail/IEMailTemplate.php',  | 
                                                        |
| 674 | + 'OCP\\Mail\\IMailer' => __DIR__.'/../../..'.'/lib/public/Mail/IMailer.php',  | 
                                                        |
| 675 | + 'OCP\\Mail\\IMessage' => __DIR__.'/../../..'.'/lib/public/Mail/IMessage.php',  | 
                                                        |
| 676 | + 'OCP\\Mail\\Provider\\Address' => __DIR__.'/../../..'.'/lib/public/Mail/Provider/Address.php',  | 
                                                        |
| 677 | + 'OCP\\Mail\\Provider\\Attachment' => __DIR__.'/../../..'.'/lib/public/Mail/Provider/Attachment.php',  | 
                                                        |
| 678 | + 'OCP\\Mail\\Provider\\Exception\\Exception' => __DIR__.'/../../..'.'/lib/public/Mail/Provider/Exception/Exception.php',  | 
                                                        |
| 679 | + 'OCP\\Mail\\Provider\\Exception\\SendException' => __DIR__.'/../../..'.'/lib/public/Mail/Provider/Exception/SendException.php',  | 
                                                        |
| 680 | + 'OCP\\Mail\\Provider\\IAddress' => __DIR__.'/../../..'.'/lib/public/Mail/Provider/IAddress.php',  | 
                                                        |
| 681 | + 'OCP\\Mail\\Provider\\IAttachment' => __DIR__.'/../../..'.'/lib/public/Mail/Provider/IAttachment.php',  | 
                                                        |
| 682 | + 'OCP\\Mail\\Provider\\IManager' => __DIR__.'/../../..'.'/lib/public/Mail/Provider/IManager.php',  | 
                                                        |
| 683 | + 'OCP\\Mail\\Provider\\IMessage' => __DIR__.'/../../..'.'/lib/public/Mail/Provider/IMessage.php',  | 
                                                        |
| 684 | + 'OCP\\Mail\\Provider\\IMessageSend' => __DIR__.'/../../..'.'/lib/public/Mail/Provider/IMessageSend.php',  | 
                                                        |
| 685 | + 'OCP\\Mail\\Provider\\IProvider' => __DIR__.'/../../..'.'/lib/public/Mail/Provider/IProvider.php',  | 
                                                        |
| 686 | + 'OCP\\Mail\\Provider\\IService' => __DIR__.'/../../..'.'/lib/public/Mail/Provider/IService.php',  | 
                                                        |
| 687 | + 'OCP\\Mail\\Provider\\Message' => __DIR__.'/../../..'.'/lib/public/Mail/Provider/Message.php',  | 
                                                        |
| 688 | + 'OCP\\Migration\\Attributes\\AddColumn' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/AddColumn.php',  | 
                                                        |
| 689 | + 'OCP\\Migration\\Attributes\\AddIndex' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/AddIndex.php',  | 
                                                        |
| 690 | + 'OCP\\Migration\\Attributes\\ColumnMigrationAttribute' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/ColumnMigrationAttribute.php',  | 
                                                        |
| 691 | + 'OCP\\Migration\\Attributes\\ColumnType' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/ColumnType.php',  | 
                                                        |
| 692 | + 'OCP\\Migration\\Attributes\\CreateTable' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/CreateTable.php',  | 
                                                        |
| 693 | + 'OCP\\Migration\\Attributes\\DropColumn' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/DropColumn.php',  | 
                                                        |
| 694 | + 'OCP\\Migration\\Attributes\\DropIndex' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/DropIndex.php',  | 
                                                        |
| 695 | + 'OCP\\Migration\\Attributes\\DropTable' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/DropTable.php',  | 
                                                        |
| 696 | + 'OCP\\Migration\\Attributes\\GenericMigrationAttribute' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/GenericMigrationAttribute.php',  | 
                                                        |
| 697 | + 'OCP\\Migration\\Attributes\\IndexMigrationAttribute' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/IndexMigrationAttribute.php',  | 
                                                        |
| 698 | + 'OCP\\Migration\\Attributes\\IndexType' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/IndexType.php',  | 
                                                        |
| 699 | + 'OCP\\Migration\\Attributes\\MigrationAttribute' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/MigrationAttribute.php',  | 
                                                        |
| 700 | + 'OCP\\Migration\\Attributes\\ModifyColumn' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/ModifyColumn.php',  | 
                                                        |
| 701 | + 'OCP\\Migration\\Attributes\\TableMigrationAttribute' => __DIR__.'/../../..'.'/lib/public/Migration/Attributes/TableMigrationAttribute.php',  | 
                                                        |
| 702 | + 'OCP\\Migration\\BigIntMigration' => __DIR__.'/../../..'.'/lib/public/Migration/BigIntMigration.php',  | 
                                                        |
| 703 | + 'OCP\\Migration\\IMigrationStep' => __DIR__.'/../../..'.'/lib/public/Migration/IMigrationStep.php',  | 
                                                        |
| 704 | + 'OCP\\Migration\\IOutput' => __DIR__.'/../../..'.'/lib/public/Migration/IOutput.php',  | 
                                                        |
| 705 | + 'OCP\\Migration\\IRepairStep' => __DIR__.'/../../..'.'/lib/public/Migration/IRepairStep.php',  | 
                                                        |
| 706 | + 'OCP\\Migration\\SimpleMigrationStep' => __DIR__.'/../../..'.'/lib/public/Migration/SimpleMigrationStep.php',  | 
                                                        |
| 707 | + 'OCP\\Navigation\\Events\\LoadAdditionalEntriesEvent' => __DIR__.'/../../..'.'/lib/public/Navigation/Events/LoadAdditionalEntriesEvent.php',  | 
                                                        |
| 708 | + 'OCP\\Notification\\AlreadyProcessedException' => __DIR__.'/../../..'.'/lib/public/Notification/AlreadyProcessedException.php',  | 
                                                        |
| 709 | + 'OCP\\Notification\\IAction' => __DIR__.'/../../..'.'/lib/public/Notification/IAction.php',  | 
                                                        |
| 710 | + 'OCP\\Notification\\IApp' => __DIR__.'/../../..'.'/lib/public/Notification/IApp.php',  | 
                                                        |
| 711 | + 'OCP\\Notification\\IDeferrableApp' => __DIR__.'/../../..'.'/lib/public/Notification/IDeferrableApp.php',  | 
                                                        |
| 712 | + 'OCP\\Notification\\IDismissableNotifier' => __DIR__.'/../../..'.'/lib/public/Notification/IDismissableNotifier.php',  | 
                                                        |
| 713 | + 'OCP\\Notification\\IManager' => __DIR__.'/../../..'.'/lib/public/Notification/IManager.php',  | 
                                                        |
| 714 | + 'OCP\\Notification\\INotification' => __DIR__.'/../../..'.'/lib/public/Notification/INotification.php',  | 
                                                        |
| 715 | + 'OCP\\Notification\\INotifier' => __DIR__.'/../../..'.'/lib/public/Notification/INotifier.php',  | 
                                                        |
| 716 | + 'OCP\\Notification\\IncompleteNotificationException' => __DIR__.'/../../..'.'/lib/public/Notification/IncompleteNotificationException.php',  | 
                                                        |
| 717 | + 'OCP\\Notification\\IncompleteParsedNotificationException' => __DIR__.'/../../..'.'/lib/public/Notification/IncompleteParsedNotificationException.php',  | 
                                                        |
| 718 | + 'OCP\\Notification\\InvalidValueException' => __DIR__.'/../../..'.'/lib/public/Notification/InvalidValueException.php',  | 
                                                        |
| 719 | + 'OCP\\Notification\\UnknownNotificationException' => __DIR__.'/../../..'.'/lib/public/Notification/UnknownNotificationException.php',  | 
                                                        |
| 720 | + 'OCP\\OCM\\Events\\ResourceTypeRegisterEvent' => __DIR__.'/../../..'.'/lib/public/OCM/Events/ResourceTypeRegisterEvent.php',  | 
                                                        |
| 721 | + 'OCP\\OCM\\Exceptions\\OCMArgumentException' => __DIR__.'/../../..'.'/lib/public/OCM/Exceptions/OCMArgumentException.php',  | 
                                                        |
| 722 | + 'OCP\\OCM\\Exceptions\\OCMProviderException' => __DIR__.'/../../..'.'/lib/public/OCM/Exceptions/OCMProviderException.php',  | 
                                                        |
| 723 | + 'OCP\\OCM\\IOCMDiscoveryService' => __DIR__.'/../../..'.'/lib/public/OCM/IOCMDiscoveryService.php',  | 
                                                        |
| 724 | + 'OCP\\OCM\\IOCMProvider' => __DIR__.'/../../..'.'/lib/public/OCM/IOCMProvider.php',  | 
                                                        |
| 725 | + 'OCP\\OCM\\IOCMResource' => __DIR__.'/../../..'.'/lib/public/OCM/IOCMResource.php',  | 
                                                        |
| 726 | + 'OCP\\OCS\\IDiscoveryService' => __DIR__.'/../../..'.'/lib/public/OCS/IDiscoveryService.php',  | 
                                                        |
| 727 | + 'OCP\\PreConditionNotMetException' => __DIR__.'/../../..'.'/lib/public/PreConditionNotMetException.php',  | 
                                                        |
| 728 | + 'OCP\\Preview\\BeforePreviewFetchedEvent' => __DIR__.'/../../..'.'/lib/public/Preview/BeforePreviewFetchedEvent.php',  | 
                                                        |
| 729 | + 'OCP\\Preview\\IMimeIconProvider' => __DIR__.'/../../..'.'/lib/public/Preview/IMimeIconProvider.php',  | 
                                                        |
| 730 | + 'OCP\\Preview\\IProvider' => __DIR__.'/../../..'.'/lib/public/Preview/IProvider.php',  | 
                                                        |
| 731 | + 'OCP\\Preview\\IProviderV2' => __DIR__.'/../../..'.'/lib/public/Preview/IProviderV2.php',  | 
                                                        |
| 732 | + 'OCP\\Preview\\IVersionedPreviewFile' => __DIR__.'/../../..'.'/lib/public/Preview/IVersionedPreviewFile.php',  | 
                                                        |
| 733 | + 'OCP\\Profile\\BeforeTemplateRenderedEvent' => __DIR__.'/../../..'.'/lib/public/Profile/BeforeTemplateRenderedEvent.php',  | 
                                                        |
| 734 | + 'OCP\\Profile\\ILinkAction' => __DIR__.'/../../..'.'/lib/public/Profile/ILinkAction.php',  | 
                                                        |
| 735 | + 'OCP\\Profile\\IProfileManager' => __DIR__.'/../../..'.'/lib/public/Profile/IProfileManager.php',  | 
                                                        |
| 736 | + 'OCP\\Profile\\ParameterDoesNotExistException' => __DIR__.'/../../..'.'/lib/public/Profile/ParameterDoesNotExistException.php',  | 
                                                        |
| 737 | + 'OCP\\Profiler\\IProfile' => __DIR__.'/../../..'.'/lib/public/Profiler/IProfile.php',  | 
                                                        |
| 738 | + 'OCP\\Profiler\\IProfiler' => __DIR__.'/../../..'.'/lib/public/Profiler/IProfiler.php',  | 
                                                        |
| 739 | + 'OCP\\Remote\\Api\\IApiCollection' => __DIR__.'/../../..'.'/lib/public/Remote/Api/IApiCollection.php',  | 
                                                        |
| 740 | + 'OCP\\Remote\\Api\\IApiFactory' => __DIR__.'/../../..'.'/lib/public/Remote/Api/IApiFactory.php',  | 
                                                        |
| 741 | + 'OCP\\Remote\\Api\\ICapabilitiesApi' => __DIR__.'/../../..'.'/lib/public/Remote/Api/ICapabilitiesApi.php',  | 
                                                        |
| 742 | + 'OCP\\Remote\\Api\\IUserApi' => __DIR__.'/../../..'.'/lib/public/Remote/Api/IUserApi.php',  | 
                                                        |
| 743 | + 'OCP\\Remote\\ICredentials' => __DIR__.'/../../..'.'/lib/public/Remote/ICredentials.php',  | 
                                                        |
| 744 | + 'OCP\\Remote\\IInstance' => __DIR__.'/../../..'.'/lib/public/Remote/IInstance.php',  | 
                                                        |
| 745 | + 'OCP\\Remote\\IInstanceFactory' => __DIR__.'/../../..'.'/lib/public/Remote/IInstanceFactory.php',  | 
                                                        |
| 746 | + 'OCP\\Remote\\IUser' => __DIR__.'/../../..'.'/lib/public/Remote/IUser.php',  | 
                                                        |
| 747 | + 'OCP\\RichObjectStrings\\Definitions' => __DIR__.'/../../..'.'/lib/public/RichObjectStrings/Definitions.php',  | 
                                                        |
| 748 | + 'OCP\\RichObjectStrings\\IRichTextFormatter' => __DIR__.'/../../..'.'/lib/public/RichObjectStrings/IRichTextFormatter.php',  | 
                                                        |
| 749 | + 'OCP\\RichObjectStrings\\IValidator' => __DIR__.'/../../..'.'/lib/public/RichObjectStrings/IValidator.php',  | 
                                                        |
| 750 | + 'OCP\\RichObjectStrings\\InvalidObjectExeption' => __DIR__.'/../../..'.'/lib/public/RichObjectStrings/InvalidObjectExeption.php',  | 
                                                        |
| 751 | + 'OCP\\Route\\IRoute' => __DIR__.'/../../..'.'/lib/public/Route/IRoute.php',  | 
                                                        |
| 752 | + 'OCP\\Route\\IRouter' => __DIR__.'/../../..'.'/lib/public/Route/IRouter.php',  | 
                                                        |
| 753 | + 'OCP\\SabrePluginEvent' => __DIR__.'/../../..'.'/lib/public/SabrePluginEvent.php',  | 
                                                        |
| 754 | + 'OCP\\SabrePluginException' => __DIR__.'/../../..'.'/lib/public/SabrePluginException.php',  | 
                                                        |
| 755 | + 'OCP\\Search\\FilterDefinition' => __DIR__.'/../../..'.'/lib/public/Search/FilterDefinition.php',  | 
                                                        |
| 756 | + 'OCP\\Search\\IFilter' => __DIR__.'/../../..'.'/lib/public/Search/IFilter.php',  | 
                                                        |
| 757 | + 'OCP\\Search\\IFilterCollection' => __DIR__.'/../../..'.'/lib/public/Search/IFilterCollection.php',  | 
                                                        |
| 758 | + 'OCP\\Search\\IFilteringProvider' => __DIR__.'/../../..'.'/lib/public/Search/IFilteringProvider.php',  | 
                                                        |
| 759 | + 'OCP\\Search\\IInAppSearch' => __DIR__.'/../../..'.'/lib/public/Search/IInAppSearch.php',  | 
                                                        |
| 760 | + 'OCP\\Search\\IProvider' => __DIR__.'/../../..'.'/lib/public/Search/IProvider.php',  | 
                                                        |
| 761 | + 'OCP\\Search\\ISearchQuery' => __DIR__.'/../../..'.'/lib/public/Search/ISearchQuery.php',  | 
                                                        |
| 762 | + 'OCP\\Search\\PagedProvider' => __DIR__.'/../../..'.'/lib/public/Search/PagedProvider.php',  | 
                                                        |
| 763 | + 'OCP\\Search\\Provider' => __DIR__.'/../../..'.'/lib/public/Search/Provider.php',  | 
                                                        |
| 764 | + 'OCP\\Search\\Result' => __DIR__.'/../../..'.'/lib/public/Search/Result.php',  | 
                                                        |
| 765 | + 'OCP\\Search\\SearchResult' => __DIR__.'/../../..'.'/lib/public/Search/SearchResult.php',  | 
                                                        |
| 766 | + 'OCP\\Search\\SearchResultEntry' => __DIR__.'/../../..'.'/lib/public/Search/SearchResultEntry.php',  | 
                                                        |
| 767 | + 'OCP\\Security\\Bruteforce\\IThrottler' => __DIR__.'/../../..'.'/lib/public/Security/Bruteforce/IThrottler.php',  | 
                                                        |
| 768 | + 'OCP\\Security\\Bruteforce\\MaxDelayReached' => __DIR__.'/../../..'.'/lib/public/Security/Bruteforce/MaxDelayReached.php',  | 
                                                        |
| 769 | + 'OCP\\Security\\CSP\\AddContentSecurityPolicyEvent' => __DIR__.'/../../..'.'/lib/public/Security/CSP/AddContentSecurityPolicyEvent.php',  | 
                                                        |
| 770 | + 'OCP\\Security\\Events\\GenerateSecurePasswordEvent' => __DIR__.'/../../..'.'/lib/public/Security/Events/GenerateSecurePasswordEvent.php',  | 
                                                        |
| 771 | + 'OCP\\Security\\Events\\ValidatePasswordPolicyEvent' => __DIR__.'/../../..'.'/lib/public/Security/Events/ValidatePasswordPolicyEvent.php',  | 
                                                        |
| 772 | + 'OCP\\Security\\FeaturePolicy\\AddFeaturePolicyEvent' => __DIR__.'/../../..'.'/lib/public/Security/FeaturePolicy/AddFeaturePolicyEvent.php',  | 
                                                        |
| 773 | + 'OCP\\Security\\IContentSecurityPolicyManager' => __DIR__.'/../../..'.'/lib/public/Security/IContentSecurityPolicyManager.php',  | 
                                                        |
| 774 | + 'OCP\\Security\\ICredentialsManager' => __DIR__.'/../../..'.'/lib/public/Security/ICredentialsManager.php',  | 
                                                        |
| 775 | + 'OCP\\Security\\ICrypto' => __DIR__.'/../../..'.'/lib/public/Security/ICrypto.php',  | 
                                                        |
| 776 | + 'OCP\\Security\\IHasher' => __DIR__.'/../../..'.'/lib/public/Security/IHasher.php',  | 
                                                        |
| 777 | + 'OCP\\Security\\IRemoteHostValidator' => __DIR__.'/../../..'.'/lib/public/Security/IRemoteHostValidator.php',  | 
                                                        |
| 778 | + 'OCP\\Security\\ISecureRandom' => __DIR__.'/../../..'.'/lib/public/Security/ISecureRandom.php',  | 
                                                        |
| 779 | + 'OCP\\Security\\ITrustedDomainHelper' => __DIR__.'/../../..'.'/lib/public/Security/ITrustedDomainHelper.php',  | 
                                                        |
| 780 | + 'OCP\\Security\\Ip\\IAddress' => __DIR__.'/../../..'.'/lib/public/Security/Ip/IAddress.php',  | 
                                                        |
| 781 | + 'OCP\\Security\\Ip\\IFactory' => __DIR__.'/../../..'.'/lib/public/Security/Ip/IFactory.php',  | 
                                                        |
| 782 | + 'OCP\\Security\\Ip\\IRange' => __DIR__.'/../../..'.'/lib/public/Security/Ip/IRange.php',  | 
                                                        |
| 783 | + 'OCP\\Security\\Ip\\IRemoteAddress' => __DIR__.'/../../..'.'/lib/public/Security/Ip/IRemoteAddress.php',  | 
                                                        |
| 784 | + 'OCP\\Security\\PasswordContext' => __DIR__.'/../../..'.'/lib/public/Security/PasswordContext.php',  | 
                                                        |
| 785 | + 'OCP\\Security\\RateLimiting\\ILimiter' => __DIR__.'/../../..'.'/lib/public/Security/RateLimiting/ILimiter.php',  | 
                                                        |
| 786 | + 'OCP\\Security\\RateLimiting\\IRateLimitExceededException' => __DIR__.'/../../..'.'/lib/public/Security/RateLimiting/IRateLimitExceededException.php',  | 
                                                        |
| 787 | + 'OCP\\Security\\VerificationToken\\IVerificationToken' => __DIR__.'/../../..'.'/lib/public/Security/VerificationToken/IVerificationToken.php',  | 
                                                        |
| 788 | + 'OCP\\Security\\VerificationToken\\InvalidTokenException' => __DIR__.'/../../..'.'/lib/public/Security/VerificationToken/InvalidTokenException.php',  | 
                                                        |
| 789 | + 'OCP\\Server' => __DIR__.'/../../..'.'/lib/public/Server.php',  | 
                                                        |
| 790 | + 'OCP\\ServerVersion' => __DIR__.'/../../..'.'/lib/public/ServerVersion.php',  | 
                                                        |
| 791 | + 'OCP\\Session\\Exceptions\\SessionNotAvailableException' => __DIR__.'/../../..'.'/lib/public/Session/Exceptions/SessionNotAvailableException.php',  | 
                                                        |
| 792 | + 'OCP\\Settings\\DeclarativeSettingsTypes' => __DIR__.'/../../..'.'/lib/public/Settings/DeclarativeSettingsTypes.php',  | 
                                                        |
| 793 | + 'OCP\\Settings\\Events\\DeclarativeSettingsGetValueEvent' => __DIR__.'/../../..'.'/lib/public/Settings/Events/DeclarativeSettingsGetValueEvent.php',  | 
                                                        |
| 794 | + 'OCP\\Settings\\Events\\DeclarativeSettingsRegisterFormEvent' => __DIR__.'/../../..'.'/lib/public/Settings/Events/DeclarativeSettingsRegisterFormEvent.php',  | 
                                                        |
| 795 | + 'OCP\\Settings\\Events\\DeclarativeSettingsSetValueEvent' => __DIR__.'/../../..'.'/lib/public/Settings/Events/DeclarativeSettingsSetValueEvent.php',  | 
                                                        |
| 796 | + 'OCP\\Settings\\IDeclarativeManager' => __DIR__.'/../../..'.'/lib/public/Settings/IDeclarativeManager.php',  | 
                                                        |
| 797 | + 'OCP\\Settings\\IDeclarativeSettingsForm' => __DIR__.'/../../..'.'/lib/public/Settings/IDeclarativeSettingsForm.php',  | 
                                                        |
| 798 | + 'OCP\\Settings\\IDeclarativeSettingsFormWithHandlers' => __DIR__.'/../../..'.'/lib/public/Settings/IDeclarativeSettingsFormWithHandlers.php',  | 
                                                        |
| 799 | + 'OCP\\Settings\\IDelegatedSettings' => __DIR__.'/../../..'.'/lib/public/Settings/IDelegatedSettings.php',  | 
                                                        |
| 800 | + 'OCP\\Settings\\IIconSection' => __DIR__.'/../../..'.'/lib/public/Settings/IIconSection.php',  | 
                                                        |
| 801 | + 'OCP\\Settings\\IManager' => __DIR__.'/../../..'.'/lib/public/Settings/IManager.php',  | 
                                                        |
| 802 | + 'OCP\\Settings\\ISettings' => __DIR__.'/../../..'.'/lib/public/Settings/ISettings.php',  | 
                                                        |
| 803 | + 'OCP\\Settings\\ISubAdminSettings' => __DIR__.'/../../..'.'/lib/public/Settings/ISubAdminSettings.php',  | 
                                                        |
| 804 | + 'OCP\\SetupCheck\\CheckServerResponseTrait' => __DIR__.'/../../..'.'/lib/public/SetupCheck/CheckServerResponseTrait.php',  | 
                                                        |
| 805 | + 'OCP\\SetupCheck\\ISetupCheck' => __DIR__.'/../../..'.'/lib/public/SetupCheck/ISetupCheck.php',  | 
                                                        |
| 806 | + 'OCP\\SetupCheck\\ISetupCheckManager' => __DIR__.'/../../..'.'/lib/public/SetupCheck/ISetupCheckManager.php',  | 
                                                        |
| 807 | + 'OCP\\SetupCheck\\SetupResult' => __DIR__.'/../../..'.'/lib/public/SetupCheck/SetupResult.php',  | 
                                                        |
| 808 | + 'OCP\\Share' => __DIR__.'/../../..'.'/lib/public/Share.php',  | 
                                                        |
| 809 | + 'OCP\\Share\\Events\\BeforeShareCreatedEvent' => __DIR__.'/../../..'.'/lib/public/Share/Events/BeforeShareCreatedEvent.php',  | 
                                                        |
| 810 | + 'OCP\\Share\\Events\\BeforeShareDeletedEvent' => __DIR__.'/../../..'.'/lib/public/Share/Events/BeforeShareDeletedEvent.php',  | 
                                                        |
| 811 | + 'OCP\\Share\\Events\\ShareAcceptedEvent' => __DIR__.'/../../..'.'/lib/public/Share/Events/ShareAcceptedEvent.php',  | 
                                                        |
| 812 | + 'OCP\\Share\\Events\\ShareCreatedEvent' => __DIR__.'/../../..'.'/lib/public/Share/Events/ShareCreatedEvent.php',  | 
                                                        |
| 813 | + 'OCP\\Share\\Events\\ShareDeletedEvent' => __DIR__.'/../../..'.'/lib/public/Share/Events/ShareDeletedEvent.php',  | 
                                                        |
| 814 | + 'OCP\\Share\\Events\\ShareDeletedFromSelfEvent' => __DIR__.'/../../..'.'/lib/public/Share/Events/ShareDeletedFromSelfEvent.php',  | 
                                                        |
| 815 | + 'OCP\\Share\\Events\\VerifyMountPointEvent' => __DIR__.'/../../..'.'/lib/public/Share/Events/VerifyMountPointEvent.php',  | 
                                                        |
| 816 | + 'OCP\\Share\\Exceptions\\AlreadySharedException' => __DIR__.'/../../..'.'/lib/public/Share/Exceptions/AlreadySharedException.php',  | 
                                                        |
| 817 | + 'OCP\\Share\\Exceptions\\GenericShareException' => __DIR__.'/../../..'.'/lib/public/Share/Exceptions/GenericShareException.php',  | 
                                                        |
| 818 | + 'OCP\\Share\\Exceptions\\IllegalIDChangeException' => __DIR__.'/../../..'.'/lib/public/Share/Exceptions/IllegalIDChangeException.php',  | 
                                                        |
| 819 | + 'OCP\\Share\\Exceptions\\ShareNotFound' => __DIR__.'/../../..'.'/lib/public/Share/Exceptions/ShareNotFound.php',  | 
                                                        |
| 820 | + 'OCP\\Share\\Exceptions\\ShareTokenException' => __DIR__.'/../../..'.'/lib/public/Share/Exceptions/ShareTokenException.php',  | 
                                                        |
| 821 | + 'OCP\\Share\\IAttributes' => __DIR__.'/../../..'.'/lib/public/Share/IAttributes.php',  | 
                                                        |
| 822 | + 'OCP\\Share\\IManager' => __DIR__.'/../../..'.'/lib/public/Share/IManager.php',  | 
                                                        |
| 823 | + 'OCP\\Share\\IProviderFactory' => __DIR__.'/../../..'.'/lib/public/Share/IProviderFactory.php',  | 
                                                        |
| 824 | + 'OCP\\Share\\IPublicShareTemplateFactory' => __DIR__.'/../../..'.'/lib/public/Share/IPublicShareTemplateFactory.php',  | 
                                                        |
| 825 | + 'OCP\\Share\\IPublicShareTemplateProvider' => __DIR__.'/../../..'.'/lib/public/Share/IPublicShareTemplateProvider.php',  | 
                                                        |
| 826 | + 'OCP\\Share\\IShare' => __DIR__.'/../../..'.'/lib/public/Share/IShare.php',  | 
                                                        |
| 827 | + 'OCP\\Share\\IShareHelper' => __DIR__.'/../../..'.'/lib/public/Share/IShareHelper.php',  | 
                                                        |
| 828 | + 'OCP\\Share\\IShareProvider' => __DIR__.'/../../..'.'/lib/public/Share/IShareProvider.php',  | 
                                                        |
| 829 | + 'OCP\\Share\\IShareProviderSupportsAccept' => __DIR__.'/../../..'.'/lib/public/Share/IShareProviderSupportsAccept.php',  | 
                                                        |
| 830 | + 'OCP\\Share\\IShareProviderWithNotification' => __DIR__.'/../../..'.'/lib/public/Share/IShareProviderWithNotification.php',  | 
                                                        |
| 831 | + 'OCP\\Share_Backend' => __DIR__.'/../../..'.'/lib/public/Share_Backend.php',  | 
                                                        |
| 832 | + 'OCP\\Share_Backend_Collection' => __DIR__.'/../../..'.'/lib/public/Share_Backend_Collection.php',  | 
                                                        |
| 833 | + 'OCP\\Share_Backend_File_Dependent' => __DIR__.'/../../..'.'/lib/public/Share_Backend_File_Dependent.php',  | 
                                                        |
| 834 | + 'OCP\\SpeechToText\\Events\\AbstractTranscriptionEvent' => __DIR__.'/../../..'.'/lib/public/SpeechToText/Events/AbstractTranscriptionEvent.php',  | 
                                                        |
| 835 | + 'OCP\\SpeechToText\\Events\\TranscriptionFailedEvent' => __DIR__.'/../../..'.'/lib/public/SpeechToText/Events/TranscriptionFailedEvent.php',  | 
                                                        |
| 836 | + 'OCP\\SpeechToText\\Events\\TranscriptionSuccessfulEvent' => __DIR__.'/../../..'.'/lib/public/SpeechToText/Events/TranscriptionSuccessfulEvent.php',  | 
                                                        |
| 837 | + 'OCP\\SpeechToText\\ISpeechToTextManager' => __DIR__.'/../../..'.'/lib/public/SpeechToText/ISpeechToTextManager.php',  | 
                                                        |
| 838 | + 'OCP\\SpeechToText\\ISpeechToTextProvider' => __DIR__.'/../../..'.'/lib/public/SpeechToText/ISpeechToTextProvider.php',  | 
                                                        |
| 839 | + 'OCP\\SpeechToText\\ISpeechToTextProviderWithId' => __DIR__.'/../../..'.'/lib/public/SpeechToText/ISpeechToTextProviderWithId.php',  | 
                                                        |
| 840 | + 'OCP\\SpeechToText\\ISpeechToTextProviderWithUserId' => __DIR__.'/../../..'.'/lib/public/SpeechToText/ISpeechToTextProviderWithUserId.php',  | 
                                                        |
| 841 | + 'OCP\\Support\\CrashReport\\ICollectBreadcrumbs' => __DIR__.'/../../..'.'/lib/public/Support/CrashReport/ICollectBreadcrumbs.php',  | 
                                                        |
| 842 | + 'OCP\\Support\\CrashReport\\IMessageReporter' => __DIR__.'/../../..'.'/lib/public/Support/CrashReport/IMessageReporter.php',  | 
                                                        |
| 843 | + 'OCP\\Support\\CrashReport\\IRegistry' => __DIR__.'/../../..'.'/lib/public/Support/CrashReport/IRegistry.php',  | 
                                                        |
| 844 | + 'OCP\\Support\\CrashReport\\IReporter' => __DIR__.'/../../..'.'/lib/public/Support/CrashReport/IReporter.php',  | 
                                                        |
| 845 | + 'OCP\\Support\\Subscription\\Exception\\AlreadyRegisteredException' => __DIR__.'/../../..'.'/lib/public/Support/Subscription/Exception/AlreadyRegisteredException.php',  | 
                                                        |
| 846 | + 'OCP\\Support\\Subscription\\IAssertion' => __DIR__.'/../../..'.'/lib/public/Support/Subscription/IAssertion.php',  | 
                                                        |
| 847 | + 'OCP\\Support\\Subscription\\IRegistry' => __DIR__.'/../../..'.'/lib/public/Support/Subscription/IRegistry.php',  | 
                                                        |
| 848 | + 'OCP\\Support\\Subscription\\ISubscription' => __DIR__.'/../../..'.'/lib/public/Support/Subscription/ISubscription.php',  | 
                                                        |
| 849 | + 'OCP\\Support\\Subscription\\ISupportedApps' => __DIR__.'/../../..'.'/lib/public/Support/Subscription/ISupportedApps.php',  | 
                                                        |
| 850 | + 'OCP\\SystemTag\\ISystemTag' => __DIR__.'/../../..'.'/lib/public/SystemTag/ISystemTag.php',  | 
                                                        |
| 851 | + 'OCP\\SystemTag\\ISystemTagManager' => __DIR__.'/../../..'.'/lib/public/SystemTag/ISystemTagManager.php',  | 
                                                        |
| 852 | + 'OCP\\SystemTag\\ISystemTagManagerFactory' => __DIR__.'/../../..'.'/lib/public/SystemTag/ISystemTagManagerFactory.php',  | 
                                                        |
| 853 | + 'OCP\\SystemTag\\ISystemTagObjectMapper' => __DIR__.'/../../..'.'/lib/public/SystemTag/ISystemTagObjectMapper.php',  | 
                                                        |
| 854 | + 'OCP\\SystemTag\\ManagerEvent' => __DIR__.'/../../..'.'/lib/public/SystemTag/ManagerEvent.php',  | 
                                                        |
| 855 | + 'OCP\\SystemTag\\MapperEvent' => __DIR__.'/../../..'.'/lib/public/SystemTag/MapperEvent.php',  | 
                                                        |
| 856 | + 'OCP\\SystemTag\\SystemTagsEntityEvent' => __DIR__.'/../../..'.'/lib/public/SystemTag/SystemTagsEntityEvent.php',  | 
                                                        |
| 857 | + 'OCP\\SystemTag\\TagAlreadyExistsException' => __DIR__.'/../../..'.'/lib/public/SystemTag/TagAlreadyExistsException.php',  | 
                                                        |
| 858 | + 'OCP\\SystemTag\\TagCreationForbiddenException' => __DIR__.'/../../..'.'/lib/public/SystemTag/TagCreationForbiddenException.php',  | 
                                                        |
| 859 | + 'OCP\\SystemTag\\TagNotFoundException' => __DIR__.'/../../..'.'/lib/public/SystemTag/TagNotFoundException.php',  | 
                                                        |
| 860 | + 'OCP\\SystemTag\\TagUpdateForbiddenException' => __DIR__.'/../../..'.'/lib/public/SystemTag/TagUpdateForbiddenException.php',  | 
                                                        |
| 861 | + 'OCP\\Talk\\Exceptions\\NoBackendException' => __DIR__.'/../../..'.'/lib/public/Talk/Exceptions/NoBackendException.php',  | 
                                                        |
| 862 | + 'OCP\\Talk\\IBroker' => __DIR__.'/../../..'.'/lib/public/Talk/IBroker.php',  | 
                                                        |
| 863 | + 'OCP\\Talk\\IConversation' => __DIR__.'/../../..'.'/lib/public/Talk/IConversation.php',  | 
                                                        |
| 864 | + 'OCP\\Talk\\IConversationOptions' => __DIR__.'/../../..'.'/lib/public/Talk/IConversationOptions.php',  | 
                                                        |
| 865 | + 'OCP\\Talk\\ITalkBackend' => __DIR__.'/../../..'.'/lib/public/Talk/ITalkBackend.php',  | 
                                                        |
| 866 | + 'OCP\\TaskProcessing\\EShapeType' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/EShapeType.php',  | 
                                                        |
| 867 | + 'OCP\\TaskProcessing\\Events\\AbstractTaskProcessingEvent' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/Events/AbstractTaskProcessingEvent.php',  | 
                                                        |
| 868 | + 'OCP\\TaskProcessing\\Events\\TaskFailedEvent' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/Events/TaskFailedEvent.php',  | 
                                                        |
| 869 | + 'OCP\\TaskProcessing\\Events\\TaskSuccessfulEvent' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/Events/TaskSuccessfulEvent.php',  | 
                                                        |
| 870 | + 'OCP\\TaskProcessing\\Exception\\Exception' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/Exception/Exception.php',  | 
                                                        |
| 871 | + 'OCP\\TaskProcessing\\Exception\\NotFoundException' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/Exception/NotFoundException.php',  | 
                                                        |
| 872 | + 'OCP\\TaskProcessing\\Exception\\PreConditionNotMetException' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/Exception/PreConditionNotMetException.php',  | 
                                                        |
| 873 | + 'OCP\\TaskProcessing\\Exception\\ProcessingException' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/Exception/ProcessingException.php',  | 
                                                        |
| 874 | + 'OCP\\TaskProcessing\\Exception\\UnauthorizedException' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/Exception/UnauthorizedException.php',  | 
                                                        |
| 875 | + 'OCP\\TaskProcessing\\Exception\\ValidationException' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/Exception/ValidationException.php',  | 
                                                        |
| 876 | + 'OCP\\TaskProcessing\\IManager' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/IManager.php',  | 
                                                        |
| 877 | + 'OCP\\TaskProcessing\\IProvider' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/IProvider.php',  | 
                                                        |
| 878 | + 'OCP\\TaskProcessing\\ISynchronousProvider' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/ISynchronousProvider.php',  | 
                                                        |
| 879 | + 'OCP\\TaskProcessing\\ITaskType' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/ITaskType.php',  | 
                                                        |
| 880 | + 'OCP\\TaskProcessing\\ShapeDescriptor' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/ShapeDescriptor.php',  | 
                                                        |
| 881 | + 'OCP\\TaskProcessing\\ShapeEnumValue' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/ShapeEnumValue.php',  | 
                                                        |
| 882 | + 'OCP\\TaskProcessing\\Task' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/Task.php',  | 
                                                        |
| 883 | + 'OCP\\TaskProcessing\\TaskTypes\\AudioToText' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/AudioToText.php',  | 
                                                        |
| 884 | + 'OCP\\TaskProcessing\\TaskTypes\\ContextAgentInteraction' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/ContextAgentInteraction.php',  | 
                                                        |
| 885 | + 'OCP\\TaskProcessing\\TaskTypes\\ContextWrite' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/ContextWrite.php',  | 
                                                        |
| 886 | + 'OCP\\TaskProcessing\\TaskTypes\\GenerateEmoji' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/GenerateEmoji.php',  | 
                                                        |
| 887 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToImage' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToImage.php',  | 
                                                        |
| 888 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToText' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToText.php',  | 
                                                        |
| 889 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextChangeTone' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToTextChangeTone.php',  | 
                                                        |
| 890 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextChat' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToTextChat.php',  | 
                                                        |
| 891 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextChatWithTools' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToTextChatWithTools.php',  | 
                                                        |
| 892 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextFormalization' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToTextFormalization.php',  | 
                                                        |
| 893 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextHeadline' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToTextHeadline.php',  | 
                                                        |
| 894 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextProofread' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToTextProofread.php',  | 
                                                        |
| 895 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextReformulation' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToTextReformulation.php',  | 
                                                        |
| 896 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextSimplification' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToTextSimplification.php',  | 
                                                        |
| 897 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextSummary' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToTextSummary.php',  | 
                                                        |
| 898 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextTopics' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToTextTopics.php',  | 
                                                        |
| 899 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextTranslate' => __DIR__.'/../../..'.'/lib/public/TaskProcessing/TaskTypes/TextToTextTranslate.php',  | 
                                                        |
| 900 | + 'OCP\\Teams\\ITeamManager' => __DIR__.'/../../..'.'/lib/public/Teams/ITeamManager.php',  | 
                                                        |
| 901 | + 'OCP\\Teams\\ITeamResourceProvider' => __DIR__.'/../../..'.'/lib/public/Teams/ITeamResourceProvider.php',  | 
                                                        |
| 902 | + 'OCP\\Teams\\Team' => __DIR__.'/../../..'.'/lib/public/Teams/Team.php',  | 
                                                        |
| 903 | + 'OCP\\Teams\\TeamResource' => __DIR__.'/../../..'.'/lib/public/Teams/TeamResource.php',  | 
                                                        |
| 904 | + 'OCP\\Template' => __DIR__.'/../../..'.'/lib/public/Template.php',  | 
                                                        |
| 905 | + 'OCP\\Template\\ITemplate' => __DIR__.'/../../..'.'/lib/public/Template/ITemplate.php',  | 
                                                        |
| 906 | + 'OCP\\Template\\ITemplateManager' => __DIR__.'/../../..'.'/lib/public/Template/ITemplateManager.php',  | 
                                                        |
| 907 | + 'OCP\\Template\\TemplateNotFoundException' => __DIR__.'/../../..'.'/lib/public/Template/TemplateNotFoundException.php',  | 
                                                        |
| 908 | + 'OCP\\TextProcessing\\Events\\AbstractTextProcessingEvent' => __DIR__.'/../../..'.'/lib/public/TextProcessing/Events/AbstractTextProcessingEvent.php',  | 
                                                        |
| 909 | + 'OCP\\TextProcessing\\Events\\TaskFailedEvent' => __DIR__.'/../../..'.'/lib/public/TextProcessing/Events/TaskFailedEvent.php',  | 
                                                        |
| 910 | + 'OCP\\TextProcessing\\Events\\TaskSuccessfulEvent' => __DIR__.'/../../..'.'/lib/public/TextProcessing/Events/TaskSuccessfulEvent.php',  | 
                                                        |
| 911 | + 'OCP\\TextProcessing\\Exception\\TaskFailureException' => __DIR__.'/../../..'.'/lib/public/TextProcessing/Exception/TaskFailureException.php',  | 
                                                        |
| 912 | + 'OCP\\TextProcessing\\FreePromptTaskType' => __DIR__.'/../../..'.'/lib/public/TextProcessing/FreePromptTaskType.php',  | 
                                                        |
| 913 | + 'OCP\\TextProcessing\\HeadlineTaskType' => __DIR__.'/../../..'.'/lib/public/TextProcessing/HeadlineTaskType.php',  | 
                                                        |
| 914 | + 'OCP\\TextProcessing\\IManager' => __DIR__.'/../../..'.'/lib/public/TextProcessing/IManager.php',  | 
                                                        |
| 915 | + 'OCP\\TextProcessing\\IProvider' => __DIR__.'/../../..'.'/lib/public/TextProcessing/IProvider.php',  | 
                                                        |
| 916 | + 'OCP\\TextProcessing\\IProviderWithExpectedRuntime' => __DIR__.'/../../..'.'/lib/public/TextProcessing/IProviderWithExpectedRuntime.php',  | 
                                                        |
| 917 | + 'OCP\\TextProcessing\\IProviderWithId' => __DIR__.'/../../..'.'/lib/public/TextProcessing/IProviderWithId.php',  | 
                                                        |
| 918 | + 'OCP\\TextProcessing\\IProviderWithUserId' => __DIR__.'/../../..'.'/lib/public/TextProcessing/IProviderWithUserId.php',  | 
                                                        |
| 919 | + 'OCP\\TextProcessing\\ITaskType' => __DIR__.'/../../..'.'/lib/public/TextProcessing/ITaskType.php',  | 
                                                        |
| 920 | + 'OCP\\TextProcessing\\SummaryTaskType' => __DIR__.'/../../..'.'/lib/public/TextProcessing/SummaryTaskType.php',  | 
                                                        |
| 921 | + 'OCP\\TextProcessing\\Task' => __DIR__.'/../../..'.'/lib/public/TextProcessing/Task.php',  | 
                                                        |
| 922 | + 'OCP\\TextProcessing\\TopicsTaskType' => __DIR__.'/../../..'.'/lib/public/TextProcessing/TopicsTaskType.php',  | 
                                                        |
| 923 | + 'OCP\\TextToImage\\Events\\AbstractTextToImageEvent' => __DIR__.'/../../..'.'/lib/public/TextToImage/Events/AbstractTextToImageEvent.php',  | 
                                                        |
| 924 | + 'OCP\\TextToImage\\Events\\TaskFailedEvent' => __DIR__.'/../../..'.'/lib/public/TextToImage/Events/TaskFailedEvent.php',  | 
                                                        |
| 925 | + 'OCP\\TextToImage\\Events\\TaskSuccessfulEvent' => __DIR__.'/../../..'.'/lib/public/TextToImage/Events/TaskSuccessfulEvent.php',  | 
                                                        |
| 926 | + 'OCP\\TextToImage\\Exception\\TaskFailureException' => __DIR__.'/../../..'.'/lib/public/TextToImage/Exception/TaskFailureException.php',  | 
                                                        |
| 927 | + 'OCP\\TextToImage\\Exception\\TaskNotFoundException' => __DIR__.'/../../..'.'/lib/public/TextToImage/Exception/TaskNotFoundException.php',  | 
                                                        |
| 928 | + 'OCP\\TextToImage\\Exception\\TextToImageException' => __DIR__.'/../../..'.'/lib/public/TextToImage/Exception/TextToImageException.php',  | 
                                                        |
| 929 | + 'OCP\\TextToImage\\IManager' => __DIR__.'/../../..'.'/lib/public/TextToImage/IManager.php',  | 
                                                        |
| 930 | + 'OCP\\TextToImage\\IProvider' => __DIR__.'/../../..'.'/lib/public/TextToImage/IProvider.php',  | 
                                                        |
| 931 | + 'OCP\\TextToImage\\IProviderWithUserId' => __DIR__.'/../../..'.'/lib/public/TextToImage/IProviderWithUserId.php',  | 
                                                        |
| 932 | + 'OCP\\TextToImage\\Task' => __DIR__.'/../../..'.'/lib/public/TextToImage/Task.php',  | 
                                                        |
| 933 | + 'OCP\\Translation\\CouldNotTranslateException' => __DIR__.'/../../..'.'/lib/public/Translation/CouldNotTranslateException.php',  | 
                                                        |
| 934 | + 'OCP\\Translation\\IDetectLanguageProvider' => __DIR__.'/../../..'.'/lib/public/Translation/IDetectLanguageProvider.php',  | 
                                                        |
| 935 | + 'OCP\\Translation\\ITranslationManager' => __DIR__.'/../../..'.'/lib/public/Translation/ITranslationManager.php',  | 
                                                        |
| 936 | + 'OCP\\Translation\\ITranslationProvider' => __DIR__.'/../../..'.'/lib/public/Translation/ITranslationProvider.php',  | 
                                                        |
| 937 | + 'OCP\\Translation\\ITranslationProviderWithId' => __DIR__.'/../../..'.'/lib/public/Translation/ITranslationProviderWithId.php',  | 
                                                        |
| 938 | + 'OCP\\Translation\\ITranslationProviderWithUserId' => __DIR__.'/../../..'.'/lib/public/Translation/ITranslationProviderWithUserId.php',  | 
                                                        |
| 939 | + 'OCP\\Translation\\LanguageTuple' => __DIR__.'/../../..'.'/lib/public/Translation/LanguageTuple.php',  | 
                                                        |
| 940 | + 'OCP\\UserInterface' => __DIR__.'/../../..'.'/lib/public/UserInterface.php',  | 
                                                        |
| 941 | + 'OCP\\UserMigration\\IExportDestination' => __DIR__.'/../../..'.'/lib/public/UserMigration/IExportDestination.php',  | 
                                                        |
| 942 | + 'OCP\\UserMigration\\IImportSource' => __DIR__.'/../../..'.'/lib/public/UserMigration/IImportSource.php',  | 
                                                        |
| 943 | + 'OCP\\UserMigration\\IMigrator' => __DIR__.'/../../..'.'/lib/public/UserMigration/IMigrator.php',  | 
                                                        |
| 944 | + 'OCP\\UserMigration\\ISizeEstimationMigrator' => __DIR__.'/../../..'.'/lib/public/UserMigration/ISizeEstimationMigrator.php',  | 
                                                        |
| 945 | + 'OCP\\UserMigration\\TMigratorBasicVersionHandling' => __DIR__.'/../../..'.'/lib/public/UserMigration/TMigratorBasicVersionHandling.php',  | 
                                                        |
| 946 | + 'OCP\\UserMigration\\UserMigrationException' => __DIR__.'/../../..'.'/lib/public/UserMigration/UserMigrationException.php',  | 
                                                        |
| 947 | + 'OCP\\UserStatus\\IManager' => __DIR__.'/../../..'.'/lib/public/UserStatus/IManager.php',  | 
                                                        |
| 948 | + 'OCP\\UserStatus\\IProvider' => __DIR__.'/../../..'.'/lib/public/UserStatus/IProvider.php',  | 
                                                        |
| 949 | + 'OCP\\UserStatus\\IUserStatus' => __DIR__.'/../../..'.'/lib/public/UserStatus/IUserStatus.php',  | 
                                                        |
| 950 | + 'OCP\\User\\Backend\\ABackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/ABackend.php',  | 
                                                        |
| 951 | + 'OCP\\User\\Backend\\ICheckPasswordBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/ICheckPasswordBackend.php',  | 
                                                        |
| 952 | + 'OCP\\User\\Backend\\ICountMappedUsersBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/ICountMappedUsersBackend.php',  | 
                                                        |
| 953 | + 'OCP\\User\\Backend\\ICountUsersBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/ICountUsersBackend.php',  | 
                                                        |
| 954 | + 'OCP\\User\\Backend\\ICreateUserBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/ICreateUserBackend.php',  | 
                                                        |
| 955 | + 'OCP\\User\\Backend\\ICustomLogout' => __DIR__.'/../../..'.'/lib/public/User/Backend/ICustomLogout.php',  | 
                                                        |
| 956 | + 'OCP\\User\\Backend\\IGetDisplayNameBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/IGetDisplayNameBackend.php',  | 
                                                        |
| 957 | + 'OCP\\User\\Backend\\IGetHomeBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/IGetHomeBackend.php',  | 
                                                        |
| 958 | + 'OCP\\User\\Backend\\IGetRealUIDBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/IGetRealUIDBackend.php',  | 
                                                        |
| 959 | + 'OCP\\User\\Backend\\ILimitAwareCountUsersBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/ILimitAwareCountUsersBackend.php',  | 
                                                        |
| 960 | + 'OCP\\User\\Backend\\IPasswordConfirmationBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/IPasswordConfirmationBackend.php',  | 
                                                        |
| 961 | + 'OCP\\User\\Backend\\IPasswordHashBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/IPasswordHashBackend.php',  | 
                                                        |
| 962 | + 'OCP\\User\\Backend\\IProvideAvatarBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/IProvideAvatarBackend.php',  | 
                                                        |
| 963 | + 'OCP\\User\\Backend\\IProvideEnabledStateBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/IProvideEnabledStateBackend.php',  | 
                                                        |
| 964 | + 'OCP\\User\\Backend\\ISearchKnownUsersBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/ISearchKnownUsersBackend.php',  | 
                                                        |
| 965 | + 'OCP\\User\\Backend\\ISetDisplayNameBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/ISetDisplayNameBackend.php',  | 
                                                        |
| 966 | + 'OCP\\User\\Backend\\ISetPasswordBackend' => __DIR__.'/../../..'.'/lib/public/User/Backend/ISetPasswordBackend.php',  | 
                                                        |
| 967 | + 'OCP\\User\\Events\\BeforePasswordUpdatedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/BeforePasswordUpdatedEvent.php',  | 
                                                        |
| 968 | + 'OCP\\User\\Events\\BeforeUserCreatedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/BeforeUserCreatedEvent.php',  | 
                                                        |
| 969 | + 'OCP\\User\\Events\\BeforeUserDeletedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/BeforeUserDeletedEvent.php',  | 
                                                        |
| 970 | + 'OCP\\User\\Events\\BeforeUserIdUnassignedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/BeforeUserIdUnassignedEvent.php',  | 
                                                        |
| 971 | + 'OCP\\User\\Events\\BeforeUserLoggedInEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/BeforeUserLoggedInEvent.php',  | 
                                                        |
| 972 | + 'OCP\\User\\Events\\BeforeUserLoggedInWithCookieEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/BeforeUserLoggedInWithCookieEvent.php',  | 
                                                        |
| 973 | + 'OCP\\User\\Events\\BeforeUserLoggedOutEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/BeforeUserLoggedOutEvent.php',  | 
                                                        |
| 974 | + 'OCP\\User\\Events\\OutOfOfficeChangedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/OutOfOfficeChangedEvent.php',  | 
                                                        |
| 975 | + 'OCP\\User\\Events\\OutOfOfficeClearedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/OutOfOfficeClearedEvent.php',  | 
                                                        |
| 976 | + 'OCP\\User\\Events\\OutOfOfficeEndedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/OutOfOfficeEndedEvent.php',  | 
                                                        |
| 977 | + 'OCP\\User\\Events\\OutOfOfficeScheduledEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/OutOfOfficeScheduledEvent.php',  | 
                                                        |
| 978 | + 'OCP\\User\\Events\\OutOfOfficeStartedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/OutOfOfficeStartedEvent.php',  | 
                                                        |
| 979 | + 'OCP\\User\\Events\\PasswordUpdatedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/PasswordUpdatedEvent.php',  | 
                                                        |
| 980 | + 'OCP\\User\\Events\\PostLoginEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/PostLoginEvent.php',  | 
                                                        |
| 981 | + 'OCP\\User\\Events\\UserChangedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/UserChangedEvent.php',  | 
                                                        |
| 982 | + 'OCP\\User\\Events\\UserCreatedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/UserCreatedEvent.php',  | 
                                                        |
| 983 | + 'OCP\\User\\Events\\UserDeletedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/UserDeletedEvent.php',  | 
                                                        |
| 984 | + 'OCP\\User\\Events\\UserFirstTimeLoggedInEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/UserFirstTimeLoggedInEvent.php',  | 
                                                        |
| 985 | + 'OCP\\User\\Events\\UserIdAssignedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/UserIdAssignedEvent.php',  | 
                                                        |
| 986 | + 'OCP\\User\\Events\\UserIdUnassignedEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/UserIdUnassignedEvent.php',  | 
                                                        |
| 987 | + 'OCP\\User\\Events\\UserLiveStatusEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/UserLiveStatusEvent.php',  | 
                                                        |
| 988 | + 'OCP\\User\\Events\\UserLoggedInEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/UserLoggedInEvent.php',  | 
                                                        |
| 989 | + 'OCP\\User\\Events\\UserLoggedInWithCookieEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/UserLoggedInWithCookieEvent.php',  | 
                                                        |
| 990 | + 'OCP\\User\\Events\\UserLoggedOutEvent' => __DIR__.'/../../..'.'/lib/public/User/Events/UserLoggedOutEvent.php',  | 
                                                        |
| 991 | + 'OCP\\User\\GetQuotaEvent' => __DIR__.'/../../..'.'/lib/public/User/GetQuotaEvent.php',  | 
                                                        |
| 992 | + 'OCP\\User\\IAvailabilityCoordinator' => __DIR__.'/../../..'.'/lib/public/User/IAvailabilityCoordinator.php',  | 
                                                        |
| 993 | + 'OCP\\User\\IOutOfOfficeData' => __DIR__.'/../../..'.'/lib/public/User/IOutOfOfficeData.php',  | 
                                                        |
| 994 | + 'OCP\\Util' => __DIR__.'/../../..'.'/lib/public/Util.php',  | 
                                                        |
| 995 | + 'OCP\\WorkflowEngine\\EntityContext\\IContextPortation' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/EntityContext/IContextPortation.php',  | 
                                                        |
| 996 | + 'OCP\\WorkflowEngine\\EntityContext\\IDisplayName' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/EntityContext/IDisplayName.php',  | 
                                                        |
| 997 | + 'OCP\\WorkflowEngine\\EntityContext\\IDisplayText' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/EntityContext/IDisplayText.php',  | 
                                                        |
| 998 | + 'OCP\\WorkflowEngine\\EntityContext\\IIcon' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/EntityContext/IIcon.php',  | 
                                                        |
| 999 | + 'OCP\\WorkflowEngine\\EntityContext\\IUrl' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/EntityContext/IUrl.php',  | 
                                                        |
| 1000 | + 'OCP\\WorkflowEngine\\Events\\LoadSettingsScriptsEvent' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/Events/LoadSettingsScriptsEvent.php',  | 
                                                        |
| 1001 | + 'OCP\\WorkflowEngine\\Events\\RegisterChecksEvent' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/Events/RegisterChecksEvent.php',  | 
                                                        |
| 1002 | + 'OCP\\WorkflowEngine\\Events\\RegisterEntitiesEvent' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/Events/RegisterEntitiesEvent.php',  | 
                                                        |
| 1003 | + 'OCP\\WorkflowEngine\\Events\\RegisterOperationsEvent' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/Events/RegisterOperationsEvent.php',  | 
                                                        |
| 1004 | + 'OCP\\WorkflowEngine\\GenericEntityEvent' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/GenericEntityEvent.php',  | 
                                                        |
| 1005 | + 'OCP\\WorkflowEngine\\ICheck' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/ICheck.php',  | 
                                                        |
| 1006 | + 'OCP\\WorkflowEngine\\IComplexOperation' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/IComplexOperation.php',  | 
                                                        |
| 1007 | + 'OCP\\WorkflowEngine\\IEntity' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/IEntity.php',  | 
                                                        |
| 1008 | + 'OCP\\WorkflowEngine\\IEntityCheck' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/IEntityCheck.php',  | 
                                                        |
| 1009 | + 'OCP\\WorkflowEngine\\IEntityEvent' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/IEntityEvent.php',  | 
                                                        |
| 1010 | + 'OCP\\WorkflowEngine\\IFileCheck' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/IFileCheck.php',  | 
                                                        |
| 1011 | + 'OCP\\WorkflowEngine\\IManager' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/IManager.php',  | 
                                                        |
| 1012 | + 'OCP\\WorkflowEngine\\IOperation' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/IOperation.php',  | 
                                                        |
| 1013 | + 'OCP\\WorkflowEngine\\IRuleMatcher' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/IRuleMatcher.php',  | 
                                                        |
| 1014 | + 'OCP\\WorkflowEngine\\ISpecificOperation' => __DIR__.'/../../..'.'/lib/public/WorkflowEngine/ISpecificOperation.php',  | 
                                                        |
| 1015 | + 'OC\\Accounts\\Account' => __DIR__.'/../../..'.'/lib/private/Accounts/Account.php',  | 
                                                        |
| 1016 | + 'OC\\Accounts\\AccountManager' => __DIR__.'/../../..'.'/lib/private/Accounts/AccountManager.php',  | 
                                                        |
| 1017 | + 'OC\\Accounts\\AccountProperty' => __DIR__.'/../../..'.'/lib/private/Accounts/AccountProperty.php',  | 
                                                        |
| 1018 | + 'OC\\Accounts\\AccountPropertyCollection' => __DIR__.'/../../..'.'/lib/private/Accounts/AccountPropertyCollection.php',  | 
                                                        |
| 1019 | + 'OC\\Accounts\\Hooks' => __DIR__.'/../../..'.'/lib/private/Accounts/Hooks.php',  | 
                                                        |
| 1020 | + 'OC\\Accounts\\TAccountsHelper' => __DIR__.'/../../..'.'/lib/private/Accounts/TAccountsHelper.php',  | 
                                                        |
| 1021 | + 'OC\\Activity\\ActivitySettingsAdapter' => __DIR__.'/../../..'.'/lib/private/Activity/ActivitySettingsAdapter.php',  | 
                                                        |
| 1022 | + 'OC\\Activity\\Event' => __DIR__.'/../../..'.'/lib/private/Activity/Event.php',  | 
                                                        |
| 1023 | + 'OC\\Activity\\EventMerger' => __DIR__.'/../../..'.'/lib/private/Activity/EventMerger.php',  | 
                                                        |
| 1024 | + 'OC\\Activity\\Manager' => __DIR__.'/../../..'.'/lib/private/Activity/Manager.php',  | 
                                                        |
| 1025 | + 'OC\\AllConfig' => __DIR__.'/../../..'.'/lib/private/AllConfig.php',  | 
                                                        |
| 1026 | + 'OC\\AppConfig' => __DIR__.'/../../..'.'/lib/private/AppConfig.php',  | 
                                                        |
| 1027 | + 'OC\\AppFramework\\App' => __DIR__.'/../../..'.'/lib/private/AppFramework/App.php',  | 
                                                        |
| 1028 | + 'OC\\AppFramework\\Bootstrap\\ARegistration' => __DIR__.'/../../..'.'/lib/private/AppFramework/Bootstrap/ARegistration.php',  | 
                                                        |
| 1029 | + 'OC\\AppFramework\\Bootstrap\\BootContext' => __DIR__.'/../../..'.'/lib/private/AppFramework/Bootstrap/BootContext.php',  | 
                                                        |
| 1030 | + 'OC\\AppFramework\\Bootstrap\\Coordinator' => __DIR__.'/../../..'.'/lib/private/AppFramework/Bootstrap/Coordinator.php',  | 
                                                        |
| 1031 | + 'OC\\AppFramework\\Bootstrap\\EventListenerRegistration' => __DIR__.'/../../..'.'/lib/private/AppFramework/Bootstrap/EventListenerRegistration.php',  | 
                                                        |
| 1032 | + 'OC\\AppFramework\\Bootstrap\\FunctionInjector' => __DIR__.'/../../..'.'/lib/private/AppFramework/Bootstrap/FunctionInjector.php',  | 
                                                        |
| 1033 | + 'OC\\AppFramework\\Bootstrap\\MiddlewareRegistration' => __DIR__.'/../../..'.'/lib/private/AppFramework/Bootstrap/MiddlewareRegistration.php',  | 
                                                        |
| 1034 | + 'OC\\AppFramework\\Bootstrap\\ParameterRegistration' => __DIR__.'/../../..'.'/lib/private/AppFramework/Bootstrap/ParameterRegistration.php',  | 
                                                        |
| 1035 | + 'OC\\AppFramework\\Bootstrap\\PreviewProviderRegistration' => __DIR__.'/../../..'.'/lib/private/AppFramework/Bootstrap/PreviewProviderRegistration.php',  | 
                                                        |
| 1036 | + 'OC\\AppFramework\\Bootstrap\\RegistrationContext' => __DIR__.'/../../..'.'/lib/private/AppFramework/Bootstrap/RegistrationContext.php',  | 
                                                        |
| 1037 | + 'OC\\AppFramework\\Bootstrap\\ServiceAliasRegistration' => __DIR__.'/../../..'.'/lib/private/AppFramework/Bootstrap/ServiceAliasRegistration.php',  | 
                                                        |
| 1038 | + 'OC\\AppFramework\\Bootstrap\\ServiceFactoryRegistration' => __DIR__.'/../../..'.'/lib/private/AppFramework/Bootstrap/ServiceFactoryRegistration.php',  | 
                                                        |
| 1039 | + 'OC\\AppFramework\\Bootstrap\\ServiceRegistration' => __DIR__.'/../../..'.'/lib/private/AppFramework/Bootstrap/ServiceRegistration.php',  | 
                                                        |
| 1040 | + 'OC\\AppFramework\\DependencyInjection\\DIContainer' => __DIR__.'/../../..'.'/lib/private/AppFramework/DependencyInjection/DIContainer.php',  | 
                                                        |
| 1041 | + 'OC\\AppFramework\\Http' => __DIR__.'/../../..'.'/lib/private/AppFramework/Http.php',  | 
                                                        |
| 1042 | + 'OC\\AppFramework\\Http\\Dispatcher' => __DIR__.'/../../..'.'/lib/private/AppFramework/Http/Dispatcher.php',  | 
                                                        |
| 1043 | + 'OC\\AppFramework\\Http\\Output' => __DIR__.'/../../..'.'/lib/private/AppFramework/Http/Output.php',  | 
                                                        |
| 1044 | + 'OC\\AppFramework\\Http\\Request' => __DIR__.'/../../..'.'/lib/private/AppFramework/Http/Request.php',  | 
                                                        |
| 1045 | + 'OC\\AppFramework\\Http\\RequestId' => __DIR__.'/../../..'.'/lib/private/AppFramework/Http/RequestId.php',  | 
                                                        |
| 1046 | + 'OC\\AppFramework\\Middleware\\AdditionalScriptsMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/AdditionalScriptsMiddleware.php',  | 
                                                        |
| 1047 | + 'OC\\AppFramework\\Middleware\\CompressionMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/CompressionMiddleware.php',  | 
                                                        |
| 1048 | + 'OC\\AppFramework\\Middleware\\FlowV2EphemeralSessionsMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/FlowV2EphemeralSessionsMiddleware.php',  | 
                                                        |
| 1049 | + 'OC\\AppFramework\\Middleware\\MiddlewareDispatcher' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/MiddlewareDispatcher.php',  | 
                                                        |
| 1050 | + 'OC\\AppFramework\\Middleware\\NotModifiedMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/NotModifiedMiddleware.php',  | 
                                                        |
| 1051 | + 'OC\\AppFramework\\Middleware\\OCSMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/OCSMiddleware.php',  | 
                                                        |
| 1052 | + 'OC\\AppFramework\\Middleware\\PublicShare\\Exceptions\\NeedAuthenticationException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/PublicShare/Exceptions/NeedAuthenticationException.php',  | 
                                                        |
| 1053 | + 'OC\\AppFramework\\Middleware\\PublicShare\\PublicShareMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/PublicShare/PublicShareMiddleware.php',  | 
                                                        |
| 1054 | + 'OC\\AppFramework\\Middleware\\Security\\BruteForceMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/BruteForceMiddleware.php',  | 
                                                        |
| 1055 | + 'OC\\AppFramework\\Middleware\\Security\\CORSMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/CORSMiddleware.php',  | 
                                                        |
| 1056 | + 'OC\\AppFramework\\Middleware\\Security\\CSPMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/CSPMiddleware.php',  | 
                                                        |
| 1057 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\AdminIpNotAllowedException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/Exceptions/AdminIpNotAllowedException.php',  | 
                                                        |
| 1058 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\AppNotEnabledException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/Exceptions/AppNotEnabledException.php',  | 
                                                        |
| 1059 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\CrossSiteRequestForgeryException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/Exceptions/CrossSiteRequestForgeryException.php',  | 
                                                        |
| 1060 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\ExAppRequiredException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/Exceptions/ExAppRequiredException.php',  | 
                                                        |
| 1061 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\LaxSameSiteCookieFailedException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/Exceptions/LaxSameSiteCookieFailedException.php',  | 
                                                        |
| 1062 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\NotAdminException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/Exceptions/NotAdminException.php',  | 
                                                        |
| 1063 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\NotConfirmedException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/Exceptions/NotConfirmedException.php',  | 
                                                        |
| 1064 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\NotLoggedInException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/Exceptions/NotLoggedInException.php',  | 
                                                        |
| 1065 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\ReloadExecutionException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/Exceptions/ReloadExecutionException.php',  | 
                                                        |
| 1066 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\SecurityException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/Exceptions/SecurityException.php',  | 
                                                        |
| 1067 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\StrictCookieMissingException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/Exceptions/StrictCookieMissingException.php',  | 
                                                        |
| 1068 | + 'OC\\AppFramework\\Middleware\\Security\\FeaturePolicyMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/FeaturePolicyMiddleware.php',  | 
                                                        |
| 1069 | + 'OC\\AppFramework\\Middleware\\Security\\PasswordConfirmationMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/PasswordConfirmationMiddleware.php',  | 
                                                        |
| 1070 | + 'OC\\AppFramework\\Middleware\\Security\\RateLimitingMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/RateLimitingMiddleware.php',  | 
                                                        |
| 1071 | + 'OC\\AppFramework\\Middleware\\Security\\ReloadExecutionMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/ReloadExecutionMiddleware.php',  | 
                                                        |
| 1072 | + 'OC\\AppFramework\\Middleware\\Security\\SameSiteCookieMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/SameSiteCookieMiddleware.php',  | 
                                                        |
| 1073 | + 'OC\\AppFramework\\Middleware\\Security\\SecurityMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php',  | 
                                                        |
| 1074 | + 'OC\\AppFramework\\Middleware\\SessionMiddleware' => __DIR__.'/../../..'.'/lib/private/AppFramework/Middleware/SessionMiddleware.php',  | 
                                                        |
| 1075 | + 'OC\\AppFramework\\OCS\\BaseResponse' => __DIR__.'/../../..'.'/lib/private/AppFramework/OCS/BaseResponse.php',  | 
                                                        |
| 1076 | + 'OC\\AppFramework\\OCS\\V1Response' => __DIR__.'/../../..'.'/lib/private/AppFramework/OCS/V1Response.php',  | 
                                                        |
| 1077 | + 'OC\\AppFramework\\OCS\\V2Response' => __DIR__.'/../../..'.'/lib/private/AppFramework/OCS/V2Response.php',  | 
                                                        |
| 1078 | + 'OC\\AppFramework\\Routing\\RouteActionHandler' => __DIR__.'/../../..'.'/lib/private/AppFramework/Routing/RouteActionHandler.php',  | 
                                                        |
| 1079 | + 'OC\\AppFramework\\Routing\\RouteConfig' => __DIR__.'/../../..'.'/lib/private/AppFramework/Routing/RouteConfig.php',  | 
                                                        |
| 1080 | + 'OC\\AppFramework\\Routing\\RouteParser' => __DIR__.'/../../..'.'/lib/private/AppFramework/Routing/RouteParser.php',  | 
                                                        |
| 1081 | + 'OC\\AppFramework\\ScopedPsrLogger' => __DIR__.'/../../..'.'/lib/private/AppFramework/ScopedPsrLogger.php',  | 
                                                        |
| 1082 | + 'OC\\AppFramework\\Services\\AppConfig' => __DIR__.'/../../..'.'/lib/private/AppFramework/Services/AppConfig.php',  | 
                                                        |
| 1083 | + 'OC\\AppFramework\\Services\\InitialState' => __DIR__.'/../../..'.'/lib/private/AppFramework/Services/InitialState.php',  | 
                                                        |
| 1084 | + 'OC\\AppFramework\\Utility\\ControllerMethodReflector' => __DIR__.'/../../..'.'/lib/private/AppFramework/Utility/ControllerMethodReflector.php',  | 
                                                        |
| 1085 | + 'OC\\AppFramework\\Utility\\QueryNotFoundException' => __DIR__.'/../../..'.'/lib/private/AppFramework/Utility/QueryNotFoundException.php',  | 
                                                        |
| 1086 | + 'OC\\AppFramework\\Utility\\SimpleContainer' => __DIR__.'/../../..'.'/lib/private/AppFramework/Utility/SimpleContainer.php',  | 
                                                        |
| 1087 | + 'OC\\AppFramework\\Utility\\TimeFactory' => __DIR__.'/../../..'.'/lib/private/AppFramework/Utility/TimeFactory.php',  | 
                                                        |
| 1088 | + 'OC\\AppScriptDependency' => __DIR__.'/../../..'.'/lib/private/AppScriptDependency.php',  | 
                                                        |
| 1089 | + 'OC\\AppScriptSort' => __DIR__.'/../../..'.'/lib/private/AppScriptSort.php',  | 
                                                        |
| 1090 | + 'OC\\App\\AppManager' => __DIR__.'/../../..'.'/lib/private/App/AppManager.php',  | 
                                                        |
| 1091 | + 'OC\\App\\AppStore\\Bundles\\Bundle' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Bundles/Bundle.php',  | 
                                                        |
| 1092 | + 'OC\\App\\AppStore\\Bundles\\BundleFetcher' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Bundles/BundleFetcher.php',  | 
                                                        |
| 1093 | + 'OC\\App\\AppStore\\Bundles\\EducationBundle' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Bundles/EducationBundle.php',  | 
                                                        |
| 1094 | + 'OC\\App\\AppStore\\Bundles\\EnterpriseBundle' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Bundles/EnterpriseBundle.php',  | 
                                                        |
| 1095 | + 'OC\\App\\AppStore\\Bundles\\GroupwareBundle' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Bundles/GroupwareBundle.php',  | 
                                                        |
| 1096 | + 'OC\\App\\AppStore\\Bundles\\HubBundle' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Bundles/HubBundle.php',  | 
                                                        |
| 1097 | + 'OC\\App\\AppStore\\Bundles\\PublicSectorBundle' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Bundles/PublicSectorBundle.php',  | 
                                                        |
| 1098 | + 'OC\\App\\AppStore\\Bundles\\SocialSharingBundle' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Bundles/SocialSharingBundle.php',  | 
                                                        |
| 1099 | + 'OC\\App\\AppStore\\Fetcher\\AppDiscoverFetcher' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Fetcher/AppDiscoverFetcher.php',  | 
                                                        |
| 1100 | + 'OC\\App\\AppStore\\Fetcher\\AppFetcher' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Fetcher/AppFetcher.php',  | 
                                                        |
| 1101 | + 'OC\\App\\AppStore\\Fetcher\\CategoryFetcher' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Fetcher/CategoryFetcher.php',  | 
                                                        |
| 1102 | + 'OC\\App\\AppStore\\Fetcher\\Fetcher' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Fetcher/Fetcher.php',  | 
                                                        |
| 1103 | + 'OC\\App\\AppStore\\Version\\Version' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Version/Version.php',  | 
                                                        |
| 1104 | + 'OC\\App\\AppStore\\Version\\VersionParser' => __DIR__.'/../../..'.'/lib/private/App/AppStore/Version/VersionParser.php',  | 
                                                        |
| 1105 | + 'OC\\App\\CompareVersion' => __DIR__.'/../../..'.'/lib/private/App/CompareVersion.php',  | 
                                                        |
| 1106 | + 'OC\\App\\DependencyAnalyzer' => __DIR__.'/../../..'.'/lib/private/App/DependencyAnalyzer.php',  | 
                                                        |
| 1107 | + 'OC\\App\\InfoParser' => __DIR__.'/../../..'.'/lib/private/App/InfoParser.php',  | 
                                                        |
| 1108 | + 'OC\\App\\Platform' => __DIR__.'/../../..'.'/lib/private/App/Platform.php',  | 
                                                        |
| 1109 | + 'OC\\App\\PlatformRepository' => __DIR__.'/../../..'.'/lib/private/App/PlatformRepository.php',  | 
                                                        |
| 1110 | + 'OC\\Archive\\Archive' => __DIR__.'/../../..'.'/lib/private/Archive/Archive.php',  | 
                                                        |
| 1111 | + 'OC\\Archive\\TAR' => __DIR__.'/../../..'.'/lib/private/Archive/TAR.php',  | 
                                                        |
| 1112 | + 'OC\\Archive\\ZIP' => __DIR__.'/../../..'.'/lib/private/Archive/ZIP.php',  | 
                                                        |
| 1113 | + 'OC\\Authentication\\Events\\ARemoteWipeEvent' => __DIR__.'/../../..'.'/lib/private/Authentication/Events/ARemoteWipeEvent.php',  | 
                                                        |
| 1114 | + 'OC\\Authentication\\Events\\AppPasswordCreatedEvent' => __DIR__.'/../../..'.'/lib/private/Authentication/Events/AppPasswordCreatedEvent.php',  | 
                                                        |
| 1115 | + 'OC\\Authentication\\Events\\LoginFailed' => __DIR__.'/../../..'.'/lib/private/Authentication/Events/LoginFailed.php',  | 
                                                        |
| 1116 | + 'OC\\Authentication\\Events\\RemoteWipeFinished' => __DIR__.'/../../..'.'/lib/private/Authentication/Events/RemoteWipeFinished.php',  | 
                                                        |
| 1117 | + 'OC\\Authentication\\Events\\RemoteWipeStarted' => __DIR__.'/../../..'.'/lib/private/Authentication/Events/RemoteWipeStarted.php',  | 
                                                        |
| 1118 | + 'OC\\Authentication\\Exceptions\\ExpiredTokenException' => __DIR__.'/../../..'.'/lib/private/Authentication/Exceptions/ExpiredTokenException.php',  | 
                                                        |
| 1119 | + 'OC\\Authentication\\Exceptions\\InvalidProviderException' => __DIR__.'/../../..'.'/lib/private/Authentication/Exceptions/InvalidProviderException.php',  | 
                                                        |
| 1120 | + 'OC\\Authentication\\Exceptions\\InvalidTokenException' => __DIR__.'/../../..'.'/lib/private/Authentication/Exceptions/InvalidTokenException.php',  | 
                                                        |
| 1121 | + 'OC\\Authentication\\Exceptions\\LoginRequiredException' => __DIR__.'/../../..'.'/lib/private/Authentication/Exceptions/LoginRequiredException.php',  | 
                                                        |
| 1122 | + 'OC\\Authentication\\Exceptions\\PasswordLoginForbiddenException' => __DIR__.'/../../..'.'/lib/private/Authentication/Exceptions/PasswordLoginForbiddenException.php',  | 
                                                        |
| 1123 | + 'OC\\Authentication\\Exceptions\\PasswordlessTokenException' => __DIR__.'/../../..'.'/lib/private/Authentication/Exceptions/PasswordlessTokenException.php',  | 
                                                        |
| 1124 | + 'OC\\Authentication\\Exceptions\\TokenPasswordExpiredException' => __DIR__.'/../../..'.'/lib/private/Authentication/Exceptions/TokenPasswordExpiredException.php',  | 
                                                        |
| 1125 | + 'OC\\Authentication\\Exceptions\\TwoFactorAuthRequiredException' => __DIR__.'/../../..'.'/lib/private/Authentication/Exceptions/TwoFactorAuthRequiredException.php',  | 
                                                        |
| 1126 | + 'OC\\Authentication\\Exceptions\\UserAlreadyLoggedInException' => __DIR__.'/../../..'.'/lib/private/Authentication/Exceptions/UserAlreadyLoggedInException.php',  | 
                                                        |
| 1127 | + 'OC\\Authentication\\Exceptions\\WipeTokenException' => __DIR__.'/../../..'.'/lib/private/Authentication/Exceptions/WipeTokenException.php',  | 
                                                        |
| 1128 | + 'OC\\Authentication\\Listeners\\LoginFailedListener' => __DIR__.'/../../..'.'/lib/private/Authentication/Listeners/LoginFailedListener.php',  | 
                                                        |
| 1129 | + 'OC\\Authentication\\Listeners\\RemoteWipeActivityListener' => __DIR__.'/../../..'.'/lib/private/Authentication/Listeners/RemoteWipeActivityListener.php',  | 
                                                        |
| 1130 | + 'OC\\Authentication\\Listeners\\RemoteWipeEmailListener' => __DIR__.'/../../..'.'/lib/private/Authentication/Listeners/RemoteWipeEmailListener.php',  | 
                                                        |
| 1131 | + 'OC\\Authentication\\Listeners\\RemoteWipeNotificationsListener' => __DIR__.'/../../..'.'/lib/private/Authentication/Listeners/RemoteWipeNotificationsListener.php',  | 
                                                        |
| 1132 | + 'OC\\Authentication\\Listeners\\UserDeletedFilesCleanupListener' => __DIR__.'/../../..'.'/lib/private/Authentication/Listeners/UserDeletedFilesCleanupListener.php',  | 
                                                        |
| 1133 | + 'OC\\Authentication\\Listeners\\UserDeletedStoreCleanupListener' => __DIR__.'/../../..'.'/lib/private/Authentication/Listeners/UserDeletedStoreCleanupListener.php',  | 
                                                        |
| 1134 | + 'OC\\Authentication\\Listeners\\UserDeletedTokenCleanupListener' => __DIR__.'/../../..'.'/lib/private/Authentication/Listeners/UserDeletedTokenCleanupListener.php',  | 
                                                        |
| 1135 | + 'OC\\Authentication\\Listeners\\UserDeletedWebAuthnCleanupListener' => __DIR__.'/../../..'.'/lib/private/Authentication/Listeners/UserDeletedWebAuthnCleanupListener.php',  | 
                                                        |
| 1136 | + 'OC\\Authentication\\Listeners\\UserLoggedInListener' => __DIR__.'/../../..'.'/lib/private/Authentication/Listeners/UserLoggedInListener.php',  | 
                                                        |
| 1137 | + 'OC\\Authentication\\LoginCredentials\\Credentials' => __DIR__.'/../../..'.'/lib/private/Authentication/LoginCredentials/Credentials.php',  | 
                                                        |
| 1138 | + 'OC\\Authentication\\LoginCredentials\\Store' => __DIR__.'/../../..'.'/lib/private/Authentication/LoginCredentials/Store.php',  | 
                                                        |
| 1139 | + 'OC\\Authentication\\Login\\ALoginCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/ALoginCommand.php',  | 
                                                        |
| 1140 | + 'OC\\Authentication\\Login\\Chain' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/Chain.php',  | 
                                                        |
| 1141 | + 'OC\\Authentication\\Login\\ClearLostPasswordTokensCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/ClearLostPasswordTokensCommand.php',  | 
                                                        |
| 1142 | + 'OC\\Authentication\\Login\\CompleteLoginCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/CompleteLoginCommand.php',  | 
                                                        |
| 1143 | + 'OC\\Authentication\\Login\\CreateSessionTokenCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/CreateSessionTokenCommand.php',  | 
                                                        |
| 1144 | + 'OC\\Authentication\\Login\\FinishRememberedLoginCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/FinishRememberedLoginCommand.php',  | 
                                                        |
| 1145 | + 'OC\\Authentication\\Login\\FlowV2EphemeralSessionsCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/FlowV2EphemeralSessionsCommand.php',  | 
                                                        |
| 1146 | + 'OC\\Authentication\\Login\\LoggedInCheckCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/LoggedInCheckCommand.php',  | 
                                                        |
| 1147 | + 'OC\\Authentication\\Login\\LoginData' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/LoginData.php',  | 
                                                        |
| 1148 | + 'OC\\Authentication\\Login\\LoginResult' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/LoginResult.php',  | 
                                                        |
| 1149 | + 'OC\\Authentication\\Login\\PreLoginHookCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/PreLoginHookCommand.php',  | 
                                                        |
| 1150 | + 'OC\\Authentication\\Login\\SetUserTimezoneCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/SetUserTimezoneCommand.php',  | 
                                                        |
| 1151 | + 'OC\\Authentication\\Login\\TwoFactorCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/TwoFactorCommand.php',  | 
                                                        |
| 1152 | + 'OC\\Authentication\\Login\\UidLoginCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/UidLoginCommand.php',  | 
                                                        |
| 1153 | + 'OC\\Authentication\\Login\\UpdateLastPasswordConfirmCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/UpdateLastPasswordConfirmCommand.php',  | 
                                                        |
| 1154 | + 'OC\\Authentication\\Login\\UserDisabledCheckCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/UserDisabledCheckCommand.php',  | 
                                                        |
| 1155 | + 'OC\\Authentication\\Login\\WebAuthnChain' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/WebAuthnChain.php',  | 
                                                        |
| 1156 | + 'OC\\Authentication\\Login\\WebAuthnLoginCommand' => __DIR__.'/../../..'.'/lib/private/Authentication/Login/WebAuthnLoginCommand.php',  | 
                                                        |
| 1157 | + 'OC\\Authentication\\Notifications\\Notifier' => __DIR__.'/../../..'.'/lib/private/Authentication/Notifications/Notifier.php',  | 
                                                        |
| 1158 | + 'OC\\Authentication\\Token\\INamedToken' => __DIR__.'/../../..'.'/lib/private/Authentication/Token/INamedToken.php',  | 
                                                        |
| 1159 | + 'OC\\Authentication\\Token\\IProvider' => __DIR__.'/../../..'.'/lib/private/Authentication/Token/IProvider.php',  | 
                                                        |
| 1160 | + 'OC\\Authentication\\Token\\IToken' => __DIR__.'/../../..'.'/lib/private/Authentication/Token/IToken.php',  | 
                                                        |
| 1161 | + 'OC\\Authentication\\Token\\IWipeableToken' => __DIR__.'/../../..'.'/lib/private/Authentication/Token/IWipeableToken.php',  | 
                                                        |
| 1162 | + 'OC\\Authentication\\Token\\Manager' => __DIR__.'/../../..'.'/lib/private/Authentication/Token/Manager.php',  | 
                                                        |
| 1163 | + 'OC\\Authentication\\Token\\PublicKeyToken' => __DIR__.'/../../..'.'/lib/private/Authentication/Token/PublicKeyToken.php',  | 
                                                        |
| 1164 | + 'OC\\Authentication\\Token\\PublicKeyTokenMapper' => __DIR__.'/../../..'.'/lib/private/Authentication/Token/PublicKeyTokenMapper.php',  | 
                                                        |
| 1165 | + 'OC\\Authentication\\Token\\PublicKeyTokenProvider' => __DIR__.'/../../..'.'/lib/private/Authentication/Token/PublicKeyTokenProvider.php',  | 
                                                        |
| 1166 | + 'OC\\Authentication\\Token\\RemoteWipe' => __DIR__.'/../../..'.'/lib/private/Authentication/Token/RemoteWipe.php',  | 
                                                        |
| 1167 | + 'OC\\Authentication\\Token\\TokenCleanupJob' => __DIR__.'/../../..'.'/lib/private/Authentication/Token/TokenCleanupJob.php',  | 
                                                        |
| 1168 | + 'OC\\Authentication\\TwoFactorAuth\\Db\\ProviderUserAssignmentDao' => __DIR__.'/../../..'.'/lib/private/Authentication/TwoFactorAuth/Db/ProviderUserAssignmentDao.php',  | 
                                                        |
| 1169 | + 'OC\\Authentication\\TwoFactorAuth\\EnforcementState' => __DIR__.'/../../..'.'/lib/private/Authentication/TwoFactorAuth/EnforcementState.php',  | 
                                                        |
| 1170 | + 'OC\\Authentication\\TwoFactorAuth\\Manager' => __DIR__.'/../../..'.'/lib/private/Authentication/TwoFactorAuth/Manager.php',  | 
                                                        |
| 1171 | + 'OC\\Authentication\\TwoFactorAuth\\MandatoryTwoFactor' => __DIR__.'/../../..'.'/lib/private/Authentication/TwoFactorAuth/MandatoryTwoFactor.php',  | 
                                                        |
| 1172 | + 'OC\\Authentication\\TwoFactorAuth\\ProviderLoader' => __DIR__.'/../../..'.'/lib/private/Authentication/TwoFactorAuth/ProviderLoader.php',  | 
                                                        |
| 1173 | + 'OC\\Authentication\\TwoFactorAuth\\ProviderManager' => __DIR__.'/../../..'.'/lib/private/Authentication/TwoFactorAuth/ProviderManager.php',  | 
                                                        |
| 1174 | + 'OC\\Authentication\\TwoFactorAuth\\ProviderSet' => __DIR__.'/../../..'.'/lib/private/Authentication/TwoFactorAuth/ProviderSet.php',  | 
                                                        |
| 1175 | + 'OC\\Authentication\\TwoFactorAuth\\Registry' => __DIR__.'/../../..'.'/lib/private/Authentication/TwoFactorAuth/Registry.php',  | 
                                                        |
| 1176 | + 'OC\\Authentication\\WebAuthn\\CredentialRepository' => __DIR__.'/../../..'.'/lib/private/Authentication/WebAuthn/CredentialRepository.php',  | 
                                                        |
| 1177 | + 'OC\\Authentication\\WebAuthn\\Db\\PublicKeyCredentialEntity' => __DIR__.'/../../..'.'/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialEntity.php',  | 
                                                        |
| 1178 | + 'OC\\Authentication\\WebAuthn\\Db\\PublicKeyCredentialMapper' => __DIR__.'/../../..'.'/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php',  | 
                                                        |
| 1179 | + 'OC\\Authentication\\WebAuthn\\Manager' => __DIR__.'/../../..'.'/lib/private/Authentication/WebAuthn/Manager.php',  | 
                                                        |
| 1180 | + 'OC\\Avatar\\Avatar' => __DIR__.'/../../..'.'/lib/private/Avatar/Avatar.php',  | 
                                                        |
| 1181 | + 'OC\\Avatar\\AvatarManager' => __DIR__.'/../../..'.'/lib/private/Avatar/AvatarManager.php',  | 
                                                        |
| 1182 | + 'OC\\Avatar\\GuestAvatar' => __DIR__.'/../../..'.'/lib/private/Avatar/GuestAvatar.php',  | 
                                                        |
| 1183 | + 'OC\\Avatar\\PlaceholderAvatar' => __DIR__.'/../../..'.'/lib/private/Avatar/PlaceholderAvatar.php',  | 
                                                        |
| 1184 | + 'OC\\Avatar\\UserAvatar' => __DIR__.'/../../..'.'/lib/private/Avatar/UserAvatar.php',  | 
                                                        |
| 1185 | + 'OC\\BackgroundJob\\JobList' => __DIR__.'/../../..'.'/lib/private/BackgroundJob/JobList.php',  | 
                                                        |
| 1186 | + 'OC\\BinaryFinder' => __DIR__.'/../../..'.'/lib/private/BinaryFinder.php',  | 
                                                        |
| 1187 | + 'OC\\Blurhash\\Listener\\GenerateBlurhashMetadata' => __DIR__.'/../../..'.'/lib/private/Blurhash/Listener/GenerateBlurhashMetadata.php',  | 
                                                        |
| 1188 | + 'OC\\Broadcast\\Events\\BroadcastEvent' => __DIR__.'/../../..'.'/lib/private/Broadcast/Events/BroadcastEvent.php',  | 
                                                        |
| 1189 | + 'OC\\Cache\\CappedMemoryCache' => __DIR__.'/../../..'.'/lib/private/Cache/CappedMemoryCache.php',  | 
                                                        |
| 1190 | + 'OC\\Cache\\File' => __DIR__.'/../../..'.'/lib/private/Cache/File.php',  | 
                                                        |
| 1191 | + 'OC\\Calendar\\AvailabilityResult' => __DIR__.'/../../..'.'/lib/private/Calendar/AvailabilityResult.php',  | 
                                                        |
| 1192 | + 'OC\\Calendar\\CalendarEventBuilder' => __DIR__.'/../../..'.'/lib/private/Calendar/CalendarEventBuilder.php',  | 
                                                        |
| 1193 | + 'OC\\Calendar\\CalendarQuery' => __DIR__.'/../../..'.'/lib/private/Calendar/CalendarQuery.php',  | 
                                                        |
| 1194 | + 'OC\\Calendar\\Manager' => __DIR__.'/../../..'.'/lib/private/Calendar/Manager.php',  | 
                                                        |
| 1195 | + 'OC\\Calendar\\Resource\\Manager' => __DIR__.'/../../..'.'/lib/private/Calendar/Resource/Manager.php',  | 
                                                        |
| 1196 | + 'OC\\Calendar\\ResourcesRoomsUpdater' => __DIR__.'/../../..'.'/lib/private/Calendar/ResourcesRoomsUpdater.php',  | 
                                                        |
| 1197 | + 'OC\\Calendar\\Room\\Manager' => __DIR__.'/../../..'.'/lib/private/Calendar/Room/Manager.php',  | 
                                                        |
| 1198 | + 'OC\\CapabilitiesManager' => __DIR__.'/../../..'.'/lib/private/CapabilitiesManager.php',  | 
                                                        |
| 1199 | + 'OC\\Collaboration\\AutoComplete\\Manager' => __DIR__.'/../../..'.'/lib/private/Collaboration/AutoComplete/Manager.php',  | 
                                                        |
| 1200 | + 'OC\\Collaboration\\Collaborators\\GroupPlugin' => __DIR__.'/../../..'.'/lib/private/Collaboration/Collaborators/GroupPlugin.php',  | 
                                                        |
| 1201 | + 'OC\\Collaboration\\Collaborators\\LookupPlugin' => __DIR__.'/../../..'.'/lib/private/Collaboration/Collaborators/LookupPlugin.php',  | 
                                                        |
| 1202 | + 'OC\\Collaboration\\Collaborators\\MailPlugin' => __DIR__.'/../../..'.'/lib/private/Collaboration/Collaborators/MailPlugin.php',  | 
                                                        |
| 1203 | + 'OC\\Collaboration\\Collaborators\\RemoteGroupPlugin' => __DIR__.'/../../..'.'/lib/private/Collaboration/Collaborators/RemoteGroupPlugin.php',  | 
                                                        |
| 1204 | + 'OC\\Collaboration\\Collaborators\\RemotePlugin' => __DIR__.'/../../..'.'/lib/private/Collaboration/Collaborators/RemotePlugin.php',  | 
                                                        |
| 1205 | + 'OC\\Collaboration\\Collaborators\\Search' => __DIR__.'/../../..'.'/lib/private/Collaboration/Collaborators/Search.php',  | 
                                                        |
| 1206 | + 'OC\\Collaboration\\Collaborators\\SearchResult' => __DIR__.'/../../..'.'/lib/private/Collaboration/Collaborators/SearchResult.php',  | 
                                                        |
| 1207 | + 'OC\\Collaboration\\Collaborators\\UserPlugin' => __DIR__.'/../../..'.'/lib/private/Collaboration/Collaborators/UserPlugin.php',  | 
                                                        |
| 1208 | + 'OC\\Collaboration\\Reference\\File\\FileReferenceEventListener' => __DIR__.'/../../..'.'/lib/private/Collaboration/Reference/File/FileReferenceEventListener.php',  | 
                                                        |
| 1209 | + 'OC\\Collaboration\\Reference\\File\\FileReferenceProvider' => __DIR__.'/../../..'.'/lib/private/Collaboration/Reference/File/FileReferenceProvider.php',  | 
                                                        |
| 1210 | + 'OC\\Collaboration\\Reference\\LinkReferenceProvider' => __DIR__.'/../../..'.'/lib/private/Collaboration/Reference/LinkReferenceProvider.php',  | 
                                                        |
| 1211 | + 'OC\\Collaboration\\Reference\\ReferenceManager' => __DIR__.'/../../..'.'/lib/private/Collaboration/Reference/ReferenceManager.php',  | 
                                                        |
| 1212 | + 'OC\\Collaboration\\Reference\\RenderReferenceEventListener' => __DIR__.'/../../..'.'/lib/private/Collaboration/Reference/RenderReferenceEventListener.php',  | 
                                                        |
| 1213 | + 'OC\\Collaboration\\Resources\\Collection' => __DIR__.'/../../..'.'/lib/private/Collaboration/Resources/Collection.php',  | 
                                                        |
| 1214 | + 'OC\\Collaboration\\Resources\\Listener' => __DIR__.'/../../..'.'/lib/private/Collaboration/Resources/Listener.php',  | 
                                                        |
| 1215 | + 'OC\\Collaboration\\Resources\\Manager' => __DIR__.'/../../..'.'/lib/private/Collaboration/Resources/Manager.php',  | 
                                                        |
| 1216 | + 'OC\\Collaboration\\Resources\\ProviderManager' => __DIR__.'/../../..'.'/lib/private/Collaboration/Resources/ProviderManager.php',  | 
                                                        |
| 1217 | + 'OC\\Collaboration\\Resources\\Resource' => __DIR__.'/../../..'.'/lib/private/Collaboration/Resources/Resource.php',  | 
                                                        |
| 1218 | + 'OC\\Color' => __DIR__.'/../../..'.'/lib/private/Color.php',  | 
                                                        |
| 1219 | + 'OC\\Command\\AsyncBus' => __DIR__.'/../../..'.'/lib/private/Command/AsyncBus.php',  | 
                                                        |
| 1220 | + 'OC\\Command\\CallableJob' => __DIR__.'/../../..'.'/lib/private/Command/CallableJob.php',  | 
                                                        |
| 1221 | + 'OC\\Command\\ClosureJob' => __DIR__.'/../../..'.'/lib/private/Command/ClosureJob.php',  | 
                                                        |
| 1222 | + 'OC\\Command\\CommandJob' => __DIR__.'/../../..'.'/lib/private/Command/CommandJob.php',  | 
                                                        |
| 1223 | + 'OC\\Command\\CronBus' => __DIR__.'/../../..'.'/lib/private/Command/CronBus.php',  | 
                                                        |
| 1224 | + 'OC\\Command\\FileAccess' => __DIR__.'/../../..'.'/lib/private/Command/FileAccess.php',  | 
                                                        |
| 1225 | + 'OC\\Command\\QueueBus' => __DIR__.'/../../..'.'/lib/private/Command/QueueBus.php',  | 
                                                        |
| 1226 | + 'OC\\Comments\\Comment' => __DIR__.'/../../..'.'/lib/private/Comments/Comment.php',  | 
                                                        |
| 1227 | + 'OC\\Comments\\Manager' => __DIR__.'/../../..'.'/lib/private/Comments/Manager.php',  | 
                                                        |
| 1228 | + 'OC\\Comments\\ManagerFactory' => __DIR__.'/../../..'.'/lib/private/Comments/ManagerFactory.php',  | 
                                                        |
| 1229 | + 'OC\\Config' => __DIR__.'/../../..'.'/lib/private/Config.php',  | 
                                                        |
| 1230 | + 'OC\\Config\\Lexicon\\CoreConfigLexicon' => __DIR__.'/../../..'.'/lib/private/Config/Lexicon/CoreConfigLexicon.php',  | 
                                                        |
| 1231 | + 'OC\\Config\\UserConfig' => __DIR__.'/../../..'.'/lib/private/Config/UserConfig.php',  | 
                                                        |
| 1232 | + 'OC\\Console\\Application' => __DIR__.'/../../..'.'/lib/private/Console/Application.php',  | 
                                                        |
| 1233 | + 'OC\\Console\\TimestampFormatter' => __DIR__.'/../../..'.'/lib/private/Console/TimestampFormatter.php',  | 
                                                        |
| 1234 | + 'OC\\ContactsManager' => __DIR__.'/../../..'.'/lib/private/ContactsManager.php',  | 
                                                        |
| 1235 | + 'OC\\Contacts\\ContactsMenu\\ActionFactory' => __DIR__.'/../../..'.'/lib/private/Contacts/ContactsMenu/ActionFactory.php',  | 
                                                        |
| 1236 | + 'OC\\Contacts\\ContactsMenu\\ActionProviderStore' => __DIR__.'/../../..'.'/lib/private/Contacts/ContactsMenu/ActionProviderStore.php',  | 
                                                        |
| 1237 | + 'OC\\Contacts\\ContactsMenu\\Actions\\LinkAction' => __DIR__.'/../../..'.'/lib/private/Contacts/ContactsMenu/Actions/LinkAction.php',  | 
                                                        |
| 1238 | + 'OC\\Contacts\\ContactsMenu\\ContactsStore' => __DIR__.'/../../..'.'/lib/private/Contacts/ContactsMenu/ContactsStore.php',  | 
                                                        |
| 1239 | + 'OC\\Contacts\\ContactsMenu\\Entry' => __DIR__.'/../../..'.'/lib/private/Contacts/ContactsMenu/Entry.php',  | 
                                                        |
| 1240 | + 'OC\\Contacts\\ContactsMenu\\Manager' => __DIR__.'/../../..'.'/lib/private/Contacts/ContactsMenu/Manager.php',  | 
                                                        |
| 1241 | + 'OC\\Contacts\\ContactsMenu\\Providers\\EMailProvider' => __DIR__.'/../../..'.'/lib/private/Contacts/ContactsMenu/Providers/EMailProvider.php',  | 
                                                        |
| 1242 | + 'OC\\Contacts\\ContactsMenu\\Providers\\LocalTimeProvider' => __DIR__.'/../../..'.'/lib/private/Contacts/ContactsMenu/Providers/LocalTimeProvider.php',  | 
                                                        |
| 1243 | + 'OC\\Contacts\\ContactsMenu\\Providers\\ProfileProvider' => __DIR__.'/../../..'.'/lib/private/Contacts/ContactsMenu/Providers/ProfileProvider.php',  | 
                                                        |
| 1244 | + 'OC\\Core\\Application' => __DIR__.'/../../..'.'/core/Application.php',  | 
                                                        |
| 1245 | + 'OC\\Core\\BackgroundJobs\\BackgroundCleanupUpdaterBackupsJob' => __DIR__.'/../../..'.'/core/BackgroundJobs/BackgroundCleanupUpdaterBackupsJob.php',  | 
                                                        |
| 1246 | + 'OC\\Core\\BackgroundJobs\\CheckForUserCertificates' => __DIR__.'/../../..'.'/core/BackgroundJobs/CheckForUserCertificates.php',  | 
                                                        |
| 1247 | + 'OC\\Core\\BackgroundJobs\\CleanupLoginFlowV2' => __DIR__.'/../../..'.'/core/BackgroundJobs/CleanupLoginFlowV2.php',  | 
                                                        |
| 1248 | + 'OC\\Core\\BackgroundJobs\\GenerateMetadataJob' => __DIR__.'/../../..'.'/core/BackgroundJobs/GenerateMetadataJob.php',  | 
                                                        |
| 1249 | + 'OC\\Core\\BackgroundJobs\\LookupServerSendCheckBackgroundJob' => __DIR__.'/../../..'.'/core/BackgroundJobs/LookupServerSendCheckBackgroundJob.php',  | 
                                                        |
| 1250 | + 'OC\\Core\\Command\\App\\Disable' => __DIR__.'/../../..'.'/core/Command/App/Disable.php',  | 
                                                        |
| 1251 | + 'OC\\Core\\Command\\App\\Enable' => __DIR__.'/../../..'.'/core/Command/App/Enable.php',  | 
                                                        |
| 1252 | + 'OC\\Core\\Command\\App\\GetPath' => __DIR__.'/../../..'.'/core/Command/App/GetPath.php',  | 
                                                        |
| 1253 | + 'OC\\Core\\Command\\App\\Install' => __DIR__.'/../../..'.'/core/Command/App/Install.php',  | 
                                                        |
| 1254 | + 'OC\\Core\\Command\\App\\ListApps' => __DIR__.'/../../..'.'/core/Command/App/ListApps.php',  | 
                                                        |
| 1255 | + 'OC\\Core\\Command\\App\\Remove' => __DIR__.'/../../..'.'/core/Command/App/Remove.php',  | 
                                                        |
| 1256 | + 'OC\\Core\\Command\\App\\Update' => __DIR__.'/../../..'.'/core/Command/App/Update.php',  | 
                                                        |
| 1257 | + 'OC\\Core\\Command\\Background\\Delete' => __DIR__.'/../../..'.'/core/Command/Background/Delete.php',  | 
                                                        |
| 1258 | + 'OC\\Core\\Command\\Background\\Job' => __DIR__.'/../../..'.'/core/Command/Background/Job.php',  | 
                                                        |
| 1259 | + 'OC\\Core\\Command\\Background\\JobBase' => __DIR__.'/../../..'.'/core/Command/Background/JobBase.php',  | 
                                                        |
| 1260 | + 'OC\\Core\\Command\\Background\\JobWorker' => __DIR__.'/../../..'.'/core/Command/Background/JobWorker.php',  | 
                                                        |
| 1261 | + 'OC\\Core\\Command\\Background\\ListCommand' => __DIR__.'/../../..'.'/core/Command/Background/ListCommand.php',  | 
                                                        |
| 1262 | + 'OC\\Core\\Command\\Background\\Mode' => __DIR__.'/../../..'.'/core/Command/Background/Mode.php',  | 
                                                        |
| 1263 | + 'OC\\Core\\Command\\Base' => __DIR__.'/../../..'.'/core/Command/Base.php',  | 
                                                        |
| 1264 | + 'OC\\Core\\Command\\Broadcast\\Test' => __DIR__.'/../../..'.'/core/Command/Broadcast/Test.php',  | 
                                                        |
| 1265 | + 'OC\\Core\\Command\\Check' => __DIR__.'/../../..'.'/core/Command/Check.php',  | 
                                                        |
| 1266 | + 'OC\\Core\\Command\\Config\\App\\Base' => __DIR__.'/../../..'.'/core/Command/Config/App/Base.php',  | 
                                                        |
| 1267 | + 'OC\\Core\\Command\\Config\\App\\DeleteConfig' => __DIR__.'/../../..'.'/core/Command/Config/App/DeleteConfig.php',  | 
                                                        |
| 1268 | + 'OC\\Core\\Command\\Config\\App\\GetConfig' => __DIR__.'/../../..'.'/core/Command/Config/App/GetConfig.php',  | 
                                                        |
| 1269 | + 'OC\\Core\\Command\\Config\\App\\SetConfig' => __DIR__.'/../../..'.'/core/Command/Config/App/SetConfig.php',  | 
                                                        |
| 1270 | + 'OC\\Core\\Command\\Config\\Import' => __DIR__.'/../../..'.'/core/Command/Config/Import.php',  | 
                                                        |
| 1271 | + 'OC\\Core\\Command\\Config\\ListConfigs' => __DIR__.'/../../..'.'/core/Command/Config/ListConfigs.php',  | 
                                                        |
| 1272 | + 'OC\\Core\\Command\\Config\\System\\Base' => __DIR__.'/../../..'.'/core/Command/Config/System/Base.php',  | 
                                                        |
| 1273 | + 'OC\\Core\\Command\\Config\\System\\DeleteConfig' => __DIR__.'/../../..'.'/core/Command/Config/System/DeleteConfig.php',  | 
                                                        |
| 1274 | + 'OC\\Core\\Command\\Config\\System\\GetConfig' => __DIR__.'/../../..'.'/core/Command/Config/System/GetConfig.php',  | 
                                                        |
| 1275 | + 'OC\\Core\\Command\\Config\\System\\SetConfig' => __DIR__.'/../../..'.'/core/Command/Config/System/SetConfig.php',  | 
                                                        |
| 1276 | + 'OC\\Core\\Command\\Db\\AddMissingColumns' => __DIR__.'/../../..'.'/core/Command/Db/AddMissingColumns.php',  | 
                                                        |
| 1277 | + 'OC\\Core\\Command\\Db\\AddMissingIndices' => __DIR__.'/../../..'.'/core/Command/Db/AddMissingIndices.php',  | 
                                                        |
| 1278 | + 'OC\\Core\\Command\\Db\\AddMissingPrimaryKeys' => __DIR__.'/../../..'.'/core/Command/Db/AddMissingPrimaryKeys.php',  | 
                                                        |
| 1279 | + 'OC\\Core\\Command\\Db\\ConvertFilecacheBigInt' => __DIR__.'/../../..'.'/core/Command/Db/ConvertFilecacheBigInt.php',  | 
                                                        |
| 1280 | + 'OC\\Core\\Command\\Db\\ConvertMysqlToMB4' => __DIR__.'/../../..'.'/core/Command/Db/ConvertMysqlToMB4.php',  | 
                                                        |
| 1281 | + 'OC\\Core\\Command\\Db\\ConvertType' => __DIR__.'/../../..'.'/core/Command/Db/ConvertType.php',  | 
                                                        |
| 1282 | + 'OC\\Core\\Command\\Db\\ExpectedSchema' => __DIR__.'/../../..'.'/core/Command/Db/ExpectedSchema.php',  | 
                                                        |
| 1283 | + 'OC\\Core\\Command\\Db\\ExportSchema' => __DIR__.'/../../..'.'/core/Command/Db/ExportSchema.php',  | 
                                                        |
| 1284 | + 'OC\\Core\\Command\\Db\\Migrations\\ExecuteCommand' => __DIR__.'/../../..'.'/core/Command/Db/Migrations/ExecuteCommand.php',  | 
                                                        |
| 1285 | + 'OC\\Core\\Command\\Db\\Migrations\\GenerateCommand' => __DIR__.'/../../..'.'/core/Command/Db/Migrations/GenerateCommand.php',  | 
                                                        |
| 1286 | + 'OC\\Core\\Command\\Db\\Migrations\\GenerateMetadataCommand' => __DIR__.'/../../..'.'/core/Command/Db/Migrations/GenerateMetadataCommand.php',  | 
                                                        |
| 1287 | + 'OC\\Core\\Command\\Db\\Migrations\\MigrateCommand' => __DIR__.'/../../..'.'/core/Command/Db/Migrations/MigrateCommand.php',  | 
                                                        |
| 1288 | + 'OC\\Core\\Command\\Db\\Migrations\\PreviewCommand' => __DIR__.'/../../..'.'/core/Command/Db/Migrations/PreviewCommand.php',  | 
                                                        |
| 1289 | + 'OC\\Core\\Command\\Db\\Migrations\\StatusCommand' => __DIR__.'/../../..'.'/core/Command/Db/Migrations/StatusCommand.php',  | 
                                                        |
| 1290 | + 'OC\\Core\\Command\\Db\\SchemaEncoder' => __DIR__.'/../../..'.'/core/Command/Db/SchemaEncoder.php',  | 
                                                        |
| 1291 | + 'OC\\Core\\Command\\Encryption\\ChangeKeyStorageRoot' => __DIR__.'/../../..'.'/core/Command/Encryption/ChangeKeyStorageRoot.php',  | 
                                                        |
| 1292 | + 'OC\\Core\\Command\\Encryption\\DecryptAll' => __DIR__.'/../../..'.'/core/Command/Encryption/DecryptAll.php',  | 
                                                        |
| 1293 | + 'OC\\Core\\Command\\Encryption\\Disable' => __DIR__.'/../../..'.'/core/Command/Encryption/Disable.php',  | 
                                                        |
| 1294 | + 'OC\\Core\\Command\\Encryption\\Enable' => __DIR__.'/../../..'.'/core/Command/Encryption/Enable.php',  | 
                                                        |
| 1295 | + 'OC\\Core\\Command\\Encryption\\EncryptAll' => __DIR__.'/../../..'.'/core/Command/Encryption/EncryptAll.php',  | 
                                                        |
| 1296 | + 'OC\\Core\\Command\\Encryption\\ListModules' => __DIR__.'/../../..'.'/core/Command/Encryption/ListModules.php',  | 
                                                        |
| 1297 | + 'OC\\Core\\Command\\Encryption\\MigrateKeyStorage' => __DIR__.'/../../..'.'/core/Command/Encryption/MigrateKeyStorage.php',  | 
                                                        |
| 1298 | + 'OC\\Core\\Command\\Encryption\\SetDefaultModule' => __DIR__.'/../../..'.'/core/Command/Encryption/SetDefaultModule.php',  | 
                                                        |
| 1299 | + 'OC\\Core\\Command\\Encryption\\ShowKeyStorageRoot' => __DIR__.'/../../..'.'/core/Command/Encryption/ShowKeyStorageRoot.php',  | 
                                                        |
| 1300 | + 'OC\\Core\\Command\\Encryption\\Status' => __DIR__.'/../../..'.'/core/Command/Encryption/Status.php',  | 
                                                        |
| 1301 | + 'OC\\Core\\Command\\FilesMetadata\\Get' => __DIR__.'/../../..'.'/core/Command/FilesMetadata/Get.php',  | 
                                                        |
| 1302 | + 'OC\\Core\\Command\\Group\\Add' => __DIR__.'/../../..'.'/core/Command/Group/Add.php',  | 
                                                        |
| 1303 | + 'OC\\Core\\Command\\Group\\AddUser' => __DIR__.'/../../..'.'/core/Command/Group/AddUser.php',  | 
                                                        |
| 1304 | + 'OC\\Core\\Command\\Group\\Delete' => __DIR__.'/../../..'.'/core/Command/Group/Delete.php',  | 
                                                        |
| 1305 | + 'OC\\Core\\Command\\Group\\Info' => __DIR__.'/../../..'.'/core/Command/Group/Info.php',  | 
                                                        |
| 1306 | + 'OC\\Core\\Command\\Group\\ListCommand' => __DIR__.'/../../..'.'/core/Command/Group/ListCommand.php',  | 
                                                        |
| 1307 | + 'OC\\Core\\Command\\Group\\RemoveUser' => __DIR__.'/../../..'.'/core/Command/Group/RemoveUser.php',  | 
                                                        |
| 1308 | + 'OC\\Core\\Command\\Info\\File' => __DIR__.'/../../..'.'/core/Command/Info/File.php',  | 
                                                        |
| 1309 | + 'OC\\Core\\Command\\Info\\FileUtils' => __DIR__.'/../../..'.'/core/Command/Info/FileUtils.php',  | 
                                                        |
| 1310 | + 'OC\\Core\\Command\\Info\\Space' => __DIR__.'/../../..'.'/core/Command/Info/Space.php',  | 
                                                        |
| 1311 | + 'OC\\Core\\Command\\Integrity\\CheckApp' => __DIR__.'/../../..'.'/core/Command/Integrity/CheckApp.php',  | 
                                                        |
| 1312 | + 'OC\\Core\\Command\\Integrity\\CheckCore' => __DIR__.'/../../..'.'/core/Command/Integrity/CheckCore.php',  | 
                                                        |
| 1313 | + 'OC\\Core\\Command\\Integrity\\SignApp' => __DIR__.'/../../..'.'/core/Command/Integrity/SignApp.php',  | 
                                                        |
| 1314 | + 'OC\\Core\\Command\\Integrity\\SignCore' => __DIR__.'/../../..'.'/core/Command/Integrity/SignCore.php',  | 
                                                        |
| 1315 | + 'OC\\Core\\Command\\InterruptedException' => __DIR__.'/../../..'.'/core/Command/InterruptedException.php',  | 
                                                        |
| 1316 | + 'OC\\Core\\Command\\L10n\\CreateJs' => __DIR__.'/../../..'.'/core/Command/L10n/CreateJs.php',  | 
                                                        |
| 1317 | + 'OC\\Core\\Command\\Log\\File' => __DIR__.'/../../..'.'/core/Command/Log/File.php',  | 
                                                        |
| 1318 | + 'OC\\Core\\Command\\Log\\Manage' => __DIR__.'/../../..'.'/core/Command/Log/Manage.php',  | 
                                                        |
| 1319 | + 'OC\\Core\\Command\\Maintenance\\DataFingerprint' => __DIR__.'/../../..'.'/core/Command/Maintenance/DataFingerprint.php',  | 
                                                        |
| 1320 | + 'OC\\Core\\Command\\Maintenance\\Install' => __DIR__.'/../../..'.'/core/Command/Maintenance/Install.php',  | 
                                                        |
| 1321 | + 'OC\\Core\\Command\\Maintenance\\Mimetype\\GenerateMimetypeFileBuilder' => __DIR__.'/../../..'.'/core/Command/Maintenance/Mimetype/GenerateMimetypeFileBuilder.php',  | 
                                                        |
| 1322 | + 'OC\\Core\\Command\\Maintenance\\Mimetype\\UpdateDB' => __DIR__.'/../../..'.'/core/Command/Maintenance/Mimetype/UpdateDB.php',  | 
                                                        |
| 1323 | + 'OC\\Core\\Command\\Maintenance\\Mimetype\\UpdateJS' => __DIR__.'/../../..'.'/core/Command/Maintenance/Mimetype/UpdateJS.php',  | 
                                                        |
| 1324 | + 'OC\\Core\\Command\\Maintenance\\Mode' => __DIR__.'/../../..'.'/core/Command/Maintenance/Mode.php',  | 
                                                        |
| 1325 | + 'OC\\Core\\Command\\Maintenance\\Repair' => __DIR__.'/../../..'.'/core/Command/Maintenance/Repair.php',  | 
                                                        |
| 1326 | + 'OC\\Core\\Command\\Maintenance\\RepairShareOwnership' => __DIR__.'/../../..'.'/core/Command/Maintenance/RepairShareOwnership.php',  | 
                                                        |
| 1327 | + 'OC\\Core\\Command\\Maintenance\\UpdateHtaccess' => __DIR__.'/../../..'.'/core/Command/Maintenance/UpdateHtaccess.php',  | 
                                                        |
| 1328 | + 'OC\\Core\\Command\\Maintenance\\UpdateTheme' => __DIR__.'/../../..'.'/core/Command/Maintenance/UpdateTheme.php',  | 
                                                        |
| 1329 | + 'OC\\Core\\Command\\Memcache\\RedisCommand' => __DIR__.'/../../..'.'/core/Command/Memcache/RedisCommand.php',  | 
                                                        |
| 1330 | + 'OC\\Core\\Command\\Preview\\Cleanup' => __DIR__.'/../../..'.'/core/Command/Preview/Cleanup.php',  | 
                                                        |
| 1331 | + 'OC\\Core\\Command\\Preview\\Generate' => __DIR__.'/../../..'.'/core/Command/Preview/Generate.php',  | 
                                                        |
| 1332 | + 'OC\\Core\\Command\\Preview\\Repair' => __DIR__.'/../../..'.'/core/Command/Preview/Repair.php',  | 
                                                        |
| 1333 | + 'OC\\Core\\Command\\Preview\\ResetRenderedTexts' => __DIR__.'/../../..'.'/core/Command/Preview/ResetRenderedTexts.php',  | 
                                                        |
| 1334 | + 'OC\\Core\\Command\\Security\\BruteforceAttempts' => __DIR__.'/../../..'.'/core/Command/Security/BruteforceAttempts.php',  | 
                                                        |
| 1335 | + 'OC\\Core\\Command\\Security\\BruteforceResetAttempts' => __DIR__.'/../../..'.'/core/Command/Security/BruteforceResetAttempts.php',  | 
                                                        |
| 1336 | + 'OC\\Core\\Command\\Security\\ExportCertificates' => __DIR__.'/../../..'.'/core/Command/Security/ExportCertificates.php',  | 
                                                        |
| 1337 | + 'OC\\Core\\Command\\Security\\ImportCertificate' => __DIR__.'/../../..'.'/core/Command/Security/ImportCertificate.php',  | 
                                                        |
| 1338 | + 'OC\\Core\\Command\\Security\\ListCertificates' => __DIR__.'/../../..'.'/core/Command/Security/ListCertificates.php',  | 
                                                        |
| 1339 | + 'OC\\Core\\Command\\Security\\RemoveCertificate' => __DIR__.'/../../..'.'/core/Command/Security/RemoveCertificate.php',  | 
                                                        |
| 1340 | + 'OC\\Core\\Command\\SetupChecks' => __DIR__.'/../../..'.'/core/Command/SetupChecks.php',  | 
                                                        |
| 1341 | + 'OC\\Core\\Command\\Status' => __DIR__.'/../../..'.'/core/Command/Status.php',  | 
                                                        |
| 1342 | + 'OC\\Core\\Command\\SystemTag\\Add' => __DIR__.'/../../..'.'/core/Command/SystemTag/Add.php',  | 
                                                        |
| 1343 | + 'OC\\Core\\Command\\SystemTag\\Delete' => __DIR__.'/../../..'.'/core/Command/SystemTag/Delete.php',  | 
                                                        |
| 1344 | + 'OC\\Core\\Command\\SystemTag\\Edit' => __DIR__.'/../../..'.'/core/Command/SystemTag/Edit.php',  | 
                                                        |
| 1345 | + 'OC\\Core\\Command\\SystemTag\\ListCommand' => __DIR__.'/../../..'.'/core/Command/SystemTag/ListCommand.php',  | 
                                                        |
| 1346 | + 'OC\\Core\\Command\\TaskProcessing\\EnabledCommand' => __DIR__.'/../../..'.'/core/Command/TaskProcessing/EnabledCommand.php',  | 
                                                        |
| 1347 | + 'OC\\Core\\Command\\TaskProcessing\\GetCommand' => __DIR__.'/../../..'.'/core/Command/TaskProcessing/GetCommand.php',  | 
                                                        |
| 1348 | + 'OC\\Core\\Command\\TaskProcessing\\ListCommand' => __DIR__.'/../../..'.'/core/Command/TaskProcessing/ListCommand.php',  | 
                                                        |
| 1349 | + 'OC\\Core\\Command\\TaskProcessing\\Statistics' => __DIR__.'/../../..'.'/core/Command/TaskProcessing/Statistics.php',  | 
                                                        |
| 1350 | + 'OC\\Core\\Command\\TwoFactorAuth\\Base' => __DIR__.'/../../..'.'/core/Command/TwoFactorAuth/Base.php',  | 
                                                        |
| 1351 | + 'OC\\Core\\Command\\TwoFactorAuth\\Cleanup' => __DIR__.'/../../..'.'/core/Command/TwoFactorAuth/Cleanup.php',  | 
                                                        |
| 1352 | + 'OC\\Core\\Command\\TwoFactorAuth\\Disable' => __DIR__.'/../../..'.'/core/Command/TwoFactorAuth/Disable.php',  | 
                                                        |
| 1353 | + 'OC\\Core\\Command\\TwoFactorAuth\\Enable' => __DIR__.'/../../..'.'/core/Command/TwoFactorAuth/Enable.php',  | 
                                                        |
| 1354 | + 'OC\\Core\\Command\\TwoFactorAuth\\Enforce' => __DIR__.'/../../..'.'/core/Command/TwoFactorAuth/Enforce.php',  | 
                                                        |
| 1355 | + 'OC\\Core\\Command\\TwoFactorAuth\\State' => __DIR__.'/../../..'.'/core/Command/TwoFactorAuth/State.php',  | 
                                                        |
| 1356 | + 'OC\\Core\\Command\\Upgrade' => __DIR__.'/../../..'.'/core/Command/Upgrade.php',  | 
                                                        |
| 1357 | + 'OC\\Core\\Command\\User\\Add' => __DIR__.'/../../..'.'/core/Command/User/Add.php',  | 
                                                        |
| 1358 | + 'OC\\Core\\Command\\User\\AuthTokens\\Add' => __DIR__.'/../../..'.'/core/Command/User/AuthTokens/Add.php',  | 
                                                        |
| 1359 | + 'OC\\Core\\Command\\User\\AuthTokens\\Delete' => __DIR__.'/../../..'.'/core/Command/User/AuthTokens/Delete.php',  | 
                                                        |
| 1360 | + 'OC\\Core\\Command\\User\\AuthTokens\\ListCommand' => __DIR__.'/../../..'.'/core/Command/User/AuthTokens/ListCommand.php',  | 
                                                        |
| 1361 | + 'OC\\Core\\Command\\User\\ClearGeneratedAvatarCacheCommand' => __DIR__.'/../../..'.'/core/Command/User/ClearGeneratedAvatarCacheCommand.php',  | 
                                                        |
| 1362 | + 'OC\\Core\\Command\\User\\Delete' => __DIR__.'/../../..'.'/core/Command/User/Delete.php',  | 
                                                        |
| 1363 | + 'OC\\Core\\Command\\User\\Disable' => __DIR__.'/../../..'.'/core/Command/User/Disable.php',  | 
                                                        |
| 1364 | + 'OC\\Core\\Command\\User\\Enable' => __DIR__.'/../../..'.'/core/Command/User/Enable.php',  | 
                                                        |
| 1365 | + 'OC\\Core\\Command\\User\\Info' => __DIR__.'/../../..'.'/core/Command/User/Info.php',  | 
                                                        |
| 1366 | + 'OC\\Core\\Command\\User\\Keys\\Verify' => __DIR__.'/../../..'.'/core/Command/User/Keys/Verify.php',  | 
                                                        |
| 1367 | + 'OC\\Core\\Command\\User\\LastSeen' => __DIR__.'/../../..'.'/core/Command/User/LastSeen.php',  | 
                                                        |
| 1368 | + 'OC\\Core\\Command\\User\\ListCommand' => __DIR__.'/../../..'.'/core/Command/User/ListCommand.php',  | 
                                                        |
| 1369 | + 'OC\\Core\\Command\\User\\Report' => __DIR__.'/../../..'.'/core/Command/User/Report.php',  | 
                                                        |
| 1370 | + 'OC\\Core\\Command\\User\\ResetPassword' => __DIR__.'/../../..'.'/core/Command/User/ResetPassword.php',  | 
                                                        |
| 1371 | + 'OC\\Core\\Command\\User\\Setting' => __DIR__.'/../../..'.'/core/Command/User/Setting.php',  | 
                                                        |
| 1372 | + 'OC\\Core\\Command\\User\\SyncAccountDataCommand' => __DIR__.'/../../..'.'/core/Command/User/SyncAccountDataCommand.php',  | 
                                                        |
| 1373 | + 'OC\\Core\\Command\\User\\Welcome' => __DIR__.'/../../..'.'/core/Command/User/Welcome.php',  | 
                                                        |
| 1374 | + 'OC\\Core\\Controller\\AppPasswordController' => __DIR__.'/../../..'.'/core/Controller/AppPasswordController.php',  | 
                                                        |
| 1375 | + 'OC\\Core\\Controller\\AutoCompleteController' => __DIR__.'/../../..'.'/core/Controller/AutoCompleteController.php',  | 
                                                        |
| 1376 | + 'OC\\Core\\Controller\\AvatarController' => __DIR__.'/../../..'.'/core/Controller/AvatarController.php',  | 
                                                        |
| 1377 | + 'OC\\Core\\Controller\\CSRFTokenController' => __DIR__.'/../../..'.'/core/Controller/CSRFTokenController.php',  | 
                                                        |
| 1378 | + 'OC\\Core\\Controller\\ClientFlowLoginController' => __DIR__.'/../../..'.'/core/Controller/ClientFlowLoginController.php',  | 
                                                        |
| 1379 | + 'OC\\Core\\Controller\\ClientFlowLoginV2Controller' => __DIR__.'/../../..'.'/core/Controller/ClientFlowLoginV2Controller.php',  | 
                                                        |
| 1380 | + 'OC\\Core\\Controller\\CollaborationResourcesController' => __DIR__.'/../../..'.'/core/Controller/CollaborationResourcesController.php',  | 
                                                        |
| 1381 | + 'OC\\Core\\Controller\\ContactsMenuController' => __DIR__.'/../../..'.'/core/Controller/ContactsMenuController.php',  | 
                                                        |
| 1382 | + 'OC\\Core\\Controller\\CssController' => __DIR__.'/../../..'.'/core/Controller/CssController.php',  | 
                                                        |
| 1383 | + 'OC\\Core\\Controller\\ErrorController' => __DIR__.'/../../..'.'/core/Controller/ErrorController.php',  | 
                                                        |
| 1384 | + 'OC\\Core\\Controller\\GuestAvatarController' => __DIR__.'/../../..'.'/core/Controller/GuestAvatarController.php',  | 
                                                        |
| 1385 | + 'OC\\Core\\Controller\\HoverCardController' => __DIR__.'/../../..'.'/core/Controller/HoverCardController.php',  | 
                                                        |
| 1386 | + 'OC\\Core\\Controller\\JsController' => __DIR__.'/../../..'.'/core/Controller/JsController.php',  | 
                                                        |
| 1387 | + 'OC\\Core\\Controller\\LoginController' => __DIR__.'/../../..'.'/core/Controller/LoginController.php',  | 
                                                        |
| 1388 | + 'OC\\Core\\Controller\\LostController' => __DIR__.'/../../..'.'/core/Controller/LostController.php',  | 
                                                        |
| 1389 | + 'OC\\Core\\Controller\\NavigationController' => __DIR__.'/../../..'.'/core/Controller/NavigationController.php',  | 
                                                        |
| 1390 | + 'OC\\Core\\Controller\\OCJSController' => __DIR__.'/../../..'.'/core/Controller/OCJSController.php',  | 
                                                        |
| 1391 | + 'OC\\Core\\Controller\\OCMController' => __DIR__.'/../../..'.'/core/Controller/OCMController.php',  | 
                                                        |
| 1392 | + 'OC\\Core\\Controller\\OCSController' => __DIR__.'/../../..'.'/core/Controller/OCSController.php',  | 
                                                        |
| 1393 | + 'OC\\Core\\Controller\\PreviewController' => __DIR__.'/../../..'.'/core/Controller/PreviewController.php',  | 
                                                        |
| 1394 | + 'OC\\Core\\Controller\\ProfileApiController' => __DIR__.'/../../..'.'/core/Controller/ProfileApiController.php',  | 
                                                        |
| 1395 | + 'OC\\Core\\Controller\\RecommendedAppsController' => __DIR__.'/../../..'.'/core/Controller/RecommendedAppsController.php',  | 
                                                        |
| 1396 | + 'OC\\Core\\Controller\\ReferenceApiController' => __DIR__.'/../../..'.'/core/Controller/ReferenceApiController.php',  | 
                                                        |
| 1397 | + 'OC\\Core\\Controller\\ReferenceController' => __DIR__.'/../../..'.'/core/Controller/ReferenceController.php',  | 
                                                        |
| 1398 | + 'OC\\Core\\Controller\\SetupController' => __DIR__.'/../../..'.'/core/Controller/SetupController.php',  | 
                                                        |
| 1399 | + 'OC\\Core\\Controller\\TaskProcessingApiController' => __DIR__.'/../../..'.'/core/Controller/TaskProcessingApiController.php',  | 
                                                        |
| 1400 | + 'OC\\Core\\Controller\\TeamsApiController' => __DIR__.'/../../..'.'/core/Controller/TeamsApiController.php',  | 
                                                        |
| 1401 | + 'OC\\Core\\Controller\\TextProcessingApiController' => __DIR__.'/../../..'.'/core/Controller/TextProcessingApiController.php',  | 
                                                        |
| 1402 | + 'OC\\Core\\Controller\\TextToImageApiController' => __DIR__.'/../../..'.'/core/Controller/TextToImageApiController.php',  | 
                                                        |
| 1403 | + 'OC\\Core\\Controller\\TranslationApiController' => __DIR__.'/../../..'.'/core/Controller/TranslationApiController.php',  | 
                                                        |
| 1404 | + 'OC\\Core\\Controller\\TwoFactorApiController' => __DIR__.'/../../..'.'/core/Controller/TwoFactorApiController.php',  | 
                                                        |
| 1405 | + 'OC\\Core\\Controller\\TwoFactorChallengeController' => __DIR__.'/../../..'.'/core/Controller/TwoFactorChallengeController.php',  | 
                                                        |
| 1406 | + 'OC\\Core\\Controller\\UnifiedSearchController' => __DIR__.'/../../..'.'/core/Controller/UnifiedSearchController.php',  | 
                                                        |
| 1407 | + 'OC\\Core\\Controller\\UnsupportedBrowserController' => __DIR__.'/../../..'.'/core/Controller/UnsupportedBrowserController.php',  | 
                                                        |
| 1408 | + 'OC\\Core\\Controller\\UserController' => __DIR__.'/../../..'.'/core/Controller/UserController.php',  | 
                                                        |
| 1409 | + 'OC\\Core\\Controller\\WalledGardenController' => __DIR__.'/../../..'.'/core/Controller/WalledGardenController.php',  | 
                                                        |
| 1410 | + 'OC\\Core\\Controller\\WebAuthnController' => __DIR__.'/../../..'.'/core/Controller/WebAuthnController.php',  | 
                                                        |
| 1411 | + 'OC\\Core\\Controller\\WellKnownController' => __DIR__.'/../../..'.'/core/Controller/WellKnownController.php',  | 
                                                        |
| 1412 | + 'OC\\Core\\Controller\\WhatsNewController' => __DIR__.'/../../..'.'/core/Controller/WhatsNewController.php',  | 
                                                        |
| 1413 | + 'OC\\Core\\Controller\\WipeController' => __DIR__.'/../../..'.'/core/Controller/WipeController.php',  | 
                                                        |
| 1414 | + 'OC\\Core\\Data\\LoginFlowV2Credentials' => __DIR__.'/../../..'.'/core/Data/LoginFlowV2Credentials.php',  | 
                                                        |
| 1415 | + 'OC\\Core\\Data\\LoginFlowV2Tokens' => __DIR__.'/../../..'.'/core/Data/LoginFlowV2Tokens.php',  | 
                                                        |
| 1416 | + 'OC\\Core\\Db\\LoginFlowV2' => __DIR__.'/../../..'.'/core/Db/LoginFlowV2.php',  | 
                                                        |
| 1417 | + 'OC\\Core\\Db\\LoginFlowV2Mapper' => __DIR__.'/../../..'.'/core/Db/LoginFlowV2Mapper.php',  | 
                                                        |
| 1418 | + 'OC\\Core\\Db\\ProfileConfig' => __DIR__.'/../../..'.'/core/Db/ProfileConfig.php',  | 
                                                        |
| 1419 | + 'OC\\Core\\Db\\ProfileConfigMapper' => __DIR__.'/../../..'.'/core/Db/ProfileConfigMapper.php',  | 
                                                        |
| 1420 | + 'OC\\Core\\Events\\BeforePasswordResetEvent' => __DIR__.'/../../..'.'/core/Events/BeforePasswordResetEvent.php',  | 
                                                        |
| 1421 | + 'OC\\Core\\Events\\PasswordResetEvent' => __DIR__.'/../../..'.'/core/Events/PasswordResetEvent.php',  | 
                                                        |
| 1422 | + 'OC\\Core\\Exception\\LoginFlowV2NotFoundException' => __DIR__.'/../../..'.'/core/Exception/LoginFlowV2NotFoundException.php',  | 
                                                        |
| 1423 | + 'OC\\Core\\Exception\\ResetPasswordException' => __DIR__.'/../../..'.'/core/Exception/ResetPasswordException.php',  | 
                                                        |
| 1424 | + 'OC\\Core\\Listener\\BeforeMessageLoggedEventListener' => __DIR__.'/../../..'.'/core/Listener/BeforeMessageLoggedEventListener.php',  | 
                                                        |
| 1425 | + 'OC\\Core\\Listener\\BeforeTemplateRenderedListener' => __DIR__.'/../../..'.'/core/Listener/BeforeTemplateRenderedListener.php',  | 
                                                        |
| 1426 | + 'OC\\Core\\Middleware\\TwoFactorMiddleware' => __DIR__.'/../../..'.'/core/Middleware/TwoFactorMiddleware.php',  | 
                                                        |
| 1427 | + 'OC\\Core\\Migrations\\Version13000Date20170705121758' => __DIR__.'/../../..'.'/core/Migrations/Version13000Date20170705121758.php',  | 
                                                        |
| 1428 | + 'OC\\Core\\Migrations\\Version13000Date20170718121200' => __DIR__.'/../../..'.'/core/Migrations/Version13000Date20170718121200.php',  | 
                                                        |
| 1429 | + 'OC\\Core\\Migrations\\Version13000Date20170814074715' => __DIR__.'/../../..'.'/core/Migrations/Version13000Date20170814074715.php',  | 
                                                        |
| 1430 | + 'OC\\Core\\Migrations\\Version13000Date20170919121250' => __DIR__.'/../../..'.'/core/Migrations/Version13000Date20170919121250.php',  | 
                                                        |
| 1431 | + 'OC\\Core\\Migrations\\Version13000Date20170926101637' => __DIR__.'/../../..'.'/core/Migrations/Version13000Date20170926101637.php',  | 
                                                        |
| 1432 | + 'OC\\Core\\Migrations\\Version14000Date20180129121024' => __DIR__.'/../../..'.'/core/Migrations/Version14000Date20180129121024.php',  | 
                                                        |
| 1433 | + 'OC\\Core\\Migrations\\Version14000Date20180404140050' => __DIR__.'/../../..'.'/core/Migrations/Version14000Date20180404140050.php',  | 
                                                        |
| 1434 | + 'OC\\Core\\Migrations\\Version14000Date20180516101403' => __DIR__.'/../../..'.'/core/Migrations/Version14000Date20180516101403.php',  | 
                                                        |
| 1435 | + 'OC\\Core\\Migrations\\Version14000Date20180518120534' => __DIR__.'/../../..'.'/core/Migrations/Version14000Date20180518120534.php',  | 
                                                        |
| 1436 | + 'OC\\Core\\Migrations\\Version14000Date20180522074438' => __DIR__.'/../../..'.'/core/Migrations/Version14000Date20180522074438.php',  | 
                                                        |
| 1437 | + 'OC\\Core\\Migrations\\Version14000Date20180626223656' => __DIR__.'/../../..'.'/core/Migrations/Version14000Date20180626223656.php',  | 
                                                        |
| 1438 | + 'OC\\Core\\Migrations\\Version14000Date20180710092004' => __DIR__.'/../../..'.'/core/Migrations/Version14000Date20180710092004.php',  | 
                                                        |
| 1439 | + 'OC\\Core\\Migrations\\Version14000Date20180712153140' => __DIR__.'/../../..'.'/core/Migrations/Version14000Date20180712153140.php',  | 
                                                        |
| 1440 | + 'OC\\Core\\Migrations\\Version15000Date20180926101451' => __DIR__.'/../../..'.'/core/Migrations/Version15000Date20180926101451.php',  | 
                                                        |
| 1441 | + 'OC\\Core\\Migrations\\Version15000Date20181015062942' => __DIR__.'/../../..'.'/core/Migrations/Version15000Date20181015062942.php',  | 
                                                        |
| 1442 | + 'OC\\Core\\Migrations\\Version15000Date20181029084625' => __DIR__.'/../../..'.'/core/Migrations/Version15000Date20181029084625.php',  | 
                                                        |
| 1443 | + 'OC\\Core\\Migrations\\Version16000Date20190207141427' => __DIR__.'/../../..'.'/core/Migrations/Version16000Date20190207141427.php',  | 
                                                        |
| 1444 | + 'OC\\Core\\Migrations\\Version16000Date20190212081545' => __DIR__.'/../../..'.'/core/Migrations/Version16000Date20190212081545.php',  | 
                                                        |
| 1445 | + 'OC\\Core\\Migrations\\Version16000Date20190427105638' => __DIR__.'/../../..'.'/core/Migrations/Version16000Date20190427105638.php',  | 
                                                        |
| 1446 | + 'OC\\Core\\Migrations\\Version16000Date20190428150708' => __DIR__.'/../../..'.'/core/Migrations/Version16000Date20190428150708.php',  | 
                                                        |
| 1447 | + 'OC\\Core\\Migrations\\Version17000Date20190514105811' => __DIR__.'/../../..'.'/core/Migrations/Version17000Date20190514105811.php',  | 
                                                        |
| 1448 | + 'OC\\Core\\Migrations\\Version18000Date20190920085628' => __DIR__.'/../../..'.'/core/Migrations/Version18000Date20190920085628.php',  | 
                                                        |
| 1449 | + 'OC\\Core\\Migrations\\Version18000Date20191014105105' => __DIR__.'/../../..'.'/core/Migrations/Version18000Date20191014105105.php',  | 
                                                        |
| 1450 | + 'OC\\Core\\Migrations\\Version18000Date20191204114856' => __DIR__.'/../../..'.'/core/Migrations/Version18000Date20191204114856.php',  | 
                                                        |
| 1451 | + 'OC\\Core\\Migrations\\Version19000Date20200211083441' => __DIR__.'/../../..'.'/core/Migrations/Version19000Date20200211083441.php',  | 
                                                        |
| 1452 | + 'OC\\Core\\Migrations\\Version20000Date20201109081915' => __DIR__.'/../../..'.'/core/Migrations/Version20000Date20201109081915.php',  | 
                                                        |
| 1453 | + 'OC\\Core\\Migrations\\Version20000Date20201109081918' => __DIR__.'/../../..'.'/core/Migrations/Version20000Date20201109081918.php',  | 
                                                        |
| 1454 | + 'OC\\Core\\Migrations\\Version20000Date20201109081919' => __DIR__.'/../../..'.'/core/Migrations/Version20000Date20201109081919.php',  | 
                                                        |
| 1455 | + 'OC\\Core\\Migrations\\Version20000Date20201111081915' => __DIR__.'/../../..'.'/core/Migrations/Version20000Date20201111081915.php',  | 
                                                        |
| 1456 | + 'OC\\Core\\Migrations\\Version21000Date20201120141228' => __DIR__.'/../../..'.'/core/Migrations/Version21000Date20201120141228.php',  | 
                                                        |
| 1457 | + 'OC\\Core\\Migrations\\Version21000Date20201202095923' => __DIR__.'/../../..'.'/core/Migrations/Version21000Date20201202095923.php',  | 
                                                        |
| 1458 | + 'OC\\Core\\Migrations\\Version21000Date20210119195004' => __DIR__.'/../../..'.'/core/Migrations/Version21000Date20210119195004.php',  | 
                                                        |
| 1459 | + 'OC\\Core\\Migrations\\Version21000Date20210309185126' => __DIR__.'/../../..'.'/core/Migrations/Version21000Date20210309185126.php',  | 
                                                        |
| 1460 | + 'OC\\Core\\Migrations\\Version21000Date20210309185127' => __DIR__.'/../../..'.'/core/Migrations/Version21000Date20210309185127.php',  | 
                                                        |
| 1461 | + 'OC\\Core\\Migrations\\Version22000Date20210216080825' => __DIR__.'/../../..'.'/core/Migrations/Version22000Date20210216080825.php',  | 
                                                        |
| 1462 | + 'OC\\Core\\Migrations\\Version23000Date20210721100600' => __DIR__.'/../../..'.'/core/Migrations/Version23000Date20210721100600.php',  | 
                                                        |
| 1463 | + 'OC\\Core\\Migrations\\Version23000Date20210906132259' => __DIR__.'/../../..'.'/core/Migrations/Version23000Date20210906132259.php',  | 
                                                        |
| 1464 | + 'OC\\Core\\Migrations\\Version23000Date20210930122352' => __DIR__.'/../../..'.'/core/Migrations/Version23000Date20210930122352.php',  | 
                                                        |
| 1465 | + 'OC\\Core\\Migrations\\Version23000Date20211203110726' => __DIR__.'/../../..'.'/core/Migrations/Version23000Date20211203110726.php',  | 
                                                        |
| 1466 | + 'OC\\Core\\Migrations\\Version23000Date20211213203940' => __DIR__.'/../../..'.'/core/Migrations/Version23000Date20211213203940.php',  | 
                                                        |
| 1467 | + 'OC\\Core\\Migrations\\Version24000Date20211210141942' => __DIR__.'/../../..'.'/core/Migrations/Version24000Date20211210141942.php',  | 
                                                        |
| 1468 | + 'OC\\Core\\Migrations\\Version24000Date20211213081506' => __DIR__.'/../../..'.'/core/Migrations/Version24000Date20211213081506.php',  | 
                                                        |
| 1469 | + 'OC\\Core\\Migrations\\Version24000Date20211213081604' => __DIR__.'/../../..'.'/core/Migrations/Version24000Date20211213081604.php',  | 
                                                        |
| 1470 | + 'OC\\Core\\Migrations\\Version24000Date20211222112246' => __DIR__.'/../../..'.'/core/Migrations/Version24000Date20211222112246.php',  | 
                                                        |
| 1471 | + 'OC\\Core\\Migrations\\Version24000Date20211230140012' => __DIR__.'/../../..'.'/core/Migrations/Version24000Date20211230140012.php',  | 
                                                        |
| 1472 | + 'OC\\Core\\Migrations\\Version24000Date20220131153041' => __DIR__.'/../../..'.'/core/Migrations/Version24000Date20220131153041.php',  | 
                                                        |
| 1473 | + 'OC\\Core\\Migrations\\Version24000Date20220202150027' => __DIR__.'/../../..'.'/core/Migrations/Version24000Date20220202150027.php',  | 
                                                        |
| 1474 | + 'OC\\Core\\Migrations\\Version24000Date20220404230027' => __DIR__.'/../../..'.'/core/Migrations/Version24000Date20220404230027.php',  | 
                                                        |
| 1475 | + 'OC\\Core\\Migrations\\Version24000Date20220425072957' => __DIR__.'/../../..'.'/core/Migrations/Version24000Date20220425072957.php',  | 
                                                        |
| 1476 | + 'OC\\Core\\Migrations\\Version25000Date20220515204012' => __DIR__.'/../../..'.'/core/Migrations/Version25000Date20220515204012.php',  | 
                                                        |
| 1477 | + 'OC\\Core\\Migrations\\Version25000Date20220602190540' => __DIR__.'/../../..'.'/core/Migrations/Version25000Date20220602190540.php',  | 
                                                        |
| 1478 | + 'OC\\Core\\Migrations\\Version25000Date20220905140840' => __DIR__.'/../../..'.'/core/Migrations/Version25000Date20220905140840.php',  | 
                                                        |
| 1479 | + 'OC\\Core\\Migrations\\Version25000Date20221007010957' => __DIR__.'/../../..'.'/core/Migrations/Version25000Date20221007010957.php',  | 
                                                        |
| 1480 | + 'OC\\Core\\Migrations\\Version27000Date20220613163520' => __DIR__.'/../../..'.'/core/Migrations/Version27000Date20220613163520.php',  | 
                                                        |
| 1481 | + 'OC\\Core\\Migrations\\Version27000Date20230309104325' => __DIR__.'/../../..'.'/core/Migrations/Version27000Date20230309104325.php',  | 
                                                        |
| 1482 | + 'OC\\Core\\Migrations\\Version27000Date20230309104802' => __DIR__.'/../../..'.'/core/Migrations/Version27000Date20230309104802.php',  | 
                                                        |
| 1483 | + 'OC\\Core\\Migrations\\Version28000Date20230616104802' => __DIR__.'/../../..'.'/core/Migrations/Version28000Date20230616104802.php',  | 
                                                        |
| 1484 | + 'OC\\Core\\Migrations\\Version28000Date20230728104802' => __DIR__.'/../../..'.'/core/Migrations/Version28000Date20230728104802.php',  | 
                                                        |
| 1485 | + 'OC\\Core\\Migrations\\Version28000Date20230803221055' => __DIR__.'/../../..'.'/core/Migrations/Version28000Date20230803221055.php',  | 
                                                        |
| 1486 | + 'OC\\Core\\Migrations\\Version28000Date20230906104802' => __DIR__.'/../../..'.'/core/Migrations/Version28000Date20230906104802.php',  | 
                                                        |
| 1487 | + 'OC\\Core\\Migrations\\Version28000Date20231004103301' => __DIR__.'/../../..'.'/core/Migrations/Version28000Date20231004103301.php',  | 
                                                        |
| 1488 | + 'OC\\Core\\Migrations\\Version28000Date20231103104802' => __DIR__.'/../../..'.'/core/Migrations/Version28000Date20231103104802.php',  | 
                                                        |
| 1489 | + 'OC\\Core\\Migrations\\Version28000Date20231126110901' => __DIR__.'/../../..'.'/core/Migrations/Version28000Date20231126110901.php',  | 
                                                        |
| 1490 | + 'OC\\Core\\Migrations\\Version28000Date20240828142927' => __DIR__.'/../../..'.'/core/Migrations/Version28000Date20240828142927.php',  | 
                                                        |
| 1491 | + 'OC\\Core\\Migrations\\Version29000Date20231126110901' => __DIR__.'/../../..'.'/core/Migrations/Version29000Date20231126110901.php',  | 
                                                        |
| 1492 | + 'OC\\Core\\Migrations\\Version29000Date20231213104850' => __DIR__.'/../../..'.'/core/Migrations/Version29000Date20231213104850.php',  | 
                                                        |
| 1493 | + 'OC\\Core\\Migrations\\Version29000Date20240124132201' => __DIR__.'/../../..'.'/core/Migrations/Version29000Date20240124132201.php',  | 
                                                        |
| 1494 | + 'OC\\Core\\Migrations\\Version29000Date20240124132202' => __DIR__.'/../../..'.'/core/Migrations/Version29000Date20240124132202.php',  | 
                                                        |
| 1495 | + 'OC\\Core\\Migrations\\Version29000Date20240131122720' => __DIR__.'/../../..'.'/core/Migrations/Version29000Date20240131122720.php',  | 
                                                        |
| 1496 | + 'OC\\Core\\Migrations\\Version30000Date20240429122720' => __DIR__.'/../../..'.'/core/Migrations/Version30000Date20240429122720.php',  | 
                                                        |
| 1497 | + 'OC\\Core\\Migrations\\Version30000Date20240708160048' => __DIR__.'/../../..'.'/core/Migrations/Version30000Date20240708160048.php',  | 
                                                        |
| 1498 | + 'OC\\Core\\Migrations\\Version30000Date20240717111406' => __DIR__.'/../../..'.'/core/Migrations/Version30000Date20240717111406.php',  | 
                                                        |
| 1499 | + 'OC\\Core\\Migrations\\Version30000Date20240814180800' => __DIR__.'/../../..'.'/core/Migrations/Version30000Date20240814180800.php',  | 
                                                        |
| 1500 | + 'OC\\Core\\Migrations\\Version30000Date20240815080800' => __DIR__.'/../../..'.'/core/Migrations/Version30000Date20240815080800.php',  | 
                                                        |
| 1501 | + 'OC\\Core\\Migrations\\Version30000Date20240906095113' => __DIR__.'/../../..'.'/core/Migrations/Version30000Date20240906095113.php',  | 
                                                        |
| 1502 | + 'OC\\Core\\Migrations\\Version31000Date20240101084401' => __DIR__.'/../../..'.'/core/Migrations/Version31000Date20240101084401.php',  | 
                                                        |
| 1503 | + 'OC\\Core\\Migrations\\Version31000Date20240814184402' => __DIR__.'/../../..'.'/core/Migrations/Version31000Date20240814184402.php',  | 
                                                        |
| 1504 | + 'OC\\Core\\Migrations\\Version31000Date20250213102442' => __DIR__.'/../../..'.'/core/Migrations/Version31000Date20250213102442.php',  | 
                                                        |
| 1505 | + 'OC\\Core\\Migrations\\Version32000Date20250402182800' => __DIR__.'/../../..'.'/core/Migrations/Version32000Date20250402182800.php',  | 
                                                        |
| 1506 | + 'OC\\Core\\Notification\\CoreNotifier' => __DIR__.'/../../..'.'/core/Notification/CoreNotifier.php',  | 
                                                        |
| 1507 | + 'OC\\Core\\ResponseDefinitions' => __DIR__.'/../../..'.'/core/ResponseDefinitions.php',  | 
                                                        |
| 1508 | + 'OC\\Core\\Service\\LoginFlowV2Service' => __DIR__.'/../../..'.'/core/Service/LoginFlowV2Service.php',  | 
                                                        |
| 1509 | + 'OC\\DB\\Adapter' => __DIR__.'/../../..'.'/lib/private/DB/Adapter.php',  | 
                                                        |
| 1510 | + 'OC\\DB\\AdapterMySQL' => __DIR__.'/../../..'.'/lib/private/DB/AdapterMySQL.php',  | 
                                                        |
| 1511 | + 'OC\\DB\\AdapterOCI8' => __DIR__.'/../../..'.'/lib/private/DB/AdapterOCI8.php',  | 
                                                        |
| 1512 | + 'OC\\DB\\AdapterPgSql' => __DIR__.'/../../..'.'/lib/private/DB/AdapterPgSql.php',  | 
                                                        |
| 1513 | + 'OC\\DB\\AdapterSqlite' => __DIR__.'/../../..'.'/lib/private/DB/AdapterSqlite.php',  | 
                                                        |
| 1514 | + 'OC\\DB\\ArrayResult' => __DIR__.'/../../..'.'/lib/private/DB/ArrayResult.php',  | 
                                                        |
| 1515 | + 'OC\\DB\\BacktraceDebugStack' => __DIR__.'/../../..'.'/lib/private/DB/BacktraceDebugStack.php',  | 
                                                        |
| 1516 | + 'OC\\DB\\Connection' => __DIR__.'/../../..'.'/lib/private/DB/Connection.php',  | 
                                                        |
| 1517 | + 'OC\\DB\\ConnectionAdapter' => __DIR__.'/../../..'.'/lib/private/DB/ConnectionAdapter.php',  | 
                                                        |
| 1518 | + 'OC\\DB\\ConnectionFactory' => __DIR__.'/../../..'.'/lib/private/DB/ConnectionFactory.php',  | 
                                                        |
| 1519 | + 'OC\\DB\\DbDataCollector' => __DIR__.'/../../..'.'/lib/private/DB/DbDataCollector.php',  | 
                                                        |
| 1520 | + 'OC\\DB\\Exceptions\\DbalException' => __DIR__.'/../../..'.'/lib/private/DB/Exceptions/DbalException.php',  | 
                                                        |
| 1521 | + 'OC\\DB\\MigrationException' => __DIR__.'/../../..'.'/lib/private/DB/MigrationException.php',  | 
                                                        |
| 1522 | + 'OC\\DB\\MigrationService' => __DIR__.'/../../..'.'/lib/private/DB/MigrationService.php',  | 
                                                        |
| 1523 | + 'OC\\DB\\Migrator' => __DIR__.'/../../..'.'/lib/private/DB/Migrator.php',  | 
                                                        |
| 1524 | + 'OC\\DB\\MigratorExecuteSqlEvent' => __DIR__.'/../../..'.'/lib/private/DB/MigratorExecuteSqlEvent.php',  | 
                                                        |
| 1525 | + 'OC\\DB\\MissingColumnInformation' => __DIR__.'/../../..'.'/lib/private/DB/MissingColumnInformation.php',  | 
                                                        |
| 1526 | + 'OC\\DB\\MissingIndexInformation' => __DIR__.'/../../..'.'/lib/private/DB/MissingIndexInformation.php',  | 
                                                        |
| 1527 | + 'OC\\DB\\MissingPrimaryKeyInformation' => __DIR__.'/../../..'.'/lib/private/DB/MissingPrimaryKeyInformation.php',  | 
                                                        |
| 1528 | + 'OC\\DB\\MySqlTools' => __DIR__.'/../../..'.'/lib/private/DB/MySqlTools.php',  | 
                                                        |
| 1529 | + 'OC\\DB\\OCSqlitePlatform' => __DIR__.'/../../..'.'/lib/private/DB/OCSqlitePlatform.php',  | 
                                                        |
| 1530 | + 'OC\\DB\\ObjectParameter' => __DIR__.'/../../..'.'/lib/private/DB/ObjectParameter.php',  | 
                                                        |
| 1531 | + 'OC\\DB\\OracleConnection' => __DIR__.'/../../..'.'/lib/private/DB/OracleConnection.php',  | 
                                                        |
| 1532 | + 'OC\\DB\\OracleMigrator' => __DIR__.'/../../..'.'/lib/private/DB/OracleMigrator.php',  | 
                                                        |
| 1533 | + 'OC\\DB\\PgSqlTools' => __DIR__.'/../../..'.'/lib/private/DB/PgSqlTools.php',  | 
                                                        |
| 1534 | + 'OC\\DB\\PreparedStatement' => __DIR__.'/../../..'.'/lib/private/DB/PreparedStatement.php',  | 
                                                        |
| 1535 | + 'OC\\DB\\QueryBuilder\\CompositeExpression' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/CompositeExpression.php',  | 
                                                        |
| 1536 | + 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\ExpressionBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/ExpressionBuilder/ExpressionBuilder.php',  | 
                                                        |
| 1537 | + 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\MySqlExpressionBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/ExpressionBuilder/MySqlExpressionBuilder.php',  | 
                                                        |
| 1538 | + 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\OCIExpressionBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/ExpressionBuilder/OCIExpressionBuilder.php',  | 
                                                        |
| 1539 | + 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\PgSqlExpressionBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/ExpressionBuilder/PgSqlExpressionBuilder.php',  | 
                                                        |
| 1540 | + 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\SqliteExpressionBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/ExpressionBuilder/SqliteExpressionBuilder.php',  | 
                                                        |
| 1541 | + 'OC\\DB\\QueryBuilder\\ExtendedQueryBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/ExtendedQueryBuilder.php',  | 
                                                        |
| 1542 | + 'OC\\DB\\QueryBuilder\\FunctionBuilder\\FunctionBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/FunctionBuilder/FunctionBuilder.php',  | 
                                                        |
| 1543 | + 'OC\\DB\\QueryBuilder\\FunctionBuilder\\OCIFunctionBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/FunctionBuilder/OCIFunctionBuilder.php',  | 
                                                        |
| 1544 | + 'OC\\DB\\QueryBuilder\\FunctionBuilder\\PgSqlFunctionBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/FunctionBuilder/PgSqlFunctionBuilder.php',  | 
                                                        |
| 1545 | + 'OC\\DB\\QueryBuilder\\FunctionBuilder\\SqliteFunctionBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/FunctionBuilder/SqliteFunctionBuilder.php',  | 
                                                        |
| 1546 | + 'OC\\DB\\QueryBuilder\\Literal' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Literal.php',  | 
                                                        |
| 1547 | + 'OC\\DB\\QueryBuilder\\Parameter' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Parameter.php',  | 
                                                        |
| 1548 | + 'OC\\DB\\QueryBuilder\\Partitioned\\InvalidPartitionedQueryException' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Partitioned/InvalidPartitionedQueryException.php',  | 
                                                        |
| 1549 | + 'OC\\DB\\QueryBuilder\\Partitioned\\JoinCondition' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Partitioned/JoinCondition.php',  | 
                                                        |
| 1550 | + 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionQuery' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Partitioned/PartitionQuery.php',  | 
                                                        |
| 1551 | + 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionSplit' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Partitioned/PartitionSplit.php',  | 
                                                        |
| 1552 | + 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionedQueryBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Partitioned/PartitionedQueryBuilder.php',  | 
                                                        |
| 1553 | + 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionedResult' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Partitioned/PartitionedResult.php',  | 
                                                        |
| 1554 | + 'OC\\DB\\QueryBuilder\\QueryBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/QueryBuilder.php',  | 
                                                        |
| 1555 | + 'OC\\DB\\QueryBuilder\\QueryFunction' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/QueryFunction.php',  | 
                                                        |
| 1556 | + 'OC\\DB\\QueryBuilder\\QuoteHelper' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/QuoteHelper.php',  | 
                                                        |
| 1557 | + 'OC\\DB\\QueryBuilder\\Sharded\\AutoIncrementHandler' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Sharded/AutoIncrementHandler.php',  | 
                                                        |
| 1558 | + 'OC\\DB\\QueryBuilder\\Sharded\\CrossShardMoveHelper' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Sharded/CrossShardMoveHelper.php',  | 
                                                        |
| 1559 | + 'OC\\DB\\QueryBuilder\\Sharded\\HashShardMapper' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Sharded/HashShardMapper.php',  | 
                                                        |
| 1560 | + 'OC\\DB\\QueryBuilder\\Sharded\\InvalidShardedQueryException' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Sharded/InvalidShardedQueryException.php',  | 
                                                        |
| 1561 | + 'OC\\DB\\QueryBuilder\\Sharded\\RoundRobinShardMapper' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Sharded/RoundRobinShardMapper.php',  | 
                                                        |
| 1562 | + 'OC\\DB\\QueryBuilder\\Sharded\\ShardConnectionManager' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Sharded/ShardConnectionManager.php',  | 
                                                        |
| 1563 | + 'OC\\DB\\QueryBuilder\\Sharded\\ShardDefinition' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Sharded/ShardDefinition.php',  | 
                                                        |
| 1564 | + 'OC\\DB\\QueryBuilder\\Sharded\\ShardQueryRunner' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Sharded/ShardQueryRunner.php',  | 
                                                        |
| 1565 | + 'OC\\DB\\QueryBuilder\\Sharded\\ShardedQueryBuilder' => __DIR__.'/../../..'.'/lib/private/DB/QueryBuilder/Sharded/ShardedQueryBuilder.php',  | 
                                                        |
| 1566 | + 'OC\\DB\\ResultAdapter' => __DIR__.'/../../..'.'/lib/private/DB/ResultAdapter.php',  | 
                                                        |
| 1567 | + 'OC\\DB\\SQLiteMigrator' => __DIR__.'/../../..'.'/lib/private/DB/SQLiteMigrator.php',  | 
                                                        |
| 1568 | + 'OC\\DB\\SQLiteSessionInit' => __DIR__.'/../../..'.'/lib/private/DB/SQLiteSessionInit.php',  | 
                                                        |
| 1569 | + 'OC\\DB\\SchemaWrapper' => __DIR__.'/../../..'.'/lib/private/DB/SchemaWrapper.php',  | 
                                                        |
| 1570 | + 'OC\\DB\\SetTransactionIsolationLevel' => __DIR__.'/../../..'.'/lib/private/DB/SetTransactionIsolationLevel.php',  | 
                                                        |
| 1571 | + 'OC\\Dashboard\\Manager' => __DIR__.'/../../..'.'/lib/private/Dashboard/Manager.php',  | 
                                                        |
| 1572 | + 'OC\\DatabaseException' => __DIR__.'/../../..'.'/lib/private/DatabaseException.php',  | 
                                                        |
| 1573 | + 'OC\\DatabaseSetupException' => __DIR__.'/../../..'.'/lib/private/DatabaseSetupException.php',  | 
                                                        |
| 1574 | + 'OC\\DateTimeFormatter' => __DIR__.'/../../..'.'/lib/private/DateTimeFormatter.php',  | 
                                                        |
| 1575 | + 'OC\\DateTimeZone' => __DIR__.'/../../..'.'/lib/private/DateTimeZone.php',  | 
                                                        |
| 1576 | + 'OC\\Diagnostics\\Event' => __DIR__.'/../../..'.'/lib/private/Diagnostics/Event.php',  | 
                                                        |
| 1577 | + 'OC\\Diagnostics\\EventLogger' => __DIR__.'/../../..'.'/lib/private/Diagnostics/EventLogger.php',  | 
                                                        |
| 1578 | + 'OC\\Diagnostics\\Query' => __DIR__.'/../../..'.'/lib/private/Diagnostics/Query.php',  | 
                                                        |
| 1579 | + 'OC\\Diagnostics\\QueryLogger' => __DIR__.'/../../..'.'/lib/private/Diagnostics/QueryLogger.php',  | 
                                                        |
| 1580 | + 'OC\\DirectEditing\\Manager' => __DIR__.'/../../..'.'/lib/private/DirectEditing/Manager.php',  | 
                                                        |
| 1581 | + 'OC\\DirectEditing\\Token' => __DIR__.'/../../..'.'/lib/private/DirectEditing/Token.php',  | 
                                                        |
| 1582 | + 'OC\\EmojiHelper' => __DIR__.'/../../..'.'/lib/private/EmojiHelper.php',  | 
                                                        |
| 1583 | + 'OC\\Encryption\\DecryptAll' => __DIR__.'/../../..'.'/lib/private/Encryption/DecryptAll.php',  | 
                                                        |
| 1584 | + 'OC\\Encryption\\EncryptionWrapper' => __DIR__.'/../../..'.'/lib/private/Encryption/EncryptionWrapper.php',  | 
                                                        |
| 1585 | + 'OC\\Encryption\\Exceptions\\DecryptionFailedException' => __DIR__.'/../../..'.'/lib/private/Encryption/Exceptions/DecryptionFailedException.php',  | 
                                                        |
| 1586 | + 'OC\\Encryption\\Exceptions\\EmptyEncryptionDataException' => __DIR__.'/../../..'.'/lib/private/Encryption/Exceptions/EmptyEncryptionDataException.php',  | 
                                                        |
| 1587 | + 'OC\\Encryption\\Exceptions\\EncryptionFailedException' => __DIR__.'/../../..'.'/lib/private/Encryption/Exceptions/EncryptionFailedException.php',  | 
                                                        |
| 1588 | + 'OC\\Encryption\\Exceptions\\EncryptionHeaderKeyExistsException' => __DIR__.'/../../..'.'/lib/private/Encryption/Exceptions/EncryptionHeaderKeyExistsException.php',  | 
                                                        |
| 1589 | + 'OC\\Encryption\\Exceptions\\EncryptionHeaderToLargeException' => __DIR__.'/../../..'.'/lib/private/Encryption/Exceptions/EncryptionHeaderToLargeException.php',  | 
                                                        |
| 1590 | + 'OC\\Encryption\\Exceptions\\ModuleAlreadyExistsException' => __DIR__.'/../../..'.'/lib/private/Encryption/Exceptions/ModuleAlreadyExistsException.php',  | 
                                                        |
| 1591 | + 'OC\\Encryption\\Exceptions\\ModuleDoesNotExistsException' => __DIR__.'/../../..'.'/lib/private/Encryption/Exceptions/ModuleDoesNotExistsException.php',  | 
                                                        |
| 1592 | + 'OC\\Encryption\\Exceptions\\UnknownCipherException' => __DIR__.'/../../..'.'/lib/private/Encryption/Exceptions/UnknownCipherException.php',  | 
                                                        |
| 1593 | + 'OC\\Encryption\\File' => __DIR__.'/../../..'.'/lib/private/Encryption/File.php',  | 
                                                        |
| 1594 | + 'OC\\Encryption\\HookManager' => __DIR__.'/../../..'.'/lib/private/Encryption/HookManager.php',  | 
                                                        |
| 1595 | + 'OC\\Encryption\\Keys\\Storage' => __DIR__.'/../../..'.'/lib/private/Encryption/Keys/Storage.php',  | 
                                                        |
| 1596 | + 'OC\\Encryption\\Manager' => __DIR__.'/../../..'.'/lib/private/Encryption/Manager.php',  | 
                                                        |
| 1597 | + 'OC\\Encryption\\Update' => __DIR__.'/../../..'.'/lib/private/Encryption/Update.php',  | 
                                                        |
| 1598 | + 'OC\\Encryption\\Util' => __DIR__.'/../../..'.'/lib/private/Encryption/Util.php',  | 
                                                        |
| 1599 | + 'OC\\EventDispatcher\\EventDispatcher' => __DIR__.'/../../..'.'/lib/private/EventDispatcher/EventDispatcher.php',  | 
                                                        |
| 1600 | + 'OC\\EventDispatcher\\ServiceEventListener' => __DIR__.'/../../..'.'/lib/private/EventDispatcher/ServiceEventListener.php',  | 
                                                        |
| 1601 | + 'OC\\EventSource' => __DIR__.'/../../..'.'/lib/private/EventSource.php',  | 
                                                        |
| 1602 | + 'OC\\EventSourceFactory' => __DIR__.'/../../..'.'/lib/private/EventSourceFactory.php',  | 
                                                        |
| 1603 | + 'OC\\Federation\\CloudFederationFactory' => __DIR__.'/../../..'.'/lib/private/Federation/CloudFederationFactory.php',  | 
                                                        |
| 1604 | + 'OC\\Federation\\CloudFederationNotification' => __DIR__.'/../../..'.'/lib/private/Federation/CloudFederationNotification.php',  | 
                                                        |
| 1605 | + 'OC\\Federation\\CloudFederationProviderManager' => __DIR__.'/../../..'.'/lib/private/Federation/CloudFederationProviderManager.php',  | 
                                                        |
| 1606 | + 'OC\\Federation\\CloudFederationShare' => __DIR__.'/../../..'.'/lib/private/Federation/CloudFederationShare.php',  | 
                                                        |
| 1607 | + 'OC\\Federation\\CloudId' => __DIR__.'/../../..'.'/lib/private/Federation/CloudId.php',  | 
                                                        |
| 1608 | + 'OC\\Federation\\CloudIdManager' => __DIR__.'/../../..'.'/lib/private/Federation/CloudIdManager.php',  | 
                                                        |
| 1609 | + 'OC\\FilesMetadata\\FilesMetadataManager' => __DIR__.'/../../..'.'/lib/private/FilesMetadata/FilesMetadataManager.php',  | 
                                                        |
| 1610 | + 'OC\\FilesMetadata\\Job\\UpdateSingleMetadata' => __DIR__.'/../../..'.'/lib/private/FilesMetadata/Job/UpdateSingleMetadata.php',  | 
                                                        |
| 1611 | + 'OC\\FilesMetadata\\Listener\\MetadataDelete' => __DIR__.'/../../..'.'/lib/private/FilesMetadata/Listener/MetadataDelete.php',  | 
                                                        |
| 1612 | + 'OC\\FilesMetadata\\Listener\\MetadataUpdate' => __DIR__.'/../../..'.'/lib/private/FilesMetadata/Listener/MetadataUpdate.php',  | 
                                                        |
| 1613 | + 'OC\\FilesMetadata\\MetadataQuery' => __DIR__.'/../../..'.'/lib/private/FilesMetadata/MetadataQuery.php',  | 
                                                        |
| 1614 | + 'OC\\FilesMetadata\\Model\\FilesMetadata' => __DIR__.'/../../..'.'/lib/private/FilesMetadata/Model/FilesMetadata.php',  | 
                                                        |
| 1615 | + 'OC\\FilesMetadata\\Model\\MetadataValueWrapper' => __DIR__.'/../../..'.'/lib/private/FilesMetadata/Model/MetadataValueWrapper.php',  | 
                                                        |
| 1616 | + 'OC\\FilesMetadata\\Service\\IndexRequestService' => __DIR__.'/../../..'.'/lib/private/FilesMetadata/Service/IndexRequestService.php',  | 
                                                        |
| 1617 | + 'OC\\FilesMetadata\\Service\\MetadataRequestService' => __DIR__.'/../../..'.'/lib/private/FilesMetadata/Service/MetadataRequestService.php',  | 
                                                        |
| 1618 | + 'OC\\Files\\AppData\\AppData' => __DIR__.'/../../..'.'/lib/private/Files/AppData/AppData.php',  | 
                                                        |
| 1619 | + 'OC\\Files\\AppData\\Factory' => __DIR__.'/../../..'.'/lib/private/Files/AppData/Factory.php',  | 
                                                        |
| 1620 | + 'OC\\Files\\Cache\\Cache' => __DIR__.'/../../..'.'/lib/private/Files/Cache/Cache.php',  | 
                                                        |
| 1621 | + 'OC\\Files\\Cache\\CacheDependencies' => __DIR__.'/../../..'.'/lib/private/Files/Cache/CacheDependencies.php',  | 
                                                        |
| 1622 | + 'OC\\Files\\Cache\\CacheEntry' => __DIR__.'/../../..'.'/lib/private/Files/Cache/CacheEntry.php',  | 
                                                        |
| 1623 | + 'OC\\Files\\Cache\\CacheQueryBuilder' => __DIR__.'/../../..'.'/lib/private/Files/Cache/CacheQueryBuilder.php',  | 
                                                        |
| 1624 | + 'OC\\Files\\Cache\\FailedCache' => __DIR__.'/../../..'.'/lib/private/Files/Cache/FailedCache.php',  | 
                                                        |
| 1625 | + 'OC\\Files\\Cache\\FileAccess' => __DIR__.'/../../..'.'/lib/private/Files/Cache/FileAccess.php',  | 
                                                        |
| 1626 | + 'OC\\Files\\Cache\\HomeCache' => __DIR__.'/../../..'.'/lib/private/Files/Cache/HomeCache.php',  | 
                                                        |
| 1627 | + 'OC\\Files\\Cache\\HomePropagator' => __DIR__.'/../../..'.'/lib/private/Files/Cache/HomePropagator.php',  | 
                                                        |
| 1628 | + 'OC\\Files\\Cache\\LocalRootScanner' => __DIR__.'/../../..'.'/lib/private/Files/Cache/LocalRootScanner.php',  | 
                                                        |
| 1629 | + 'OC\\Files\\Cache\\MoveFromCacheTrait' => __DIR__.'/../../..'.'/lib/private/Files/Cache/MoveFromCacheTrait.php',  | 
                                                        |
| 1630 | + 'OC\\Files\\Cache\\NullWatcher' => __DIR__.'/../../..'.'/lib/private/Files/Cache/NullWatcher.php',  | 
                                                        |
| 1631 | + 'OC\\Files\\Cache\\Propagator' => __DIR__.'/../../..'.'/lib/private/Files/Cache/Propagator.php',  | 
                                                        |
| 1632 | + 'OC\\Files\\Cache\\QuerySearchHelper' => __DIR__.'/../../..'.'/lib/private/Files/Cache/QuerySearchHelper.php',  | 
                                                        |
| 1633 | + 'OC\\Files\\Cache\\Scanner' => __DIR__.'/../../..'.'/lib/private/Files/Cache/Scanner.php',  | 
                                                        |
| 1634 | + 'OC\\Files\\Cache\\SearchBuilder' => __DIR__.'/../../..'.'/lib/private/Files/Cache/SearchBuilder.php',  | 
                                                        |
| 1635 | + 'OC\\Files\\Cache\\Storage' => __DIR__.'/../../..'.'/lib/private/Files/Cache/Storage.php',  | 
                                                        |
| 1636 | + 'OC\\Files\\Cache\\StorageGlobal' => __DIR__.'/../../..'.'/lib/private/Files/Cache/StorageGlobal.php',  | 
                                                        |
| 1637 | + 'OC\\Files\\Cache\\Updater' => __DIR__.'/../../..'.'/lib/private/Files/Cache/Updater.php',  | 
                                                        |
| 1638 | + 'OC\\Files\\Cache\\Watcher' => __DIR__.'/../../..'.'/lib/private/Files/Cache/Watcher.php',  | 
                                                        |
| 1639 | + 'OC\\Files\\Cache\\Wrapper\\CacheJail' => __DIR__.'/../../..'.'/lib/private/Files/Cache/Wrapper/CacheJail.php',  | 
                                                        |
| 1640 | + 'OC\\Files\\Cache\\Wrapper\\CachePermissionsMask' => __DIR__.'/../../..'.'/lib/private/Files/Cache/Wrapper/CachePermissionsMask.php',  | 
                                                        |
| 1641 | + 'OC\\Files\\Cache\\Wrapper\\CacheWrapper' => __DIR__.'/../../..'.'/lib/private/Files/Cache/Wrapper/CacheWrapper.php',  | 
                                                        |
| 1642 | + 'OC\\Files\\Cache\\Wrapper\\JailPropagator' => __DIR__.'/../../..'.'/lib/private/Files/Cache/Wrapper/JailPropagator.php',  | 
                                                        |
| 1643 | + 'OC\\Files\\Cache\\Wrapper\\JailWatcher' => __DIR__.'/../../..'.'/lib/private/Files/Cache/Wrapper/JailWatcher.php',  | 
                                                        |
| 1644 | + 'OC\\Files\\Config\\CachedMountFileInfo' => __DIR__.'/../../..'.'/lib/private/Files/Config/CachedMountFileInfo.php',  | 
                                                        |
| 1645 | + 'OC\\Files\\Config\\CachedMountInfo' => __DIR__.'/../../..'.'/lib/private/Files/Config/CachedMountInfo.php',  | 
                                                        |
| 1646 | + 'OC\\Files\\Config\\LazyPathCachedMountInfo' => __DIR__.'/../../..'.'/lib/private/Files/Config/LazyPathCachedMountInfo.php',  | 
                                                        |
| 1647 | + 'OC\\Files\\Config\\LazyStorageMountInfo' => __DIR__.'/../../..'.'/lib/private/Files/Config/LazyStorageMountInfo.php',  | 
                                                        |
| 1648 | + 'OC\\Files\\Config\\MountProviderCollection' => __DIR__.'/../../..'.'/lib/private/Files/Config/MountProviderCollection.php',  | 
                                                        |
| 1649 | + 'OC\\Files\\Config\\UserMountCache' => __DIR__.'/../../..'.'/lib/private/Files/Config/UserMountCache.php',  | 
                                                        |
| 1650 | + 'OC\\Files\\Config\\UserMountCacheListener' => __DIR__.'/../../..'.'/lib/private/Files/Config/UserMountCacheListener.php',  | 
                                                        |
| 1651 | + 'OC\\Files\\Conversion\\ConversionManager' => __DIR__.'/../../..'.'/lib/private/Files/Conversion/ConversionManager.php',  | 
                                                        |
| 1652 | + 'OC\\Files\\FileInfo' => __DIR__.'/../../..'.'/lib/private/Files/FileInfo.php',  | 
                                                        |
| 1653 | + 'OC\\Files\\FilenameValidator' => __DIR__.'/../../..'.'/lib/private/Files/FilenameValidator.php',  | 
                                                        |
| 1654 | + 'OC\\Files\\Filesystem' => __DIR__.'/../../..'.'/lib/private/Files/Filesystem.php',  | 
                                                        |
| 1655 | + 'OC\\Files\\Lock\\LockManager' => __DIR__.'/../../..'.'/lib/private/Files/Lock/LockManager.php',  | 
                                                        |
| 1656 | + 'OC\\Files\\Mount\\CacheMountProvider' => __DIR__.'/../../..'.'/lib/private/Files/Mount/CacheMountProvider.php',  | 
                                                        |
| 1657 | + 'OC\\Files\\Mount\\HomeMountPoint' => __DIR__.'/../../..'.'/lib/private/Files/Mount/HomeMountPoint.php',  | 
                                                        |
| 1658 | + 'OC\\Files\\Mount\\LocalHomeMountProvider' => __DIR__.'/../../..'.'/lib/private/Files/Mount/LocalHomeMountProvider.php',  | 
                                                        |
| 1659 | + 'OC\\Files\\Mount\\Manager' => __DIR__.'/../../..'.'/lib/private/Files/Mount/Manager.php',  | 
                                                        |
| 1660 | + 'OC\\Files\\Mount\\MountPoint' => __DIR__.'/../../..'.'/lib/private/Files/Mount/MountPoint.php',  | 
                                                        |
| 1661 | + 'OC\\Files\\Mount\\MoveableMount' => __DIR__.'/../../..'.'/lib/private/Files/Mount/MoveableMount.php',  | 
                                                        |
| 1662 | + 'OC\\Files\\Mount\\ObjectHomeMountProvider' => __DIR__.'/../../..'.'/lib/private/Files/Mount/ObjectHomeMountProvider.php',  | 
                                                        |
| 1663 | + 'OC\\Files\\Mount\\ObjectStorePreviewCacheMountProvider' => __DIR__.'/../../..'.'/lib/private/Files/Mount/ObjectStorePreviewCacheMountProvider.php',  | 
                                                        |
| 1664 | + 'OC\\Files\\Mount\\RootMountProvider' => __DIR__.'/../../..'.'/lib/private/Files/Mount/RootMountProvider.php',  | 
                                                        |
| 1665 | + 'OC\\Files\\Node\\File' => __DIR__.'/../../..'.'/lib/private/Files/Node/File.php',  | 
                                                        |
| 1666 | + 'OC\\Files\\Node\\Folder' => __DIR__.'/../../..'.'/lib/private/Files/Node/Folder.php',  | 
                                                        |
| 1667 | + 'OC\\Files\\Node\\HookConnector' => __DIR__.'/../../..'.'/lib/private/Files/Node/HookConnector.php',  | 
                                                        |
| 1668 | + 'OC\\Files\\Node\\LazyFolder' => __DIR__.'/../../..'.'/lib/private/Files/Node/LazyFolder.php',  | 
                                                        |
| 1669 | + 'OC\\Files\\Node\\LazyRoot' => __DIR__.'/../../..'.'/lib/private/Files/Node/LazyRoot.php',  | 
                                                        |
| 1670 | + 'OC\\Files\\Node\\LazyUserFolder' => __DIR__.'/../../..'.'/lib/private/Files/Node/LazyUserFolder.php',  | 
                                                        |
| 1671 | + 'OC\\Files\\Node\\Node' => __DIR__.'/../../..'.'/lib/private/Files/Node/Node.php',  | 
                                                        |
| 1672 | + 'OC\\Files\\Node\\NonExistingFile' => __DIR__.'/../../..'.'/lib/private/Files/Node/NonExistingFile.php',  | 
                                                        |
| 1673 | + 'OC\\Files\\Node\\NonExistingFolder' => __DIR__.'/../../..'.'/lib/private/Files/Node/NonExistingFolder.php',  | 
                                                        |
| 1674 | + 'OC\\Files\\Node\\Root' => __DIR__.'/../../..'.'/lib/private/Files/Node/Root.php',  | 
                                                        |
| 1675 | + 'OC\\Files\\Notify\\Change' => __DIR__.'/../../..'.'/lib/private/Files/Notify/Change.php',  | 
                                                        |
| 1676 | + 'OC\\Files\\Notify\\RenameChange' => __DIR__.'/../../..'.'/lib/private/Files/Notify/RenameChange.php',  | 
                                                        |
| 1677 | + 'OC\\Files\\ObjectStore\\AppdataPreviewObjectStoreStorage' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/AppdataPreviewObjectStoreStorage.php',  | 
                                                        |
| 1678 | + 'OC\\Files\\ObjectStore\\Azure' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/Azure.php',  | 
                                                        |
| 1679 | + 'OC\\Files\\ObjectStore\\HomeObjectStoreStorage' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/HomeObjectStoreStorage.php',  | 
                                                        |
| 1680 | + 'OC\\Files\\ObjectStore\\Mapper' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/Mapper.php',  | 
                                                        |
| 1681 | + 'OC\\Files\\ObjectStore\\ObjectStoreScanner' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/ObjectStoreScanner.php',  | 
                                                        |
| 1682 | + 'OC\\Files\\ObjectStore\\ObjectStoreStorage' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/ObjectStoreStorage.php',  | 
                                                        |
| 1683 | + 'OC\\Files\\ObjectStore\\S3' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/S3.php',  | 
                                                        |
| 1684 | + 'OC\\Files\\ObjectStore\\S3ConfigTrait' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/S3ConfigTrait.php',  | 
                                                        |
| 1685 | + 'OC\\Files\\ObjectStore\\S3ConnectionTrait' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/S3ConnectionTrait.php',  | 
                                                        |
| 1686 | + 'OC\\Files\\ObjectStore\\S3ObjectTrait' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/S3ObjectTrait.php',  | 
                                                        |
| 1687 | + 'OC\\Files\\ObjectStore\\S3Signature' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/S3Signature.php',  | 
                                                        |
| 1688 | + 'OC\\Files\\ObjectStore\\StorageObjectStore' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/StorageObjectStore.php',  | 
                                                        |
| 1689 | + 'OC\\Files\\ObjectStore\\Swift' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/Swift.php',  | 
                                                        |
| 1690 | + 'OC\\Files\\ObjectStore\\SwiftFactory' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/SwiftFactory.php',  | 
                                                        |
| 1691 | + 'OC\\Files\\ObjectStore\\SwiftV2CachingAuthService' => __DIR__.'/../../..'.'/lib/private/Files/ObjectStore/SwiftV2CachingAuthService.php',  | 
                                                        |
| 1692 | + 'OC\\Files\\Search\\QueryOptimizer\\FlattenNestedBool' => __DIR__.'/../../..'.'/lib/private/Files/Search/QueryOptimizer/FlattenNestedBool.php',  | 
                                                        |
| 1693 | + 'OC\\Files\\Search\\QueryOptimizer\\FlattenSingleArgumentBinaryOperation' => __DIR__.'/../../..'.'/lib/private/Files/Search/QueryOptimizer/FlattenSingleArgumentBinaryOperation.php',  | 
                                                        |
| 1694 | + 'OC\\Files\\Search\\QueryOptimizer\\MergeDistributiveOperations' => __DIR__.'/../../..'.'/lib/private/Files/Search/QueryOptimizer/MergeDistributiveOperations.php',  | 
                                                        |
| 1695 | + 'OC\\Files\\Search\\QueryOptimizer\\OrEqualsToIn' => __DIR__.'/../../..'.'/lib/private/Files/Search/QueryOptimizer/OrEqualsToIn.php',  | 
                                                        |
| 1696 | + 'OC\\Files\\Search\\QueryOptimizer\\PathPrefixOptimizer' => __DIR__.'/../../..'.'/lib/private/Files/Search/QueryOptimizer/PathPrefixOptimizer.php',  | 
                                                        |
| 1697 | + 'OC\\Files\\Search\\QueryOptimizer\\QueryOptimizer' => __DIR__.'/../../..'.'/lib/private/Files/Search/QueryOptimizer/QueryOptimizer.php',  | 
                                                        |
| 1698 | + 'OC\\Files\\Search\\QueryOptimizer\\QueryOptimizerStep' => __DIR__.'/../../..'.'/lib/private/Files/Search/QueryOptimizer/QueryOptimizerStep.php',  | 
                                                        |
| 1699 | + 'OC\\Files\\Search\\QueryOptimizer\\ReplacingOptimizerStep' => __DIR__.'/../../..'.'/lib/private/Files/Search/QueryOptimizer/ReplacingOptimizerStep.php',  | 
                                                        |
| 1700 | + 'OC\\Files\\Search\\QueryOptimizer\\SplitLargeIn' => __DIR__.'/../../..'.'/lib/private/Files/Search/QueryOptimizer/SplitLargeIn.php',  | 
                                                        |
| 1701 | + 'OC\\Files\\Search\\SearchBinaryOperator' => __DIR__.'/../../..'.'/lib/private/Files/Search/SearchBinaryOperator.php',  | 
                                                        |
| 1702 | + 'OC\\Files\\Search\\SearchComparison' => __DIR__.'/../../..'.'/lib/private/Files/Search/SearchComparison.php',  | 
                                                        |
| 1703 | + 'OC\\Files\\Search\\SearchOrder' => __DIR__.'/../../..'.'/lib/private/Files/Search/SearchOrder.php',  | 
                                                        |
| 1704 | + 'OC\\Files\\Search\\SearchQuery' => __DIR__.'/../../..'.'/lib/private/Files/Search/SearchQuery.php',  | 
                                                        |
| 1705 | + 'OC\\Files\\SetupManager' => __DIR__.'/../../..'.'/lib/private/Files/SetupManager.php',  | 
                                                        |
| 1706 | + 'OC\\Files\\SetupManagerFactory' => __DIR__.'/../../..'.'/lib/private/Files/SetupManagerFactory.php',  | 
                                                        |
| 1707 | + 'OC\\Files\\SimpleFS\\NewSimpleFile' => __DIR__.'/../../..'.'/lib/private/Files/SimpleFS/NewSimpleFile.php',  | 
                                                        |
| 1708 | + 'OC\\Files\\SimpleFS\\SimpleFile' => __DIR__.'/../../..'.'/lib/private/Files/SimpleFS/SimpleFile.php',  | 
                                                        |
| 1709 | + 'OC\\Files\\SimpleFS\\SimpleFolder' => __DIR__.'/../../..'.'/lib/private/Files/SimpleFS/SimpleFolder.php',  | 
                                                        |
| 1710 | + 'OC\\Files\\Storage\\Common' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Common.php',  | 
                                                        |
| 1711 | + 'OC\\Files\\Storage\\CommonTest' => __DIR__.'/../../..'.'/lib/private/Files/Storage/CommonTest.php',  | 
                                                        |
| 1712 | + 'OC\\Files\\Storage\\DAV' => __DIR__.'/../../..'.'/lib/private/Files/Storage/DAV.php',  | 
                                                        |
| 1713 | + 'OC\\Files\\Storage\\FailedStorage' => __DIR__.'/../../..'.'/lib/private/Files/Storage/FailedStorage.php',  | 
                                                        |
| 1714 | + 'OC\\Files\\Storage\\Home' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Home.php',  | 
                                                        |
| 1715 | + 'OC\\Files\\Storage\\Local' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Local.php',  | 
                                                        |
| 1716 | + 'OC\\Files\\Storage\\LocalRootStorage' => __DIR__.'/../../..'.'/lib/private/Files/Storage/LocalRootStorage.php',  | 
                                                        |
| 1717 | + 'OC\\Files\\Storage\\LocalTempFileTrait' => __DIR__.'/../../..'.'/lib/private/Files/Storage/LocalTempFileTrait.php',  | 
                                                        |
| 1718 | + 'OC\\Files\\Storage\\PolyFill\\CopyDirectory' => __DIR__.'/../../..'.'/lib/private/Files/Storage/PolyFill/CopyDirectory.php',  | 
                                                        |
| 1719 | + 'OC\\Files\\Storage\\Storage' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Storage.php',  | 
                                                        |
| 1720 | + 'OC\\Files\\Storage\\StorageFactory' => __DIR__.'/../../..'.'/lib/private/Files/Storage/StorageFactory.php',  | 
                                                        |
| 1721 | + 'OC\\Files\\Storage\\Temporary' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Temporary.php',  | 
                                                        |
| 1722 | + 'OC\\Files\\Storage\\Wrapper\\Availability' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Wrapper/Availability.php',  | 
                                                        |
| 1723 | + 'OC\\Files\\Storage\\Wrapper\\Encoding' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Wrapper/Encoding.php',  | 
                                                        |
| 1724 | + 'OC\\Files\\Storage\\Wrapper\\EncodingDirectoryWrapper' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Wrapper/EncodingDirectoryWrapper.php',  | 
                                                        |
| 1725 | + 'OC\\Files\\Storage\\Wrapper\\Encryption' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Wrapper/Encryption.php',  | 
                                                        |
| 1726 | + 'OC\\Files\\Storage\\Wrapper\\Jail' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Wrapper/Jail.php',  | 
                                                        |
| 1727 | + 'OC\\Files\\Storage\\Wrapper\\KnownMtime' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Wrapper/KnownMtime.php',  | 
                                                        |
| 1728 | + 'OC\\Files\\Storage\\Wrapper\\PermissionsMask' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Wrapper/PermissionsMask.php',  | 
                                                        |
| 1729 | + 'OC\\Files\\Storage\\Wrapper\\Quota' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Wrapper/Quota.php',  | 
                                                        |
| 1730 | + 'OC\\Files\\Storage\\Wrapper\\Wrapper' => __DIR__.'/../../..'.'/lib/private/Files/Storage/Wrapper/Wrapper.php',  | 
                                                        |
| 1731 | + 'OC\\Files\\Stream\\Encryption' => __DIR__.'/../../..'.'/lib/private/Files/Stream/Encryption.php',  | 
                                                        |
| 1732 | + 'OC\\Files\\Stream\\HashWrapper' => __DIR__.'/../../..'.'/lib/private/Files/Stream/HashWrapper.php',  | 
                                                        |
| 1733 | + 'OC\\Files\\Stream\\Quota' => __DIR__.'/../../..'.'/lib/private/Files/Stream/Quota.php',  | 
                                                        |
| 1734 | + 'OC\\Files\\Stream\\SeekableHttpStream' => __DIR__.'/../../..'.'/lib/private/Files/Stream/SeekableHttpStream.php',  | 
                                                        |
| 1735 | + 'OC\\Files\\Template\\TemplateManager' => __DIR__.'/../../..'.'/lib/private/Files/Template/TemplateManager.php',  | 
                                                        |
| 1736 | + 'OC\\Files\\Type\\Detection' => __DIR__.'/../../..'.'/lib/private/Files/Type/Detection.php',  | 
                                                        |
| 1737 | + 'OC\\Files\\Type\\Loader' => __DIR__.'/../../..'.'/lib/private/Files/Type/Loader.php',  | 
                                                        |
| 1738 | + 'OC\\Files\\Type\\TemplateManager' => __DIR__.'/../../..'.'/lib/private/Files/Type/TemplateManager.php',  | 
                                                        |
| 1739 | + 'OC\\Files\\Utils\\PathHelper' => __DIR__.'/../../..'.'/lib/private/Files/Utils/PathHelper.php',  | 
                                                        |
| 1740 | + 'OC\\Files\\Utils\\Scanner' => __DIR__.'/../../..'.'/lib/private/Files/Utils/Scanner.php',  | 
                                                        |
| 1741 | + 'OC\\Files\\View' => __DIR__.'/../../..'.'/lib/private/Files/View.php',  | 
                                                        |
| 1742 | + 'OC\\ForbiddenException' => __DIR__.'/../../..'.'/lib/private/ForbiddenException.php',  | 
                                                        |
| 1743 | + 'OC\\FullTextSearch\\FullTextSearchManager' => __DIR__.'/../../..'.'/lib/private/FullTextSearch/FullTextSearchManager.php',  | 
                                                        |
| 1744 | + 'OC\\FullTextSearch\\Model\\DocumentAccess' => __DIR__.'/../../..'.'/lib/private/FullTextSearch/Model/DocumentAccess.php',  | 
                                                        |
| 1745 | + 'OC\\FullTextSearch\\Model\\IndexDocument' => __DIR__.'/../../..'.'/lib/private/FullTextSearch/Model/IndexDocument.php',  | 
                                                        |
| 1746 | + 'OC\\FullTextSearch\\Model\\SearchOption' => __DIR__.'/../../..'.'/lib/private/FullTextSearch/Model/SearchOption.php',  | 
                                                        |
| 1747 | + 'OC\\FullTextSearch\\Model\\SearchRequestSimpleQuery' => __DIR__.'/../../..'.'/lib/private/FullTextSearch/Model/SearchRequestSimpleQuery.php',  | 
                                                        |
| 1748 | + 'OC\\FullTextSearch\\Model\\SearchTemplate' => __DIR__.'/../../..'.'/lib/private/FullTextSearch/Model/SearchTemplate.php',  | 
                                                        |
| 1749 | + 'OC\\GlobalScale\\Config' => __DIR__.'/../../..'.'/lib/private/GlobalScale/Config.php',  | 
                                                        |
| 1750 | + 'OC\\Group\\Backend' => __DIR__.'/../../..'.'/lib/private/Group/Backend.php',  | 
                                                        |
| 1751 | + 'OC\\Group\\Database' => __DIR__.'/../../..'.'/lib/private/Group/Database.php',  | 
                                                        |
| 1752 | + 'OC\\Group\\DisplayNameCache' => __DIR__.'/../../..'.'/lib/private/Group/DisplayNameCache.php',  | 
                                                        |
| 1753 | + 'OC\\Group\\Group' => __DIR__.'/../../..'.'/lib/private/Group/Group.php',  | 
                                                        |
| 1754 | + 'OC\\Group\\Manager' => __DIR__.'/../../..'.'/lib/private/Group/Manager.php',  | 
                                                        |
| 1755 | + 'OC\\Group\\MetaData' => __DIR__.'/../../..'.'/lib/private/Group/MetaData.php',  | 
                                                        |
| 1756 | + 'OC\\HintException' => __DIR__.'/../../..'.'/lib/private/HintException.php',  | 
                                                        |
| 1757 | + 'OC\\Hooks\\BasicEmitter' => __DIR__.'/../../..'.'/lib/private/Hooks/BasicEmitter.php',  | 
                                                        |
| 1758 | + 'OC\\Hooks\\Emitter' => __DIR__.'/../../..'.'/lib/private/Hooks/Emitter.php',  | 
                                                        |
| 1759 | + 'OC\\Hooks\\EmitterTrait' => __DIR__.'/../../..'.'/lib/private/Hooks/EmitterTrait.php',  | 
                                                        |
| 1760 | + 'OC\\Hooks\\PublicEmitter' => __DIR__.'/../../..'.'/lib/private/Hooks/PublicEmitter.php',  | 
                                                        |
| 1761 | + 'OC\\Http\\Client\\Client' => __DIR__.'/../../..'.'/lib/private/Http/Client/Client.php',  | 
                                                        |
| 1762 | + 'OC\\Http\\Client\\ClientService' => __DIR__.'/../../..'.'/lib/private/Http/Client/ClientService.php',  | 
                                                        |
| 1763 | + 'OC\\Http\\Client\\DnsPinMiddleware' => __DIR__.'/../../..'.'/lib/private/Http/Client/DnsPinMiddleware.php',  | 
                                                        |
| 1764 | + 'OC\\Http\\Client\\GuzzlePromiseAdapter' => __DIR__.'/../../..'.'/lib/private/Http/Client/GuzzlePromiseAdapter.php',  | 
                                                        |
| 1765 | + 'OC\\Http\\Client\\NegativeDnsCache' => __DIR__.'/../../..'.'/lib/private/Http/Client/NegativeDnsCache.php',  | 
                                                        |
| 1766 | + 'OC\\Http\\Client\\Response' => __DIR__.'/../../..'.'/lib/private/Http/Client/Response.php',  | 
                                                        |
| 1767 | + 'OC\\Http\\CookieHelper' => __DIR__.'/../../..'.'/lib/private/Http/CookieHelper.php',  | 
                                                        |
| 1768 | + 'OC\\Http\\WellKnown\\RequestManager' => __DIR__.'/../../..'.'/lib/private/Http/WellKnown/RequestManager.php',  | 
                                                        |
| 1769 | + 'OC\\Image' => __DIR__.'/../../..'.'/lib/private/Image.php',  | 
                                                        |
| 1770 | + 'OC\\InitialStateService' => __DIR__.'/../../..'.'/lib/private/InitialStateService.php',  | 
                                                        |
| 1771 | + 'OC\\Installer' => __DIR__.'/../../..'.'/lib/private/Installer.php',  | 
                                                        |
| 1772 | + 'OC\\IntegrityCheck\\Checker' => __DIR__.'/../../..'.'/lib/private/IntegrityCheck/Checker.php',  | 
                                                        |
| 1773 | + 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException' => __DIR__.'/../../..'.'/lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php',  | 
                                                        |
| 1774 | + 'OC\\IntegrityCheck\\Helpers\\AppLocator' => __DIR__.'/../../..'.'/lib/private/IntegrityCheck/Helpers/AppLocator.php',  | 
                                                        |
| 1775 | + 'OC\\IntegrityCheck\\Helpers\\EnvironmentHelper' => __DIR__.'/../../..'.'/lib/private/IntegrityCheck/Helpers/EnvironmentHelper.php',  | 
                                                        |
| 1776 | + 'OC\\IntegrityCheck\\Helpers\\FileAccessHelper' => __DIR__.'/../../..'.'/lib/private/IntegrityCheck/Helpers/FileAccessHelper.php',  | 
                                                        |
| 1777 | + 'OC\\IntegrityCheck\\Iterator\\ExcludeFileByNameFilterIterator' => __DIR__.'/../../..'.'/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php',  | 
                                                        |
| 1778 | + 'OC\\IntegrityCheck\\Iterator\\ExcludeFoldersByPathFilterIterator' => __DIR__.'/../../..'.'/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php',  | 
                                                        |
| 1779 | + 'OC\\KnownUser\\KnownUser' => __DIR__.'/../../..'.'/lib/private/KnownUser/KnownUser.php',  | 
                                                        |
| 1780 | + 'OC\\KnownUser\\KnownUserMapper' => __DIR__.'/../../..'.'/lib/private/KnownUser/KnownUserMapper.php',  | 
                                                        |
| 1781 | + 'OC\\KnownUser\\KnownUserService' => __DIR__.'/../../..'.'/lib/private/KnownUser/KnownUserService.php',  | 
                                                        |
| 1782 | + 'OC\\L10N\\Factory' => __DIR__.'/../../..'.'/lib/private/L10N/Factory.php',  | 
                                                        |
| 1783 | + 'OC\\L10N\\L10N' => __DIR__.'/../../..'.'/lib/private/L10N/L10N.php',  | 
                                                        |
| 1784 | + 'OC\\L10N\\L10NString' => __DIR__.'/../../..'.'/lib/private/L10N/L10NString.php',  | 
                                                        |
| 1785 | + 'OC\\L10N\\LanguageIterator' => __DIR__.'/../../..'.'/lib/private/L10N/LanguageIterator.php',  | 
                                                        |
| 1786 | + 'OC\\L10N\\LanguageNotFoundException' => __DIR__.'/../../..'.'/lib/private/L10N/LanguageNotFoundException.php',  | 
                                                        |
| 1787 | + 'OC\\L10N\\LazyL10N' => __DIR__.'/../../..'.'/lib/private/L10N/LazyL10N.php',  | 
                                                        |
| 1788 | + 'OC\\LDAP\\NullLDAPProviderFactory' => __DIR__.'/../../..'.'/lib/private/LDAP/NullLDAPProviderFactory.php',  | 
                                                        |
| 1789 | + 'OC\\LargeFileHelper' => __DIR__.'/../../..'.'/lib/private/LargeFileHelper.php',  | 
                                                        |
| 1790 | + 'OC\\Lock\\AbstractLockingProvider' => __DIR__.'/../../..'.'/lib/private/Lock/AbstractLockingProvider.php',  | 
                                                        |
| 1791 | + 'OC\\Lock\\DBLockingProvider' => __DIR__.'/../../..'.'/lib/private/Lock/DBLockingProvider.php',  | 
                                                        |
| 1792 | + 'OC\\Lock\\MemcacheLockingProvider' => __DIR__.'/../../..'.'/lib/private/Lock/MemcacheLockingProvider.php',  | 
                                                        |
| 1793 | + 'OC\\Lock\\NoopLockingProvider' => __DIR__.'/../../..'.'/lib/private/Lock/NoopLockingProvider.php',  | 
                                                        |
| 1794 | + 'OC\\Lockdown\\Filesystem\\NullCache' => __DIR__.'/../../..'.'/lib/private/Lockdown/Filesystem/NullCache.php',  | 
                                                        |
| 1795 | + 'OC\\Lockdown\\Filesystem\\NullStorage' => __DIR__.'/../../..'.'/lib/private/Lockdown/Filesystem/NullStorage.php',  | 
                                                        |
| 1796 | + 'OC\\Lockdown\\LockdownManager' => __DIR__.'/../../..'.'/lib/private/Lockdown/LockdownManager.php',  | 
                                                        |
| 1797 | + 'OC\\Log' => __DIR__.'/../../..'.'/lib/private/Log.php',  | 
                                                        |
| 1798 | + 'OC\\Log\\ErrorHandler' => __DIR__.'/../../..'.'/lib/private/Log/ErrorHandler.php',  | 
                                                        |
| 1799 | + 'OC\\Log\\Errorlog' => __DIR__.'/../../..'.'/lib/private/Log/Errorlog.php',  | 
                                                        |
| 1800 | + 'OC\\Log\\ExceptionSerializer' => __DIR__.'/../../..'.'/lib/private/Log/ExceptionSerializer.php',  | 
                                                        |
| 1801 | + 'OC\\Log\\File' => __DIR__.'/../../..'.'/lib/private/Log/File.php',  | 
                                                        |
| 1802 | + 'OC\\Log\\LogDetails' => __DIR__.'/../../..'.'/lib/private/Log/LogDetails.php',  | 
                                                        |
| 1803 | + 'OC\\Log\\LogFactory' => __DIR__.'/../../..'.'/lib/private/Log/LogFactory.php',  | 
                                                        |
| 1804 | + 'OC\\Log\\PsrLoggerAdapter' => __DIR__.'/../../..'.'/lib/private/Log/PsrLoggerAdapter.php',  | 
                                                        |
| 1805 | + 'OC\\Log\\Rotate' => __DIR__.'/../../..'.'/lib/private/Log/Rotate.php',  | 
                                                        |
| 1806 | + 'OC\\Log\\Syslog' => __DIR__.'/../../..'.'/lib/private/Log/Syslog.php',  | 
                                                        |
| 1807 | + 'OC\\Log\\Systemdlog' => __DIR__.'/../../..'.'/lib/private/Log/Systemdlog.php',  | 
                                                        |
| 1808 | + 'OC\\Mail\\Attachment' => __DIR__.'/../../..'.'/lib/private/Mail/Attachment.php',  | 
                                                        |
| 1809 | + 'OC\\Mail\\EMailTemplate' => __DIR__.'/../../..'.'/lib/private/Mail/EMailTemplate.php',  | 
                                                        |
| 1810 | + 'OC\\Mail\\Mailer' => __DIR__.'/../../..'.'/lib/private/Mail/Mailer.php',  | 
                                                        |
| 1811 | + 'OC\\Mail\\Message' => __DIR__.'/../../..'.'/lib/private/Mail/Message.php',  | 
                                                        |
| 1812 | + 'OC\\Mail\\Provider\\Manager' => __DIR__.'/../../..'.'/lib/private/Mail/Provider/Manager.php',  | 
                                                        |
| 1813 | + 'OC\\Memcache\\APCu' => __DIR__.'/../../..'.'/lib/private/Memcache/APCu.php',  | 
                                                        |
| 1814 | + 'OC\\Memcache\\ArrayCache' => __DIR__.'/../../..'.'/lib/private/Memcache/ArrayCache.php',  | 
                                                        |
| 1815 | + 'OC\\Memcache\\CADTrait' => __DIR__.'/../../..'.'/lib/private/Memcache/CADTrait.php',  | 
                                                        |
| 1816 | + 'OC\\Memcache\\CASTrait' => __DIR__.'/../../..'.'/lib/private/Memcache/CASTrait.php',  | 
                                                        |
| 1817 | + 'OC\\Memcache\\Cache' => __DIR__.'/../../..'.'/lib/private/Memcache/Cache.php',  | 
                                                        |
| 1818 | + 'OC\\Memcache\\Factory' => __DIR__.'/../../..'.'/lib/private/Memcache/Factory.php',  | 
                                                        |
| 1819 | + 'OC\\Memcache\\LoggerWrapperCache' => __DIR__.'/../../..'.'/lib/private/Memcache/LoggerWrapperCache.php',  | 
                                                        |
| 1820 | + 'OC\\Memcache\\Memcached' => __DIR__.'/../../..'.'/lib/private/Memcache/Memcached.php',  | 
                                                        |
| 1821 | + 'OC\\Memcache\\NullCache' => __DIR__.'/../../..'.'/lib/private/Memcache/NullCache.php',  | 
                                                        |
| 1822 | + 'OC\\Memcache\\ProfilerWrapperCache' => __DIR__.'/../../..'.'/lib/private/Memcache/ProfilerWrapperCache.php',  | 
                                                        |
| 1823 | + 'OC\\Memcache\\Redis' => __DIR__.'/../../..'.'/lib/private/Memcache/Redis.php',  | 
                                                        |
| 1824 | + 'OC\\Memcache\\WithLocalCache' => __DIR__.'/../../..'.'/lib/private/Memcache/WithLocalCache.php',  | 
                                                        |
| 1825 | + 'OC\\MemoryInfo' => __DIR__.'/../../..'.'/lib/private/MemoryInfo.php',  | 
                                                        |
| 1826 | + 'OC\\Migration\\BackgroundRepair' => __DIR__.'/../../..'.'/lib/private/Migration/BackgroundRepair.php',  | 
                                                        |
| 1827 | + 'OC\\Migration\\ConsoleOutput' => __DIR__.'/../../..'.'/lib/private/Migration/ConsoleOutput.php',  | 
                                                        |
| 1828 | + 'OC\\Migration\\Exceptions\\AttributeException' => __DIR__.'/../../..'.'/lib/private/Migration/Exceptions/AttributeException.php',  | 
                                                        |
| 1829 | + 'OC\\Migration\\MetadataManager' => __DIR__.'/../../..'.'/lib/private/Migration/MetadataManager.php',  | 
                                                        |
| 1830 | + 'OC\\Migration\\NullOutput' => __DIR__.'/../../..'.'/lib/private/Migration/NullOutput.php',  | 
                                                        |
| 1831 | + 'OC\\Migration\\SimpleOutput' => __DIR__.'/../../..'.'/lib/private/Migration/SimpleOutput.php',  | 
                                                        |
| 1832 | + 'OC\\NaturalSort' => __DIR__.'/../../..'.'/lib/private/NaturalSort.php',  | 
                                                        |
| 1833 | + 'OC\\NaturalSort_DefaultCollator' => __DIR__.'/../../..'.'/lib/private/NaturalSort_DefaultCollator.php',  | 
                                                        |
| 1834 | + 'OC\\NavigationManager' => __DIR__.'/../../..'.'/lib/private/NavigationManager.php',  | 
                                                        |
| 1835 | + 'OC\\NeedsUpdateException' => __DIR__.'/../../..'.'/lib/private/NeedsUpdateException.php',  | 
                                                        |
| 1836 | + 'OC\\Net\\HostnameClassifier' => __DIR__.'/../../..'.'/lib/private/Net/HostnameClassifier.php',  | 
                                                        |
| 1837 | + 'OC\\Net\\IpAddressClassifier' => __DIR__.'/../../..'.'/lib/private/Net/IpAddressClassifier.php',  | 
                                                        |
| 1838 | + 'OC\\NotSquareException' => __DIR__.'/../../..'.'/lib/private/NotSquareException.php',  | 
                                                        |
| 1839 | + 'OC\\Notification\\Action' => __DIR__.'/../../..'.'/lib/private/Notification/Action.php',  | 
                                                        |
| 1840 | + 'OC\\Notification\\Manager' => __DIR__.'/../../..'.'/lib/private/Notification/Manager.php',  | 
                                                        |
| 1841 | + 'OC\\Notification\\Notification' => __DIR__.'/../../..'.'/lib/private/Notification/Notification.php',  | 
                                                        |
| 1842 | + 'OC\\OCM\\Model\\OCMProvider' => __DIR__.'/../../..'.'/lib/private/OCM/Model/OCMProvider.php',  | 
                                                        |
| 1843 | + 'OC\\OCM\\Model\\OCMResource' => __DIR__.'/../../..'.'/lib/private/OCM/Model/OCMResource.php',  | 
                                                        |
| 1844 | + 'OC\\OCM\\OCMDiscoveryService' => __DIR__.'/../../..'.'/lib/private/OCM/OCMDiscoveryService.php',  | 
                                                        |
| 1845 | + 'OC\\OCM\\OCMSignatoryManager' => __DIR__.'/../../..'.'/lib/private/OCM/OCMSignatoryManager.php',  | 
                                                        |
| 1846 | + 'OC\\OCS\\ApiHelper' => __DIR__.'/../../..'.'/lib/private/OCS/ApiHelper.php',  | 
                                                        |
| 1847 | + 'OC\\OCS\\CoreCapabilities' => __DIR__.'/../../..'.'/lib/private/OCS/CoreCapabilities.php',  | 
                                                        |
| 1848 | + 'OC\\OCS\\DiscoveryService' => __DIR__.'/../../..'.'/lib/private/OCS/DiscoveryService.php',  | 
                                                        |
| 1849 | + 'OC\\OCS\\Provider' => __DIR__.'/../../..'.'/lib/private/OCS/Provider.php',  | 
                                                        |
| 1850 | + 'OC\\PhoneNumberUtil' => __DIR__.'/../../..'.'/lib/private/PhoneNumberUtil.php',  | 
                                                        |
| 1851 | + 'OC\\PreviewManager' => __DIR__.'/../../..'.'/lib/private/PreviewManager.php',  | 
                                                        |
| 1852 | + 'OC\\PreviewNotAvailableException' => __DIR__.'/../../..'.'/lib/private/PreviewNotAvailableException.php',  | 
                                                        |
| 1853 | + 'OC\\Preview\\BMP' => __DIR__.'/../../..'.'/lib/private/Preview/BMP.php',  | 
                                                        |
| 1854 | + 'OC\\Preview\\BackgroundCleanupJob' => __DIR__.'/../../..'.'/lib/private/Preview/BackgroundCleanupJob.php',  | 
                                                        |
| 1855 | + 'OC\\Preview\\Bitmap' => __DIR__.'/../../..'.'/lib/private/Preview/Bitmap.php',  | 
                                                        |
| 1856 | + 'OC\\Preview\\Bundled' => __DIR__.'/../../..'.'/lib/private/Preview/Bundled.php',  | 
                                                        |
| 1857 | + 'OC\\Preview\\EMF' => __DIR__.'/../../..'.'/lib/private/Preview/EMF.php',  | 
                                                        |
| 1858 | + 'OC\\Preview\\Font' => __DIR__.'/../../..'.'/lib/private/Preview/Font.php',  | 
                                                        |
| 1859 | + 'OC\\Preview\\GIF' => __DIR__.'/../../..'.'/lib/private/Preview/GIF.php',  | 
                                                        |
| 1860 | + 'OC\\Preview\\Generator' => __DIR__.'/../../..'.'/lib/private/Preview/Generator.php',  | 
                                                        |
| 1861 | + 'OC\\Preview\\GeneratorHelper' => __DIR__.'/../../..'.'/lib/private/Preview/GeneratorHelper.php',  | 
                                                        |
| 1862 | + 'OC\\Preview\\HEIC' => __DIR__.'/../../..'.'/lib/private/Preview/HEIC.php',  | 
                                                        |
| 1863 | + 'OC\\Preview\\IMagickSupport' => __DIR__.'/../../..'.'/lib/private/Preview/IMagickSupport.php',  | 
                                                        |
| 1864 | + 'OC\\Preview\\Illustrator' => __DIR__.'/../../..'.'/lib/private/Preview/Illustrator.php',  | 
                                                        |
| 1865 | + 'OC\\Preview\\Image' => __DIR__.'/../../..'.'/lib/private/Preview/Image.php',  | 
                                                        |
| 1866 | + 'OC\\Preview\\Imaginary' => __DIR__.'/../../..'.'/lib/private/Preview/Imaginary.php',  | 
                                                        |
| 1867 | + 'OC\\Preview\\ImaginaryPDF' => __DIR__.'/../../..'.'/lib/private/Preview/ImaginaryPDF.php',  | 
                                                        |
| 1868 | + 'OC\\Preview\\JPEG' => __DIR__.'/../../..'.'/lib/private/Preview/JPEG.php',  | 
                                                        |
| 1869 | + 'OC\\Preview\\Krita' => __DIR__.'/../../..'.'/lib/private/Preview/Krita.php',  | 
                                                        |
| 1870 | + 'OC\\Preview\\MP3' => __DIR__.'/../../..'.'/lib/private/Preview/MP3.php',  | 
                                                        |
| 1871 | + 'OC\\Preview\\MSOffice2003' => __DIR__.'/../../..'.'/lib/private/Preview/MSOffice2003.php',  | 
                                                        |
| 1872 | + 'OC\\Preview\\MSOffice2007' => __DIR__.'/../../..'.'/lib/private/Preview/MSOffice2007.php',  | 
                                                        |
| 1873 | + 'OC\\Preview\\MSOfficeDoc' => __DIR__.'/../../..'.'/lib/private/Preview/MSOfficeDoc.php',  | 
                                                        |
| 1874 | + 'OC\\Preview\\MarkDown' => __DIR__.'/../../..'.'/lib/private/Preview/MarkDown.php',  | 
                                                        |
| 1875 | + 'OC\\Preview\\MimeIconProvider' => __DIR__.'/../../..'.'/lib/private/Preview/MimeIconProvider.php',  | 
                                                        |
| 1876 | + 'OC\\Preview\\Movie' => __DIR__.'/../../..'.'/lib/private/Preview/Movie.php',  | 
                                                        |
| 1877 | + 'OC\\Preview\\Office' => __DIR__.'/../../..'.'/lib/private/Preview/Office.php',  | 
                                                        |
| 1878 | + 'OC\\Preview\\OpenDocument' => __DIR__.'/../../..'.'/lib/private/Preview/OpenDocument.php',  | 
                                                        |
| 1879 | + 'OC\\Preview\\PDF' => __DIR__.'/../../..'.'/lib/private/Preview/PDF.php',  | 
                                                        |
| 1880 | + 'OC\\Preview\\PNG' => __DIR__.'/../../..'.'/lib/private/Preview/PNG.php',  | 
                                                        |
| 1881 | + 'OC\\Preview\\Photoshop' => __DIR__.'/../../..'.'/lib/private/Preview/Photoshop.php',  | 
                                                        |
| 1882 | + 'OC\\Preview\\Postscript' => __DIR__.'/../../..'.'/lib/private/Preview/Postscript.php',  | 
                                                        |
| 1883 | + 'OC\\Preview\\Provider' => __DIR__.'/../../..'.'/lib/private/Preview/Provider.php',  | 
                                                        |
| 1884 | + 'OC\\Preview\\ProviderV1Adapter' => __DIR__.'/../../..'.'/lib/private/Preview/ProviderV1Adapter.php',  | 
                                                        |
| 1885 | + 'OC\\Preview\\ProviderV2' => __DIR__.'/../../..'.'/lib/private/Preview/ProviderV2.php',  | 
                                                        |
| 1886 | + 'OC\\Preview\\SGI' => __DIR__.'/../../..'.'/lib/private/Preview/SGI.php',  | 
                                                        |
| 1887 | + 'OC\\Preview\\SVG' => __DIR__.'/../../..'.'/lib/private/Preview/SVG.php',  | 
                                                        |
| 1888 | + 'OC\\Preview\\StarOffice' => __DIR__.'/../../..'.'/lib/private/Preview/StarOffice.php',  | 
                                                        |
| 1889 | + 'OC\\Preview\\Storage\\Root' => __DIR__.'/../../..'.'/lib/private/Preview/Storage/Root.php',  | 
                                                        |
| 1890 | + 'OC\\Preview\\TGA' => __DIR__.'/../../..'.'/lib/private/Preview/TGA.php',  | 
                                                        |
| 1891 | + 'OC\\Preview\\TIFF' => __DIR__.'/../../..'.'/lib/private/Preview/TIFF.php',  | 
                                                        |
| 1892 | + 'OC\\Preview\\TXT' => __DIR__.'/../../..'.'/lib/private/Preview/TXT.php',  | 
                                                        |
| 1893 | + 'OC\\Preview\\Watcher' => __DIR__.'/../../..'.'/lib/private/Preview/Watcher.php',  | 
                                                        |
| 1894 | + 'OC\\Preview\\WatcherConnector' => __DIR__.'/../../..'.'/lib/private/Preview/WatcherConnector.php',  | 
                                                        |
| 1895 | + 'OC\\Preview\\WebP' => __DIR__.'/../../..'.'/lib/private/Preview/WebP.php',  | 
                                                        |
| 1896 | + 'OC\\Preview\\XBitmap' => __DIR__.'/../../..'.'/lib/private/Preview/XBitmap.php',  | 
                                                        |
| 1897 | + 'OC\\Profile\\Actions\\EmailAction' => __DIR__.'/../../..'.'/lib/private/Profile/Actions/EmailAction.php',  | 
                                                        |
| 1898 | + 'OC\\Profile\\Actions\\FediverseAction' => __DIR__.'/../../..'.'/lib/private/Profile/Actions/FediverseAction.php',  | 
                                                        |
| 1899 | + 'OC\\Profile\\Actions\\PhoneAction' => __DIR__.'/../../..'.'/lib/private/Profile/Actions/PhoneAction.php',  | 
                                                        |
| 1900 | + 'OC\\Profile\\Actions\\TwitterAction' => __DIR__.'/../../..'.'/lib/private/Profile/Actions/TwitterAction.php',  | 
                                                        |
| 1901 | + 'OC\\Profile\\Actions\\WebsiteAction' => __DIR__.'/../../..'.'/lib/private/Profile/Actions/WebsiteAction.php',  | 
                                                        |
| 1902 | + 'OC\\Profile\\ProfileManager' => __DIR__.'/../../..'.'/lib/private/Profile/ProfileManager.php',  | 
                                                        |
| 1903 | + 'OC\\Profile\\TProfileHelper' => __DIR__.'/../../..'.'/lib/private/Profile/TProfileHelper.php',  | 
                                                        |
| 1904 | + 'OC\\Profiler\\FileProfilerStorage' => __DIR__.'/../../..'.'/lib/private/Profiler/FileProfilerStorage.php',  | 
                                                        |
| 1905 | + 'OC\\Profiler\\Profile' => __DIR__.'/../../..'.'/lib/private/Profiler/Profile.php',  | 
                                                        |
| 1906 | + 'OC\\Profiler\\Profiler' => __DIR__.'/../../..'.'/lib/private/Profiler/Profiler.php',  | 
                                                        |
| 1907 | + 'OC\\Profiler\\RoutingDataCollector' => __DIR__.'/../../..'.'/lib/private/Profiler/RoutingDataCollector.php',  | 
                                                        |
| 1908 | + 'OC\\RedisFactory' => __DIR__.'/../../..'.'/lib/private/RedisFactory.php',  | 
                                                        |
| 1909 | + 'OC\\Remote\\Api\\ApiBase' => __DIR__.'/../../..'.'/lib/private/Remote/Api/ApiBase.php',  | 
                                                        |
| 1910 | + 'OC\\Remote\\Api\\ApiCollection' => __DIR__.'/../../..'.'/lib/private/Remote/Api/ApiCollection.php',  | 
                                                        |
| 1911 | + 'OC\\Remote\\Api\\ApiFactory' => __DIR__.'/../../..'.'/lib/private/Remote/Api/ApiFactory.php',  | 
                                                        |
| 1912 | + 'OC\\Remote\\Api\\NotFoundException' => __DIR__.'/../../..'.'/lib/private/Remote/Api/NotFoundException.php',  | 
                                                        |
| 1913 | + 'OC\\Remote\\Api\\OCS' => __DIR__.'/../../..'.'/lib/private/Remote/Api/OCS.php',  | 
                                                        |
| 1914 | + 'OC\\Remote\\Credentials' => __DIR__.'/../../..'.'/lib/private/Remote/Credentials.php',  | 
                                                        |
| 1915 | + 'OC\\Remote\\Instance' => __DIR__.'/../../..'.'/lib/private/Remote/Instance.php',  | 
                                                        |
| 1916 | + 'OC\\Remote\\InstanceFactory' => __DIR__.'/../../..'.'/lib/private/Remote/InstanceFactory.php',  | 
                                                        |
| 1917 | + 'OC\\Remote\\User' => __DIR__.'/../../..'.'/lib/private/Remote/User.php',  | 
                                                        |
| 1918 | + 'OC\\Repair' => __DIR__.'/../../..'.'/lib/private/Repair.php',  | 
                                                        |
| 1919 | + 'OC\\RepairException' => __DIR__.'/../../..'.'/lib/private/RepairException.php',  | 
                                                        |
| 1920 | + 'OC\\Repair\\AddAppConfigLazyMigration' => __DIR__.'/../../..'.'/lib/private/Repair/AddAppConfigLazyMigration.php',  | 
                                                        |
| 1921 | + 'OC\\Repair\\AddBruteForceCleanupJob' => __DIR__.'/../../..'.'/lib/private/Repair/AddBruteForceCleanupJob.php',  | 
                                                        |
| 1922 | + 'OC\\Repair\\AddCleanupDeletedUsersBackgroundJob' => __DIR__.'/../../..'.'/lib/private/Repair/AddCleanupDeletedUsersBackgroundJob.php',  | 
                                                        |
| 1923 | + 'OC\\Repair\\AddCleanupUpdaterBackupsJob' => __DIR__.'/../../..'.'/lib/private/Repair/AddCleanupUpdaterBackupsJob.php',  | 
                                                        |
| 1924 | + 'OC\\Repair\\AddMetadataGenerationJob' => __DIR__.'/../../..'.'/lib/private/Repair/AddMetadataGenerationJob.php',  | 
                                                        |
| 1925 | + 'OC\\Repair\\AddRemoveOldTasksBackgroundJob' => __DIR__.'/../../..'.'/lib/private/Repair/AddRemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 1926 | + 'OC\\Repair\\CleanTags' => __DIR__.'/../../..'.'/lib/private/Repair/CleanTags.php',  | 
                                                        |
| 1927 | + 'OC\\Repair\\CleanUpAbandonedApps' => __DIR__.'/../../..'.'/lib/private/Repair/CleanUpAbandonedApps.php',  | 
                                                        |
| 1928 | + 'OC\\Repair\\ClearFrontendCaches' => __DIR__.'/../../..'.'/lib/private/Repair/ClearFrontendCaches.php',  | 
                                                        |
| 1929 | + 'OC\\Repair\\ClearGeneratedAvatarCache' => __DIR__.'/../../..'.'/lib/private/Repair/ClearGeneratedAvatarCache.php',  | 
                                                        |
| 1930 | + 'OC\\Repair\\ClearGeneratedAvatarCacheJob' => __DIR__.'/../../..'.'/lib/private/Repair/ClearGeneratedAvatarCacheJob.php',  | 
                                                        |
| 1931 | + 'OC\\Repair\\Collation' => __DIR__.'/../../..'.'/lib/private/Repair/Collation.php',  | 
                                                        |
| 1932 | + 'OC\\Repair\\Events\\RepairAdvanceEvent' => __DIR__.'/../../..'.'/lib/private/Repair/Events/RepairAdvanceEvent.php',  | 
                                                        |
| 1933 | + 'OC\\Repair\\Events\\RepairErrorEvent' => __DIR__.'/../../..'.'/lib/private/Repair/Events/RepairErrorEvent.php',  | 
                                                        |
| 1934 | + 'OC\\Repair\\Events\\RepairFinishEvent' => __DIR__.'/../../..'.'/lib/private/Repair/Events/RepairFinishEvent.php',  | 
                                                        |
| 1935 | + 'OC\\Repair\\Events\\RepairInfoEvent' => __DIR__.'/../../..'.'/lib/private/Repair/Events/RepairInfoEvent.php',  | 
                                                        |
| 1936 | + 'OC\\Repair\\Events\\RepairStartEvent' => __DIR__.'/../../..'.'/lib/private/Repair/Events/RepairStartEvent.php',  | 
                                                        |
| 1937 | + 'OC\\Repair\\Events\\RepairStepEvent' => __DIR__.'/../../..'.'/lib/private/Repair/Events/RepairStepEvent.php',  | 
                                                        |
| 1938 | + 'OC\\Repair\\Events\\RepairWarningEvent' => __DIR__.'/../../..'.'/lib/private/Repair/Events/RepairWarningEvent.php',  | 
                                                        |
| 1939 | + 'OC\\Repair\\MoveUpdaterStepFile' => __DIR__.'/../../..'.'/lib/private/Repair/MoveUpdaterStepFile.php',  | 
                                                        |
| 1940 | + 'OC\\Repair\\NC13\\AddLogRotateJob' => __DIR__.'/../../..'.'/lib/private/Repair/NC13/AddLogRotateJob.php',  | 
                                                        |
| 1941 | + 'OC\\Repair\\NC14\\AddPreviewBackgroundCleanupJob' => __DIR__.'/../../..'.'/lib/private/Repair/NC14/AddPreviewBackgroundCleanupJob.php',  | 
                                                        |
| 1942 | + 'OC\\Repair\\NC16\\AddClenupLoginFlowV2BackgroundJob' => __DIR__.'/../../..'.'/lib/private/Repair/NC16/AddClenupLoginFlowV2BackgroundJob.php',  | 
                                                        |
| 1943 | + 'OC\\Repair\\NC16\\CleanupCardDAVPhotoCache' => __DIR__.'/../../..'.'/lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php',  | 
                                                        |
| 1944 | + 'OC\\Repair\\NC16\\ClearCollectionsAccessCache' => __DIR__.'/../../..'.'/lib/private/Repair/NC16/ClearCollectionsAccessCache.php',  | 
                                                        |
| 1945 | + 'OC\\Repair\\NC18\\ResetGeneratedAvatarFlag' => __DIR__.'/../../..'.'/lib/private/Repair/NC18/ResetGeneratedAvatarFlag.php',  | 
                                                        |
| 1946 | + 'OC\\Repair\\NC20\\EncryptionLegacyCipher' => __DIR__.'/../../..'.'/lib/private/Repair/NC20/EncryptionLegacyCipher.php',  | 
                                                        |
| 1947 | + 'OC\\Repair\\NC20\\EncryptionMigration' => __DIR__.'/../../..'.'/lib/private/Repair/NC20/EncryptionMigration.php',  | 
                                                        |
| 1948 | + 'OC\\Repair\\NC20\\ShippedDashboardEnable' => __DIR__.'/../../..'.'/lib/private/Repair/NC20/ShippedDashboardEnable.php',  | 
                                                        |
| 1949 | + 'OC\\Repair\\NC21\\AddCheckForUserCertificatesJob' => __DIR__.'/../../..'.'/lib/private/Repair/NC21/AddCheckForUserCertificatesJob.php',  | 
                                                        |
| 1950 | + 'OC\\Repair\\NC22\\LookupServerSendCheck' => __DIR__.'/../../..'.'/lib/private/Repair/NC22/LookupServerSendCheck.php',  | 
                                                        |
| 1951 | + 'OC\\Repair\\NC24\\AddTokenCleanupJob' => __DIR__.'/../../..'.'/lib/private/Repair/NC24/AddTokenCleanupJob.php',  | 
                                                        |
| 1952 | + 'OC\\Repair\\NC25\\AddMissingSecretJob' => __DIR__.'/../../..'.'/lib/private/Repair/NC25/AddMissingSecretJob.php',  | 
                                                        |
| 1953 | + 'OC\\Repair\\NC29\\SanitizeAccountProperties' => __DIR__.'/../../..'.'/lib/private/Repair/NC29/SanitizeAccountProperties.php',  | 
                                                        |
| 1954 | + 'OC\\Repair\\NC29\\SanitizeAccountPropertiesJob' => __DIR__.'/../../..'.'/lib/private/Repair/NC29/SanitizeAccountPropertiesJob.php',  | 
                                                        |
| 1955 | + 'OC\\Repair\\NC30\\RemoveLegacyDatadirFile' => __DIR__.'/../../..'.'/lib/private/Repair/NC30/RemoveLegacyDatadirFile.php',  | 
                                                        |
| 1956 | + 'OC\\Repair\\OldGroupMembershipShares' => __DIR__.'/../../..'.'/lib/private/Repair/OldGroupMembershipShares.php',  | 
                                                        |
| 1957 | + 'OC\\Repair\\Owncloud\\CleanPreviews' => __DIR__.'/../../..'.'/lib/private/Repair/Owncloud/CleanPreviews.php',  | 
                                                        |
| 1958 | + 'OC\\Repair\\Owncloud\\CleanPreviewsBackgroundJob' => __DIR__.'/../../..'.'/lib/private/Repair/Owncloud/CleanPreviewsBackgroundJob.php',  | 
                                                        |
| 1959 | + 'OC\\Repair\\Owncloud\\DropAccountTermsTable' => __DIR__.'/../../..'.'/lib/private/Repair/Owncloud/DropAccountTermsTable.php',  | 
                                                        |
| 1960 | + 'OC\\Repair\\Owncloud\\MigrateOauthTables' => __DIR__.'/../../..'.'/lib/private/Repair/Owncloud/MigrateOauthTables.php',  | 
                                                        |
| 1961 | + 'OC\\Repair\\Owncloud\\MoveAvatars' => __DIR__.'/../../..'.'/lib/private/Repair/Owncloud/MoveAvatars.php',  | 
                                                        |
| 1962 | + 'OC\\Repair\\Owncloud\\MoveAvatarsBackgroundJob' => __DIR__.'/../../..'.'/lib/private/Repair/Owncloud/MoveAvatarsBackgroundJob.php',  | 
                                                        |
| 1963 | + 'OC\\Repair\\Owncloud\\SaveAccountsTableData' => __DIR__.'/../../..'.'/lib/private/Repair/Owncloud/SaveAccountsTableData.php',  | 
                                                        |
| 1964 | + 'OC\\Repair\\Owncloud\\UpdateLanguageCodes' => __DIR__.'/../../..'.'/lib/private/Repair/Owncloud/UpdateLanguageCodes.php',  | 
                                                        |
| 1965 | + 'OC\\Repair\\RemoveBrokenProperties' => __DIR__.'/../../..'.'/lib/private/Repair/RemoveBrokenProperties.php',  | 
                                                        |
| 1966 | + 'OC\\Repair\\RemoveLinkShares' => __DIR__.'/../../..'.'/lib/private/Repair/RemoveLinkShares.php',  | 
                                                        |
| 1967 | + 'OC\\Repair\\RepairDavShares' => __DIR__.'/../../..'.'/lib/private/Repair/RepairDavShares.php',  | 
                                                        |
| 1968 | + 'OC\\Repair\\RepairInvalidShares' => __DIR__.'/../../..'.'/lib/private/Repair/RepairInvalidShares.php',  | 
                                                        |
| 1969 | + 'OC\\Repair\\RepairLogoDimension' => __DIR__.'/../../..'.'/lib/private/Repair/RepairLogoDimension.php',  | 
                                                        |
| 1970 | + 'OC\\Repair\\RepairMimeTypes' => __DIR__.'/../../..'.'/lib/private/Repair/RepairMimeTypes.php',  | 
                                                        |
| 1971 | + 'OC\\RichObjectStrings\\RichTextFormatter' => __DIR__.'/../../..'.'/lib/private/RichObjectStrings/RichTextFormatter.php',  | 
                                                        |
| 1972 | + 'OC\\RichObjectStrings\\Validator' => __DIR__.'/../../..'.'/lib/private/RichObjectStrings/Validator.php',  | 
                                                        |
| 1973 | + 'OC\\Route\\CachingRouter' => __DIR__.'/../../..'.'/lib/private/Route/CachingRouter.php',  | 
                                                        |
| 1974 | + 'OC\\Route\\Route' => __DIR__.'/../../..'.'/lib/private/Route/Route.php',  | 
                                                        |
| 1975 | + 'OC\\Route\\Router' => __DIR__.'/../../..'.'/lib/private/Route/Router.php',  | 
                                                        |
| 1976 | + 'OC\\Search\\FilterCollection' => __DIR__.'/../../..'.'/lib/private/Search/FilterCollection.php',  | 
                                                        |
| 1977 | + 'OC\\Search\\FilterFactory' => __DIR__.'/../../..'.'/lib/private/Search/FilterFactory.php',  | 
                                                        |
| 1978 | + 'OC\\Search\\Filter\\BooleanFilter' => __DIR__.'/../../..'.'/lib/private/Search/Filter/BooleanFilter.php',  | 
                                                        |
| 1979 | + 'OC\\Search\\Filter\\DateTimeFilter' => __DIR__.'/../../..'.'/lib/private/Search/Filter/DateTimeFilter.php',  | 
                                                        |
| 1980 | + 'OC\\Search\\Filter\\FloatFilter' => __DIR__.'/../../..'.'/lib/private/Search/Filter/FloatFilter.php',  | 
                                                        |
| 1981 | + 'OC\\Search\\Filter\\GroupFilter' => __DIR__.'/../../..'.'/lib/private/Search/Filter/GroupFilter.php',  | 
                                                        |
| 1982 | + 'OC\\Search\\Filter\\IntegerFilter' => __DIR__.'/../../..'.'/lib/private/Search/Filter/IntegerFilter.php',  | 
                                                        |
| 1983 | + 'OC\\Search\\Filter\\StringFilter' => __DIR__.'/../../..'.'/lib/private/Search/Filter/StringFilter.php',  | 
                                                        |
| 1984 | + 'OC\\Search\\Filter\\StringsFilter' => __DIR__.'/../../..'.'/lib/private/Search/Filter/StringsFilter.php',  | 
                                                        |
| 1985 | + 'OC\\Search\\Filter\\UserFilter' => __DIR__.'/../../..'.'/lib/private/Search/Filter/UserFilter.php',  | 
                                                        |
| 1986 | + 'OC\\Search\\SearchComposer' => __DIR__.'/../../..'.'/lib/private/Search/SearchComposer.php',  | 
                                                        |
| 1987 | + 'OC\\Search\\SearchQuery' => __DIR__.'/../../..'.'/lib/private/Search/SearchQuery.php',  | 
                                                        |
| 1988 | + 'OC\\Search\\UnsupportedFilter' => __DIR__.'/../../..'.'/lib/private/Search/UnsupportedFilter.php',  | 
                                                        |
| 1989 | + 'OC\\Security\\Bruteforce\\Backend\\DatabaseBackend' => __DIR__.'/../../..'.'/lib/private/Security/Bruteforce/Backend/DatabaseBackend.php',  | 
                                                        |
| 1990 | + 'OC\\Security\\Bruteforce\\Backend\\IBackend' => __DIR__.'/../../..'.'/lib/private/Security/Bruteforce/Backend/IBackend.php',  | 
                                                        |
| 1991 | + 'OC\\Security\\Bruteforce\\Backend\\MemoryCacheBackend' => __DIR__.'/../../..'.'/lib/private/Security/Bruteforce/Backend/MemoryCacheBackend.php',  | 
                                                        |
| 1992 | + 'OC\\Security\\Bruteforce\\Capabilities' => __DIR__.'/../../..'.'/lib/private/Security/Bruteforce/Capabilities.php',  | 
                                                        |
| 1993 | + 'OC\\Security\\Bruteforce\\CleanupJob' => __DIR__.'/../../..'.'/lib/private/Security/Bruteforce/CleanupJob.php',  | 
                                                        |
| 1994 | + 'OC\\Security\\Bruteforce\\Throttler' => __DIR__.'/../../..'.'/lib/private/Security/Bruteforce/Throttler.php',  | 
                                                        |
| 1995 | + 'OC\\Security\\CSP\\ContentSecurityPolicy' => __DIR__.'/../../..'.'/lib/private/Security/CSP/ContentSecurityPolicy.php',  | 
                                                        |
| 1996 | + 'OC\\Security\\CSP\\ContentSecurityPolicyManager' => __DIR__.'/../../..'.'/lib/private/Security/CSP/ContentSecurityPolicyManager.php',  | 
                                                        |
| 1997 | + 'OC\\Security\\CSP\\ContentSecurityPolicyNonceManager' => __DIR__.'/../../..'.'/lib/private/Security/CSP/ContentSecurityPolicyNonceManager.php',  | 
                                                        |
| 1998 | + 'OC\\Security\\CSRF\\CsrfToken' => __DIR__.'/../../..'.'/lib/private/Security/CSRF/CsrfToken.php',  | 
                                                        |
| 1999 | + 'OC\\Security\\CSRF\\CsrfTokenGenerator' => __DIR__.'/../../..'.'/lib/private/Security/CSRF/CsrfTokenGenerator.php',  | 
                                                        |
| 2000 | + 'OC\\Security\\CSRF\\CsrfTokenManager' => __DIR__.'/../../..'.'/lib/private/Security/CSRF/CsrfTokenManager.php',  | 
                                                        |
| 2001 | + 'OC\\Security\\CSRF\\TokenStorage\\SessionStorage' => __DIR__.'/../../..'.'/lib/private/Security/CSRF/TokenStorage/SessionStorage.php',  | 
                                                        |
| 2002 | + 'OC\\Security\\Certificate' => __DIR__.'/../../..'.'/lib/private/Security/Certificate.php',  | 
                                                        |
| 2003 | + 'OC\\Security\\CertificateManager' => __DIR__.'/../../..'.'/lib/private/Security/CertificateManager.php',  | 
                                                        |
| 2004 | + 'OC\\Security\\CredentialsManager' => __DIR__.'/../../..'.'/lib/private/Security/CredentialsManager.php',  | 
                                                        |
| 2005 | + 'OC\\Security\\Crypto' => __DIR__.'/../../..'.'/lib/private/Security/Crypto.php',  | 
                                                        |
| 2006 | + 'OC\\Security\\FeaturePolicy\\FeaturePolicy' => __DIR__.'/../../..'.'/lib/private/Security/FeaturePolicy/FeaturePolicy.php',  | 
                                                        |
| 2007 | + 'OC\\Security\\FeaturePolicy\\FeaturePolicyManager' => __DIR__.'/../../..'.'/lib/private/Security/FeaturePolicy/FeaturePolicyManager.php',  | 
                                                        |
| 2008 | + 'OC\\Security\\Hasher' => __DIR__.'/../../..'.'/lib/private/Security/Hasher.php',  | 
                                                        |
| 2009 | + 'OC\\Security\\IdentityProof\\Key' => __DIR__.'/../../..'.'/lib/private/Security/IdentityProof/Key.php',  | 
                                                        |
| 2010 | + 'OC\\Security\\IdentityProof\\Manager' => __DIR__.'/../../..'.'/lib/private/Security/IdentityProof/Manager.php',  | 
                                                        |
| 2011 | + 'OC\\Security\\IdentityProof\\Signer' => __DIR__.'/../../..'.'/lib/private/Security/IdentityProof/Signer.php',  | 
                                                        |
| 2012 | + 'OC\\Security\\Ip\\Address' => __DIR__.'/../../..'.'/lib/private/Security/Ip/Address.php',  | 
                                                        |
| 2013 | + 'OC\\Security\\Ip\\BruteforceAllowList' => __DIR__.'/../../..'.'/lib/private/Security/Ip/BruteforceAllowList.php',  | 
                                                        |
| 2014 | + 'OC\\Security\\Ip\\Factory' => __DIR__.'/../../..'.'/lib/private/Security/Ip/Factory.php',  | 
                                                        |
| 2015 | + 'OC\\Security\\Ip\\Range' => __DIR__.'/../../..'.'/lib/private/Security/Ip/Range.php',  | 
                                                        |
| 2016 | + 'OC\\Security\\Ip\\RemoteAddress' => __DIR__.'/../../..'.'/lib/private/Security/Ip/RemoteAddress.php',  | 
                                                        |
| 2017 | + 'OC\\Security\\Normalizer\\IpAddress' => __DIR__.'/../../..'.'/lib/private/Security/Normalizer/IpAddress.php',  | 
                                                        |
| 2018 | + 'OC\\Security\\RateLimiting\\Backend\\DatabaseBackend' => __DIR__.'/../../..'.'/lib/private/Security/RateLimiting/Backend/DatabaseBackend.php',  | 
                                                        |
| 2019 | + 'OC\\Security\\RateLimiting\\Backend\\IBackend' => __DIR__.'/../../..'.'/lib/private/Security/RateLimiting/Backend/IBackend.php',  | 
                                                        |
| 2020 | + 'OC\\Security\\RateLimiting\\Backend\\MemoryCacheBackend' => __DIR__.'/../../..'.'/lib/private/Security/RateLimiting/Backend/MemoryCacheBackend.php',  | 
                                                        |
| 2021 | + 'OC\\Security\\RateLimiting\\Exception\\RateLimitExceededException' => __DIR__.'/../../..'.'/lib/private/Security/RateLimiting/Exception/RateLimitExceededException.php',  | 
                                                        |
| 2022 | + 'OC\\Security\\RateLimiting\\Limiter' => __DIR__.'/../../..'.'/lib/private/Security/RateLimiting/Limiter.php',  | 
                                                        |
| 2023 | + 'OC\\Security\\RemoteHostValidator' => __DIR__.'/../../..'.'/lib/private/Security/RemoteHostValidator.php',  | 
                                                        |
| 2024 | + 'OC\\Security\\SecureRandom' => __DIR__.'/../../..'.'/lib/private/Security/SecureRandom.php',  | 
                                                        |
| 2025 | + 'OC\\Security\\Signature\\Db\\SignatoryMapper' => __DIR__.'/../../..'.'/lib/private/Security/Signature/Db/SignatoryMapper.php',  | 
                                                        |
| 2026 | + 'OC\\Security\\Signature\\Model\\IncomingSignedRequest' => __DIR__.'/../../..'.'/lib/private/Security/Signature/Model/IncomingSignedRequest.php',  | 
                                                        |
| 2027 | + 'OC\\Security\\Signature\\Model\\OutgoingSignedRequest' => __DIR__.'/../../..'.'/lib/private/Security/Signature/Model/OutgoingSignedRequest.php',  | 
                                                        |
| 2028 | + 'OC\\Security\\Signature\\Model\\SignedRequest' => __DIR__.'/../../..'.'/lib/private/Security/Signature/Model/SignedRequest.php',  | 
                                                        |
| 2029 | + 'OC\\Security\\Signature\\SignatureManager' => __DIR__.'/../../..'.'/lib/private/Security/Signature/SignatureManager.php',  | 
                                                        |
| 2030 | + 'OC\\Security\\TrustedDomainHelper' => __DIR__.'/../../..'.'/lib/private/Security/TrustedDomainHelper.php',  | 
                                                        |
| 2031 | + 'OC\\Security\\VerificationToken\\CleanUpJob' => __DIR__.'/../../..'.'/lib/private/Security/VerificationToken/CleanUpJob.php',  | 
                                                        |
| 2032 | + 'OC\\Security\\VerificationToken\\VerificationToken' => __DIR__.'/../../..'.'/lib/private/Security/VerificationToken/VerificationToken.php',  | 
                                                        |
| 2033 | + 'OC\\Server' => __DIR__.'/../../..'.'/lib/private/Server.php',  | 
                                                        |
| 2034 | + 'OC\\ServerContainer' => __DIR__.'/../../..'.'/lib/private/ServerContainer.php',  | 
                                                        |
| 2035 | + 'OC\\ServerNotAvailableException' => __DIR__.'/../../..'.'/lib/private/ServerNotAvailableException.php',  | 
                                                        |
| 2036 | + 'OC\\ServiceUnavailableException' => __DIR__.'/../../..'.'/lib/private/ServiceUnavailableException.php',  | 
                                                        |
| 2037 | + 'OC\\Session\\CryptoSessionData' => __DIR__.'/../../..'.'/lib/private/Session/CryptoSessionData.php',  | 
                                                        |
| 2038 | + 'OC\\Session\\CryptoWrapper' => __DIR__.'/../../..'.'/lib/private/Session/CryptoWrapper.php',  | 
                                                        |
| 2039 | + 'OC\\Session\\Internal' => __DIR__.'/../../..'.'/lib/private/Session/Internal.php',  | 
                                                        |
| 2040 | + 'OC\\Session\\Memory' => __DIR__.'/../../..'.'/lib/private/Session/Memory.php',  | 
                                                        |
| 2041 | + 'OC\\Session\\Session' => __DIR__.'/../../..'.'/lib/private/Session/Session.php',  | 
                                                        |
| 2042 | + 'OC\\Settings\\AuthorizedGroup' => __DIR__.'/../../..'.'/lib/private/Settings/AuthorizedGroup.php',  | 
                                                        |
| 2043 | + 'OC\\Settings\\AuthorizedGroupMapper' => __DIR__.'/../../..'.'/lib/private/Settings/AuthorizedGroupMapper.php',  | 
                                                        |
| 2044 | + 'OC\\Settings\\DeclarativeManager' => __DIR__.'/../../..'.'/lib/private/Settings/DeclarativeManager.php',  | 
                                                        |
| 2045 | + 'OC\\Settings\\Manager' => __DIR__.'/../../..'.'/lib/private/Settings/Manager.php',  | 
                                                        |
| 2046 | + 'OC\\Settings\\Section' => __DIR__.'/../../..'.'/lib/private/Settings/Section.php',  | 
                                                        |
| 2047 | + 'OC\\Setup' => __DIR__.'/../../..'.'/lib/private/Setup.php',  | 
                                                        |
| 2048 | + 'OC\\SetupCheck\\SetupCheckManager' => __DIR__.'/../../..'.'/lib/private/SetupCheck/SetupCheckManager.php',  | 
                                                        |
| 2049 | + 'OC\\Setup\\AbstractDatabase' => __DIR__.'/../../..'.'/lib/private/Setup/AbstractDatabase.php',  | 
                                                        |
| 2050 | + 'OC\\Setup\\MySQL' => __DIR__.'/../../..'.'/lib/private/Setup/MySQL.php',  | 
                                                        |
| 2051 | + 'OC\\Setup\\OCI' => __DIR__.'/../../..'.'/lib/private/Setup/OCI.php',  | 
                                                        |
| 2052 | + 'OC\\Setup\\PostgreSQL' => __DIR__.'/../../..'.'/lib/private/Setup/PostgreSQL.php',  | 
                                                        |
| 2053 | + 'OC\\Setup\\Sqlite' => __DIR__.'/../../..'.'/lib/private/Setup/Sqlite.php',  | 
                                                        |
| 2054 | + 'OC\\Share20\\DefaultShareProvider' => __DIR__.'/../../..'.'/lib/private/Share20/DefaultShareProvider.php',  | 
                                                        |
| 2055 | + 'OC\\Share20\\Exception\\BackendError' => __DIR__.'/../../..'.'/lib/private/Share20/Exception/BackendError.php',  | 
                                                        |
| 2056 | + 'OC\\Share20\\Exception\\InvalidShare' => __DIR__.'/../../..'.'/lib/private/Share20/Exception/InvalidShare.php',  | 
                                                        |
| 2057 | + 'OC\\Share20\\Exception\\ProviderException' => __DIR__.'/../../..'.'/lib/private/Share20/Exception/ProviderException.php',  | 
                                                        |
| 2058 | + 'OC\\Share20\\GroupDeletedListener' => __DIR__.'/../../..'.'/lib/private/Share20/GroupDeletedListener.php',  | 
                                                        |
| 2059 | + 'OC\\Share20\\LegacyHooks' => __DIR__.'/../../..'.'/lib/private/Share20/LegacyHooks.php',  | 
                                                        |
| 2060 | + 'OC\\Share20\\Manager' => __DIR__.'/../../..'.'/lib/private/Share20/Manager.php',  | 
                                                        |
| 2061 | + 'OC\\Share20\\ProviderFactory' => __DIR__.'/../../..'.'/lib/private/Share20/ProviderFactory.php',  | 
                                                        |
| 2062 | + 'OC\\Share20\\PublicShareTemplateFactory' => __DIR__.'/../../..'.'/lib/private/Share20/PublicShareTemplateFactory.php',  | 
                                                        |
| 2063 | + 'OC\\Share20\\Share' => __DIR__.'/../../..'.'/lib/private/Share20/Share.php',  | 
                                                        |
| 2064 | + 'OC\\Share20\\ShareAttributes' => __DIR__.'/../../..'.'/lib/private/Share20/ShareAttributes.php',  | 
                                                        |
| 2065 | + 'OC\\Share20\\ShareDisableChecker' => __DIR__.'/../../..'.'/lib/private/Share20/ShareDisableChecker.php',  | 
                                                        |
| 2066 | + 'OC\\Share20\\ShareHelper' => __DIR__.'/../../..'.'/lib/private/Share20/ShareHelper.php',  | 
                                                        |
| 2067 | + 'OC\\Share20\\UserDeletedListener' => __DIR__.'/../../..'.'/lib/private/Share20/UserDeletedListener.php',  | 
                                                        |
| 2068 | + 'OC\\Share20\\UserRemovedListener' => __DIR__.'/../../..'.'/lib/private/Share20/UserRemovedListener.php',  | 
                                                        |
| 2069 | + 'OC\\Share\\Constants' => __DIR__.'/../../..'.'/lib/private/Share/Constants.php',  | 
                                                        |
| 2070 | + 'OC\\Share\\Helper' => __DIR__.'/../../..'.'/lib/private/Share/Helper.php',  | 
                                                        |
| 2071 | + 'OC\\Share\\Share' => __DIR__.'/../../..'.'/lib/private/Share/Share.php',  | 
                                                        |
| 2072 | + 'OC\\SpeechToText\\SpeechToTextManager' => __DIR__.'/../../..'.'/lib/private/SpeechToText/SpeechToTextManager.php',  | 
                                                        |
| 2073 | + 'OC\\SpeechToText\\TranscriptionJob' => __DIR__.'/../../..'.'/lib/private/SpeechToText/TranscriptionJob.php',  | 
                                                        |
| 2074 | + 'OC\\StreamImage' => __DIR__.'/../../..'.'/lib/private/StreamImage.php',  | 
                                                        |
| 2075 | + 'OC\\Streamer' => __DIR__.'/../../..'.'/lib/private/Streamer.php',  | 
                                                        |
| 2076 | + 'OC\\SubAdmin' => __DIR__.'/../../..'.'/lib/private/SubAdmin.php',  | 
                                                        |
| 2077 | + 'OC\\Support\\CrashReport\\Registry' => __DIR__.'/../../..'.'/lib/private/Support/CrashReport/Registry.php',  | 
                                                        |
| 2078 | + 'OC\\Support\\Subscription\\Assertion' => __DIR__.'/../../..'.'/lib/private/Support/Subscription/Assertion.php',  | 
                                                        |
| 2079 | + 'OC\\Support\\Subscription\\Registry' => __DIR__.'/../../..'.'/lib/private/Support/Subscription/Registry.php',  | 
                                                        |
| 2080 | + 'OC\\SystemConfig' => __DIR__.'/../../..'.'/lib/private/SystemConfig.php',  | 
                                                        |
| 2081 | + 'OC\\SystemTag\\ManagerFactory' => __DIR__.'/../../..'.'/lib/private/SystemTag/ManagerFactory.php',  | 
                                                        |
| 2082 | + 'OC\\SystemTag\\SystemTag' => __DIR__.'/../../..'.'/lib/private/SystemTag/SystemTag.php',  | 
                                                        |
| 2083 | + 'OC\\SystemTag\\SystemTagManager' => __DIR__.'/../../..'.'/lib/private/SystemTag/SystemTagManager.php',  | 
                                                        |
| 2084 | + 'OC\\SystemTag\\SystemTagObjectMapper' => __DIR__.'/../../..'.'/lib/private/SystemTag/SystemTagObjectMapper.php',  | 
                                                        |
| 2085 | + 'OC\\SystemTag\\SystemTagsInFilesDetector' => __DIR__.'/../../..'.'/lib/private/SystemTag/SystemTagsInFilesDetector.php',  | 
                                                        |
| 2086 | + 'OC\\TagManager' => __DIR__.'/../../..'.'/lib/private/TagManager.php',  | 
                                                        |
| 2087 | + 'OC\\Tagging\\Tag' => __DIR__.'/../../..'.'/lib/private/Tagging/Tag.php',  | 
                                                        |
| 2088 | + 'OC\\Tagging\\TagMapper' => __DIR__.'/../../..'.'/lib/private/Tagging/TagMapper.php',  | 
                                                        |
| 2089 | + 'OC\\Tags' => __DIR__.'/../../..'.'/lib/private/Tags.php',  | 
                                                        |
| 2090 | + 'OC\\Talk\\Broker' => __DIR__.'/../../..'.'/lib/private/Talk/Broker.php',  | 
                                                        |
| 2091 | + 'OC\\Talk\\ConversationOptions' => __DIR__.'/../../..'.'/lib/private/Talk/ConversationOptions.php',  | 
                                                        |
| 2092 | + 'OC\\TaskProcessing\\Db\\Task' => __DIR__.'/../../..'.'/lib/private/TaskProcessing/Db/Task.php',  | 
                                                        |
| 2093 | + 'OC\\TaskProcessing\\Db\\TaskMapper' => __DIR__.'/../../..'.'/lib/private/TaskProcessing/Db/TaskMapper.php',  | 
                                                        |
| 2094 | + 'OC\\TaskProcessing\\Manager' => __DIR__.'/../../..'.'/lib/private/TaskProcessing/Manager.php',  | 
                                                        |
| 2095 | + 'OC\\TaskProcessing\\RemoveOldTasksBackgroundJob' => __DIR__.'/../../..'.'/lib/private/TaskProcessing/RemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 2096 | + 'OC\\TaskProcessing\\SynchronousBackgroundJob' => __DIR__.'/../../..'.'/lib/private/TaskProcessing/SynchronousBackgroundJob.php',  | 
                                                        |
| 2097 | + 'OC\\Teams\\TeamManager' => __DIR__.'/../../..'.'/lib/private/Teams/TeamManager.php',  | 
                                                        |
| 2098 | + 'OC\\TempManager' => __DIR__.'/../../..'.'/lib/private/TempManager.php',  | 
                                                        |
| 2099 | + 'OC\\TemplateLayout' => __DIR__.'/../../..'.'/lib/private/TemplateLayout.php',  | 
                                                        |
| 2100 | + 'OC\\Template\\Base' => __DIR__.'/../../..'.'/lib/private/Template/Base.php',  | 
                                                        |
| 2101 | + 'OC\\Template\\CSSResourceLocator' => __DIR__.'/../../..'.'/lib/private/Template/CSSResourceLocator.php',  | 
                                                        |
| 2102 | + 'OC\\Template\\JSCombiner' => __DIR__.'/../../..'.'/lib/private/Template/JSCombiner.php',  | 
                                                        |
| 2103 | + 'OC\\Template\\JSConfigHelper' => __DIR__.'/../../..'.'/lib/private/Template/JSConfigHelper.php',  | 
                                                        |
| 2104 | + 'OC\\Template\\JSResourceLocator' => __DIR__.'/../../..'.'/lib/private/Template/JSResourceLocator.php',  | 
                                                        |
| 2105 | + 'OC\\Template\\ResourceLocator' => __DIR__.'/../../..'.'/lib/private/Template/ResourceLocator.php',  | 
                                                        |
| 2106 | + 'OC\\Template\\ResourceNotFoundException' => __DIR__.'/../../..'.'/lib/private/Template/ResourceNotFoundException.php',  | 
                                                        |
| 2107 | + 'OC\\Template\\Template' => __DIR__.'/../../..'.'/lib/private/Template/Template.php',  | 
                                                        |
| 2108 | + 'OC\\Template\\TemplateFileLocator' => __DIR__.'/../../..'.'/lib/private/Template/TemplateFileLocator.php',  | 
                                                        |
| 2109 | + 'OC\\Template\\TemplateManager' => __DIR__.'/../../..'.'/lib/private/Template/TemplateManager.php',  | 
                                                        |
| 2110 | + 'OC\\TextProcessing\\Db\\Task' => __DIR__.'/../../..'.'/lib/private/TextProcessing/Db/Task.php',  | 
                                                        |
| 2111 | + 'OC\\TextProcessing\\Db\\TaskMapper' => __DIR__.'/../../..'.'/lib/private/TextProcessing/Db/TaskMapper.php',  | 
                                                        |
| 2112 | + 'OC\\TextProcessing\\Manager' => __DIR__.'/../../..'.'/lib/private/TextProcessing/Manager.php',  | 
                                                        |
| 2113 | + 'OC\\TextProcessing\\RemoveOldTasksBackgroundJob' => __DIR__.'/../../..'.'/lib/private/TextProcessing/RemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 2114 | + 'OC\\TextProcessing\\TaskBackgroundJob' => __DIR__.'/../../..'.'/lib/private/TextProcessing/TaskBackgroundJob.php',  | 
                                                        |
| 2115 | + 'OC\\TextToImage\\Db\\Task' => __DIR__.'/../../..'.'/lib/private/TextToImage/Db/Task.php',  | 
                                                        |
| 2116 | + 'OC\\TextToImage\\Db\\TaskMapper' => __DIR__.'/../../..'.'/lib/private/TextToImage/Db/TaskMapper.php',  | 
                                                        |
| 2117 | + 'OC\\TextToImage\\Manager' => __DIR__.'/../../..'.'/lib/private/TextToImage/Manager.php',  | 
                                                        |
| 2118 | + 'OC\\TextToImage\\RemoveOldTasksBackgroundJob' => __DIR__.'/../../..'.'/lib/private/TextToImage/RemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 2119 | + 'OC\\TextToImage\\TaskBackgroundJob' => __DIR__.'/../../..'.'/lib/private/TextToImage/TaskBackgroundJob.php',  | 
                                                        |
| 2120 | + 'OC\\Translation\\TranslationManager' => __DIR__.'/../../..'.'/lib/private/Translation/TranslationManager.php',  | 
                                                        |
| 2121 | + 'OC\\URLGenerator' => __DIR__.'/../../..'.'/lib/private/URLGenerator.php',  | 
                                                        |
| 2122 | + 'OC\\Updater' => __DIR__.'/../../..'.'/lib/private/Updater.php',  | 
                                                        |
| 2123 | + 'OC\\Updater\\Changes' => __DIR__.'/../../..'.'/lib/private/Updater/Changes.php',  | 
                                                        |
| 2124 | + 'OC\\Updater\\ChangesCheck' => __DIR__.'/../../..'.'/lib/private/Updater/ChangesCheck.php',  | 
                                                        |
| 2125 | + 'OC\\Updater\\ChangesMapper' => __DIR__.'/../../..'.'/lib/private/Updater/ChangesMapper.php',  | 
                                                        |
| 2126 | + 'OC\\Updater\\Exceptions\\ReleaseMetadataException' => __DIR__.'/../../..'.'/lib/private/Updater/Exceptions/ReleaseMetadataException.php',  | 
                                                        |
| 2127 | + 'OC\\Updater\\ReleaseMetadata' => __DIR__.'/../../..'.'/lib/private/Updater/ReleaseMetadata.php',  | 
                                                        |
| 2128 | + 'OC\\Updater\\VersionCheck' => __DIR__.'/../../..'.'/lib/private/Updater/VersionCheck.php',  | 
                                                        |
| 2129 | + 'OC\\UserStatus\\ISettableProvider' => __DIR__.'/../../..'.'/lib/private/UserStatus/ISettableProvider.php',  | 
                                                        |
| 2130 | + 'OC\\UserStatus\\Manager' => __DIR__.'/../../..'.'/lib/private/UserStatus/Manager.php',  | 
                                                        |
| 2131 | + 'OC\\User\\AvailabilityCoordinator' => __DIR__.'/../../..'.'/lib/private/User/AvailabilityCoordinator.php',  | 
                                                        |
| 2132 | + 'OC\\User\\Backend' => __DIR__.'/../../..'.'/lib/private/User/Backend.php',  | 
                                                        |
| 2133 | + 'OC\\User\\BackgroundJobs\\CleanupDeletedUsers' => __DIR__.'/../../..'.'/lib/private/User/BackgroundJobs/CleanupDeletedUsers.php',  | 
                                                        |
| 2134 | + 'OC\\User\\Database' => __DIR__.'/../../..'.'/lib/private/User/Database.php',  | 
                                                        |
| 2135 | + 'OC\\User\\DisplayNameCache' => __DIR__.'/../../..'.'/lib/private/User/DisplayNameCache.php',  | 
                                                        |
| 2136 | + 'OC\\User\\LazyUser' => __DIR__.'/../../..'.'/lib/private/User/LazyUser.php',  | 
                                                        |
| 2137 | + 'OC\\User\\Listeners\\BeforeUserDeletedListener' => __DIR__.'/../../..'.'/lib/private/User/Listeners/BeforeUserDeletedListener.php',  | 
                                                        |
| 2138 | + 'OC\\User\\Listeners\\UserChangedListener' => __DIR__.'/../../..'.'/lib/private/User/Listeners/UserChangedListener.php',  | 
                                                        |
| 2139 | + 'OC\\User\\LoginException' => __DIR__.'/../../..'.'/lib/private/User/LoginException.php',  | 
                                                        |
| 2140 | + 'OC\\User\\Manager' => __DIR__.'/../../..'.'/lib/private/User/Manager.php',  | 
                                                        |
| 2141 | + 'OC\\User\\NoUserException' => __DIR__.'/../../..'.'/lib/private/User/NoUserException.php',  | 
                                                        |
| 2142 | + 'OC\\User\\OutOfOfficeData' => __DIR__.'/../../..'.'/lib/private/User/OutOfOfficeData.php',  | 
                                                        |
| 2143 | + 'OC\\User\\PartiallyDeletedUsersBackend' => __DIR__.'/../../..'.'/lib/private/User/PartiallyDeletedUsersBackend.php',  | 
                                                        |
| 2144 | + 'OC\\User\\Session' => __DIR__.'/../../..'.'/lib/private/User/Session.php',  | 
                                                        |
| 2145 | + 'OC\\User\\User' => __DIR__.'/../../..'.'/lib/private/User/User.php',  | 
                                                        |
| 2146 | + 'OC_App' => __DIR__.'/../../..'.'/lib/private/legacy/OC_App.php',  | 
                                                        |
| 2147 | + 'OC_Defaults' => __DIR__.'/../../..'.'/lib/private/legacy/OC_Defaults.php',  | 
                                                        |
| 2148 | + 'OC_Helper' => __DIR__.'/../../..'.'/lib/private/legacy/OC_Helper.php',  | 
                                                        |
| 2149 | + 'OC_Hook' => __DIR__.'/../../..'.'/lib/private/legacy/OC_Hook.php',  | 
                                                        |
| 2150 | + 'OC_JSON' => __DIR__.'/../../..'.'/lib/private/legacy/OC_JSON.php',  | 
                                                        |
| 2151 | + 'OC_Response' => __DIR__.'/../../..'.'/lib/private/legacy/OC_Response.php',  | 
                                                        |
| 2152 | + 'OC_Template' => __DIR__.'/../../..'.'/lib/private/legacy/OC_Template.php',  | 
                                                        |
| 2153 | + 'OC_User' => __DIR__.'/../../..'.'/lib/private/legacy/OC_User.php',  | 
                                                        |
| 2154 | + 'OC_Util' => __DIR__.'/../../..'.'/lib/private/legacy/OC_Util.php',  | 
                                                        |
| 2155 | 2155 | );  | 
                                                        
| 2156 | 2156 | |
| 2157 | 2157 | public static function getInitializer(ClassLoader $loader)  | 
                                                        
| 2158 | 2158 |      { | 
                                                        
| 2159 | -        return \Closure::bind(function () use ($loader) { | 
                                                        |
| 2159 | +        return \Closure::bind(function() use ($loader) { | 
                                                        |
| 2160 | 2160 | $loader->prefixLengthsPsr4 = ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2::$prefixLengthsPsr4;  | 
                                                        
| 2161 | 2161 | $loader->prefixDirsPsr4 = ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2::$prefixDirsPsr4;  | 
                                                        
| 2162 | 2162 | $loader->fallbackDirsPsr4 = ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2::$fallbackDirsPsr4;  | 
                                                        
@@ -6,2101 +6,2101 @@  | 
                                                    ||
| 6 | 6 | $baseDir = dirname(dirname($vendorDir));  | 
                                                        
| 7 | 7 | |
| 8 | 8 | return array(  | 
                                                        
| 9 | - 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',  | 
                                                        |
| 10 | - 'NCU\\Config\\Exceptions\\IncorrectTypeException' => $baseDir . '/lib/unstable/Config/Exceptions/IncorrectTypeException.php',  | 
                                                        |
| 11 | - 'NCU\\Config\\Exceptions\\TypeConflictException' => $baseDir . '/lib/unstable/Config/Exceptions/TypeConflictException.php',  | 
                                                        |
| 12 | - 'NCU\\Config\\Exceptions\\UnknownKeyException' => $baseDir . '/lib/unstable/Config/Exceptions/UnknownKeyException.php',  | 
                                                        |
| 13 | - 'NCU\\Config\\IUserConfig' => $baseDir . '/lib/unstable/Config/IUserConfig.php',  | 
                                                        |
| 14 | - 'NCU\\Config\\Lexicon\\ConfigLexiconEntry' => $baseDir . '/lib/unstable/Config/Lexicon/ConfigLexiconEntry.php',  | 
                                                        |
| 15 | - 'NCU\\Config\\Lexicon\\ConfigLexiconStrictness' => $baseDir . '/lib/unstable/Config/Lexicon/ConfigLexiconStrictness.php',  | 
                                                        |
| 16 | - 'NCU\\Config\\Lexicon\\IConfigLexicon' => $baseDir . '/lib/unstable/Config/Lexicon/IConfigLexicon.php',  | 
                                                        |
| 17 | - 'NCU\\Config\\ValueType' => $baseDir . '/lib/unstable/Config/ValueType.php',  | 
                                                        |
| 18 | - 'NCU\\Federation\\ISignedCloudFederationProvider' => $baseDir . '/lib/unstable/Federation/ISignedCloudFederationProvider.php',  | 
                                                        |
| 19 | - 'NCU\\Security\\Signature\\Enum\\DigestAlgorithm' => $baseDir . '/lib/unstable/Security/Signature/Enum/DigestAlgorithm.php',  | 
                                                        |
| 20 | - 'NCU\\Security\\Signature\\Enum\\SignatoryStatus' => $baseDir . '/lib/unstable/Security/Signature/Enum/SignatoryStatus.php',  | 
                                                        |
| 21 | - 'NCU\\Security\\Signature\\Enum\\SignatoryType' => $baseDir . '/lib/unstable/Security/Signature/Enum/SignatoryType.php',  | 
                                                        |
| 22 | - 'NCU\\Security\\Signature\\Enum\\SignatureAlgorithm' => $baseDir . '/lib/unstable/Security/Signature/Enum/SignatureAlgorithm.php',  | 
                                                        |
| 23 | - 'NCU\\Security\\Signature\\Exceptions\\IdentityNotFoundException' => $baseDir . '/lib/unstable/Security/Signature/Exceptions/IdentityNotFoundException.php',  | 
                                                        |
| 24 | - 'NCU\\Security\\Signature\\Exceptions\\IncomingRequestException' => $baseDir . '/lib/unstable/Security/Signature/Exceptions/IncomingRequestException.php',  | 
                                                        |
| 25 | - 'NCU\\Security\\Signature\\Exceptions\\InvalidKeyOriginException' => $baseDir . '/lib/unstable/Security/Signature/Exceptions/InvalidKeyOriginException.php',  | 
                                                        |
| 26 | - 'NCU\\Security\\Signature\\Exceptions\\InvalidSignatureException' => $baseDir . '/lib/unstable/Security/Signature/Exceptions/InvalidSignatureException.php',  | 
                                                        |
| 27 | - 'NCU\\Security\\Signature\\Exceptions\\SignatoryConflictException' => $baseDir . '/lib/unstable/Security/Signature/Exceptions/SignatoryConflictException.php',  | 
                                                        |
| 28 | - 'NCU\\Security\\Signature\\Exceptions\\SignatoryException' => $baseDir . '/lib/unstable/Security/Signature/Exceptions/SignatoryException.php',  | 
                                                        |
| 29 | - 'NCU\\Security\\Signature\\Exceptions\\SignatoryNotFoundException' => $baseDir . '/lib/unstable/Security/Signature/Exceptions/SignatoryNotFoundException.php',  | 
                                                        |
| 30 | - 'NCU\\Security\\Signature\\Exceptions\\SignatureElementNotFoundException' => $baseDir . '/lib/unstable/Security/Signature/Exceptions/SignatureElementNotFoundException.php',  | 
                                                        |
| 31 | - 'NCU\\Security\\Signature\\Exceptions\\SignatureException' => $baseDir . '/lib/unstable/Security/Signature/Exceptions/SignatureException.php',  | 
                                                        |
| 32 | - 'NCU\\Security\\Signature\\Exceptions\\SignatureNotFoundException' => $baseDir . '/lib/unstable/Security/Signature/Exceptions/SignatureNotFoundException.php',  | 
                                                        |
| 33 | - 'NCU\\Security\\Signature\\IIncomingSignedRequest' => $baseDir . '/lib/unstable/Security/Signature/IIncomingSignedRequest.php',  | 
                                                        |
| 34 | - 'NCU\\Security\\Signature\\IOutgoingSignedRequest' => $baseDir . '/lib/unstable/Security/Signature/IOutgoingSignedRequest.php',  | 
                                                        |
| 35 | - 'NCU\\Security\\Signature\\ISignatoryManager' => $baseDir . '/lib/unstable/Security/Signature/ISignatoryManager.php',  | 
                                                        |
| 36 | - 'NCU\\Security\\Signature\\ISignatureManager' => $baseDir . '/lib/unstable/Security/Signature/ISignatureManager.php',  | 
                                                        |
| 37 | - 'NCU\\Security\\Signature\\ISignedRequest' => $baseDir . '/lib/unstable/Security/Signature/ISignedRequest.php',  | 
                                                        |
| 38 | - 'NCU\\Security\\Signature\\Model\\Signatory' => $baseDir . '/lib/unstable/Security/Signature/Model/Signatory.php',  | 
                                                        |
| 39 | - 'OCP\\Accounts\\IAccount' => $baseDir . '/lib/public/Accounts/IAccount.php',  | 
                                                        |
| 40 | - 'OCP\\Accounts\\IAccountManager' => $baseDir . '/lib/public/Accounts/IAccountManager.php',  | 
                                                        |
| 41 | - 'OCP\\Accounts\\IAccountProperty' => $baseDir . '/lib/public/Accounts/IAccountProperty.php',  | 
                                                        |
| 42 | - 'OCP\\Accounts\\IAccountPropertyCollection' => $baseDir . '/lib/public/Accounts/IAccountPropertyCollection.php',  | 
                                                        |
| 43 | - 'OCP\\Accounts\\PropertyDoesNotExistException' => $baseDir . '/lib/public/Accounts/PropertyDoesNotExistException.php',  | 
                                                        |
| 44 | - 'OCP\\Accounts\\UserUpdatedEvent' => $baseDir . '/lib/public/Accounts/UserUpdatedEvent.php',  | 
                                                        |
| 45 | - 'OCP\\Activity\\ActivitySettings' => $baseDir . '/lib/public/Activity/ActivitySettings.php',  | 
                                                        |
| 46 | - 'OCP\\Activity\\Exceptions\\FilterNotFoundException' => $baseDir . '/lib/public/Activity/Exceptions/FilterNotFoundException.php',  | 
                                                        |
| 47 | - 'OCP\\Activity\\Exceptions\\IncompleteActivityException' => $baseDir . '/lib/public/Activity/Exceptions/IncompleteActivityException.php',  | 
                                                        |
| 48 | - 'OCP\\Activity\\Exceptions\\InvalidValueException' => $baseDir . '/lib/public/Activity/Exceptions/InvalidValueException.php',  | 
                                                        |
| 49 | - 'OCP\\Activity\\Exceptions\\SettingNotFoundException' => $baseDir . '/lib/public/Activity/Exceptions/SettingNotFoundException.php',  | 
                                                        |
| 50 | - 'OCP\\Activity\\Exceptions\\UnknownActivityException' => $baseDir . '/lib/public/Activity/Exceptions/UnknownActivityException.php',  | 
                                                        |
| 51 | - 'OCP\\Activity\\IConsumer' => $baseDir . '/lib/public/Activity/IConsumer.php',  | 
                                                        |
| 52 | - 'OCP\\Activity\\IEvent' => $baseDir . '/lib/public/Activity/IEvent.php',  | 
                                                        |
| 53 | - 'OCP\\Activity\\IEventMerger' => $baseDir . '/lib/public/Activity/IEventMerger.php',  | 
                                                        |
| 54 | - 'OCP\\Activity\\IExtension' => $baseDir . '/lib/public/Activity/IExtension.php',  | 
                                                        |
| 55 | - 'OCP\\Activity\\IFilter' => $baseDir . '/lib/public/Activity/IFilter.php',  | 
                                                        |
| 56 | - 'OCP\\Activity\\IManager' => $baseDir . '/lib/public/Activity/IManager.php',  | 
                                                        |
| 57 | - 'OCP\\Activity\\IProvider' => $baseDir . '/lib/public/Activity/IProvider.php',  | 
                                                        |
| 58 | - 'OCP\\Activity\\ISetting' => $baseDir . '/lib/public/Activity/ISetting.php',  | 
                                                        |
| 59 | - 'OCP\\AppFramework\\ApiController' => $baseDir . '/lib/public/AppFramework/ApiController.php',  | 
                                                        |
| 60 | - 'OCP\\AppFramework\\App' => $baseDir . '/lib/public/AppFramework/App.php',  | 
                                                        |
| 61 | - 'OCP\\AppFramework\\AuthPublicShareController' => $baseDir . '/lib/public/AppFramework/AuthPublicShareController.php',  | 
                                                        |
| 62 | - 'OCP\\AppFramework\\Bootstrap\\IBootContext' => $baseDir . '/lib/public/AppFramework/Bootstrap/IBootContext.php',  | 
                                                        |
| 63 | - 'OCP\\AppFramework\\Bootstrap\\IBootstrap' => $baseDir . '/lib/public/AppFramework/Bootstrap/IBootstrap.php',  | 
                                                        |
| 64 | - 'OCP\\AppFramework\\Bootstrap\\IRegistrationContext' => $baseDir . '/lib/public/AppFramework/Bootstrap/IRegistrationContext.php',  | 
                                                        |
| 65 | - 'OCP\\AppFramework\\Controller' => $baseDir . '/lib/public/AppFramework/Controller.php',  | 
                                                        |
| 66 | - 'OCP\\AppFramework\\Db\\DoesNotExistException' => $baseDir . '/lib/public/AppFramework/Db/DoesNotExistException.php',  | 
                                                        |
| 67 | - 'OCP\\AppFramework\\Db\\Entity' => $baseDir . '/lib/public/AppFramework/Db/Entity.php',  | 
                                                        |
| 68 | - 'OCP\\AppFramework\\Db\\IMapperException' => $baseDir . '/lib/public/AppFramework/Db/IMapperException.php',  | 
                                                        |
| 69 | - 'OCP\\AppFramework\\Db\\MultipleObjectsReturnedException' => $baseDir . '/lib/public/AppFramework/Db/MultipleObjectsReturnedException.php',  | 
                                                        |
| 70 | - 'OCP\\AppFramework\\Db\\QBMapper' => $baseDir . '/lib/public/AppFramework/Db/QBMapper.php',  | 
                                                        |
| 71 | - 'OCP\\AppFramework\\Db\\TTransactional' => $baseDir . '/lib/public/AppFramework/Db/TTransactional.php',  | 
                                                        |
| 72 | - 'OCP\\AppFramework\\Http' => $baseDir . '/lib/public/AppFramework/Http.php',  | 
                                                        |
| 73 | - 'OCP\\AppFramework\\Http\\Attribute\\ARateLimit' => $baseDir . '/lib/public/AppFramework/Http/Attribute/ARateLimit.php',  | 
                                                        |
| 74 | - 'OCP\\AppFramework\\Http\\Attribute\\AnonRateLimit' => $baseDir . '/lib/public/AppFramework/Http/Attribute/AnonRateLimit.php',  | 
                                                        |
| 75 | - 'OCP\\AppFramework\\Http\\Attribute\\ApiRoute' => $baseDir . '/lib/public/AppFramework/Http/Attribute/ApiRoute.php',  | 
                                                        |
| 76 | - 'OCP\\AppFramework\\Http\\Attribute\\AppApiAdminAccessWithoutUser' => $baseDir . '/lib/public/AppFramework/Http/Attribute/AppApiAdminAccessWithoutUser.php',  | 
                                                        |
| 77 | - 'OCP\\AppFramework\\Http\\Attribute\\AuthorizedAdminSetting' => $baseDir . '/lib/public/AppFramework/Http/Attribute/AuthorizedAdminSetting.php',  | 
                                                        |
| 78 | - 'OCP\\AppFramework\\Http\\Attribute\\BruteForceProtection' => $baseDir . '/lib/public/AppFramework/Http/Attribute/BruteForceProtection.php',  | 
                                                        |
| 79 | - 'OCP\\AppFramework\\Http\\Attribute\\CORS' => $baseDir . '/lib/public/AppFramework/Http/Attribute/CORS.php',  | 
                                                        |
| 80 | - 'OCP\\AppFramework\\Http\\Attribute\\ExAppRequired' => $baseDir . '/lib/public/AppFramework/Http/Attribute/ExAppRequired.php',  | 
                                                        |
| 81 | - 'OCP\\AppFramework\\Http\\Attribute\\FrontpageRoute' => $baseDir . '/lib/public/AppFramework/Http/Attribute/FrontpageRoute.php',  | 
                                                        |
| 82 | - 'OCP\\AppFramework\\Http\\Attribute\\IgnoreOpenAPI' => $baseDir . '/lib/public/AppFramework/Http/Attribute/IgnoreOpenAPI.php',  | 
                                                        |
| 83 | - 'OCP\\AppFramework\\Http\\Attribute\\NoAdminRequired' => $baseDir . '/lib/public/AppFramework/Http/Attribute/NoAdminRequired.php',  | 
                                                        |
| 84 | - 'OCP\\AppFramework\\Http\\Attribute\\NoCSRFRequired' => $baseDir . '/lib/public/AppFramework/Http/Attribute/NoCSRFRequired.php',  | 
                                                        |
| 85 | - 'OCP\\AppFramework\\Http\\Attribute\\OpenAPI' => $baseDir . '/lib/public/AppFramework/Http/Attribute/OpenAPI.php',  | 
                                                        |
| 86 | - 'OCP\\AppFramework\\Http\\Attribute\\PasswordConfirmationRequired' => $baseDir . '/lib/public/AppFramework/Http/Attribute/PasswordConfirmationRequired.php',  | 
                                                        |
| 87 | - 'OCP\\AppFramework\\Http\\Attribute\\PublicPage' => $baseDir . '/lib/public/AppFramework/Http/Attribute/PublicPage.php',  | 
                                                        |
| 88 | - 'OCP\\AppFramework\\Http\\Attribute\\Route' => $baseDir . '/lib/public/AppFramework/Http/Attribute/Route.php',  | 
                                                        |
| 89 | - 'OCP\\AppFramework\\Http\\Attribute\\StrictCookiesRequired' => $baseDir . '/lib/public/AppFramework/Http/Attribute/StrictCookiesRequired.php',  | 
                                                        |
| 90 | - 'OCP\\AppFramework\\Http\\Attribute\\SubAdminRequired' => $baseDir . '/lib/public/AppFramework/Http/Attribute/SubAdminRequired.php',  | 
                                                        |
| 91 | - 'OCP\\AppFramework\\Http\\Attribute\\UseSession' => $baseDir . '/lib/public/AppFramework/Http/Attribute/UseSession.php',  | 
                                                        |
| 92 | - 'OCP\\AppFramework\\Http\\Attribute\\UserRateLimit' => $baseDir . '/lib/public/AppFramework/Http/Attribute/UserRateLimit.php',  | 
                                                        |
| 93 | - 'OCP\\AppFramework\\Http\\ContentSecurityPolicy' => $baseDir . '/lib/public/AppFramework/Http/ContentSecurityPolicy.php',  | 
                                                        |
| 94 | - 'OCP\\AppFramework\\Http\\DataDisplayResponse' => $baseDir . '/lib/public/AppFramework/Http/DataDisplayResponse.php',  | 
                                                        |
| 95 | - 'OCP\\AppFramework\\Http\\DataDownloadResponse' => $baseDir . '/lib/public/AppFramework/Http/DataDownloadResponse.php',  | 
                                                        |
| 96 | - 'OCP\\AppFramework\\Http\\DataResponse' => $baseDir . '/lib/public/AppFramework/Http/DataResponse.php',  | 
                                                        |
| 97 | - 'OCP\\AppFramework\\Http\\DownloadResponse' => $baseDir . '/lib/public/AppFramework/Http/DownloadResponse.php',  | 
                                                        |
| 98 | - 'OCP\\AppFramework\\Http\\EmptyContentSecurityPolicy' => $baseDir . '/lib/public/AppFramework/Http/EmptyContentSecurityPolicy.php',  | 
                                                        |
| 99 | - 'OCP\\AppFramework\\Http\\EmptyFeaturePolicy' => $baseDir . '/lib/public/AppFramework/Http/EmptyFeaturePolicy.php',  | 
                                                        |
| 100 | - 'OCP\\AppFramework\\Http\\Events\\BeforeLoginTemplateRenderedEvent' => $baseDir . '/lib/public/AppFramework/Http/Events/BeforeLoginTemplateRenderedEvent.php',  | 
                                                        |
| 101 | - 'OCP\\AppFramework\\Http\\Events\\BeforeTemplateRenderedEvent' => $baseDir . '/lib/public/AppFramework/Http/Events/BeforeTemplateRenderedEvent.php',  | 
                                                        |
| 102 | - 'OCP\\AppFramework\\Http\\FeaturePolicy' => $baseDir . '/lib/public/AppFramework/Http/FeaturePolicy.php',  | 
                                                        |
| 103 | - 'OCP\\AppFramework\\Http\\FileDisplayResponse' => $baseDir . '/lib/public/AppFramework/Http/FileDisplayResponse.php',  | 
                                                        |
| 104 | - 'OCP\\AppFramework\\Http\\ICallbackResponse' => $baseDir . '/lib/public/AppFramework/Http/ICallbackResponse.php',  | 
                                                        |
| 105 | - 'OCP\\AppFramework\\Http\\IOutput' => $baseDir . '/lib/public/AppFramework/Http/IOutput.php',  | 
                                                        |
| 106 | - 'OCP\\AppFramework\\Http\\JSONResponse' => $baseDir . '/lib/public/AppFramework/Http/JSONResponse.php',  | 
                                                        |
| 107 | - 'OCP\\AppFramework\\Http\\NotFoundResponse' => $baseDir . '/lib/public/AppFramework/Http/NotFoundResponse.php',  | 
                                                        |
| 108 | - 'OCP\\AppFramework\\Http\\ParameterOutOfRangeException' => $baseDir . '/lib/public/AppFramework/Http/ParameterOutOfRangeException.php',  | 
                                                        |
| 109 | - 'OCP\\AppFramework\\Http\\RedirectResponse' => $baseDir . '/lib/public/AppFramework/Http/RedirectResponse.php',  | 
                                                        |
| 110 | - 'OCP\\AppFramework\\Http\\RedirectToDefaultAppResponse' => $baseDir . '/lib/public/AppFramework/Http/RedirectToDefaultAppResponse.php',  | 
                                                        |
| 111 | - 'OCP\\AppFramework\\Http\\Response' => $baseDir . '/lib/public/AppFramework/Http/Response.php',  | 
                                                        |
| 112 | - 'OCP\\AppFramework\\Http\\StandaloneTemplateResponse' => $baseDir . '/lib/public/AppFramework/Http/StandaloneTemplateResponse.php',  | 
                                                        |
| 113 | - 'OCP\\AppFramework\\Http\\StreamResponse' => $baseDir . '/lib/public/AppFramework/Http/StreamResponse.php',  | 
                                                        |
| 114 | - 'OCP\\AppFramework\\Http\\StrictContentSecurityPolicy' => $baseDir . '/lib/public/AppFramework/Http/StrictContentSecurityPolicy.php',  | 
                                                        |
| 115 | - 'OCP\\AppFramework\\Http\\StrictEvalContentSecurityPolicy' => $baseDir . '/lib/public/AppFramework/Http/StrictEvalContentSecurityPolicy.php',  | 
                                                        |
| 116 | - 'OCP\\AppFramework\\Http\\StrictInlineContentSecurityPolicy' => $baseDir . '/lib/public/AppFramework/Http/StrictInlineContentSecurityPolicy.php',  | 
                                                        |
| 117 | - 'OCP\\AppFramework\\Http\\TemplateResponse' => $baseDir . '/lib/public/AppFramework/Http/TemplateResponse.php',  | 
                                                        |
| 118 | - 'OCP\\AppFramework\\Http\\Template\\ExternalShareMenuAction' => $baseDir . '/lib/public/AppFramework/Http/Template/ExternalShareMenuAction.php',  | 
                                                        |
| 119 | - 'OCP\\AppFramework\\Http\\Template\\IMenuAction' => $baseDir . '/lib/public/AppFramework/Http/Template/IMenuAction.php',  | 
                                                        |
| 120 | - 'OCP\\AppFramework\\Http\\Template\\LinkMenuAction' => $baseDir . '/lib/public/AppFramework/Http/Template/LinkMenuAction.php',  | 
                                                        |
| 121 | - 'OCP\\AppFramework\\Http\\Template\\PublicTemplateResponse' => $baseDir . '/lib/public/AppFramework/Http/Template/PublicTemplateResponse.php',  | 
                                                        |
| 122 | - 'OCP\\AppFramework\\Http\\Template\\SimpleMenuAction' => $baseDir . '/lib/public/AppFramework/Http/Template/SimpleMenuAction.php',  | 
                                                        |
| 123 | - 'OCP\\AppFramework\\Http\\TextPlainResponse' => $baseDir . '/lib/public/AppFramework/Http/TextPlainResponse.php',  | 
                                                        |
| 124 | - 'OCP\\AppFramework\\Http\\TooManyRequestsResponse' => $baseDir . '/lib/public/AppFramework/Http/TooManyRequestsResponse.php',  | 
                                                        |
| 125 | - 'OCP\\AppFramework\\Http\\ZipResponse' => $baseDir . '/lib/public/AppFramework/Http/ZipResponse.php',  | 
                                                        |
| 126 | - 'OCP\\AppFramework\\IAppContainer' => $baseDir . '/lib/public/AppFramework/IAppContainer.php',  | 
                                                        |
| 127 | - 'OCP\\AppFramework\\Middleware' => $baseDir . '/lib/public/AppFramework/Middleware.php',  | 
                                                        |
| 128 | - 'OCP\\AppFramework\\OCSController' => $baseDir . '/lib/public/AppFramework/OCSController.php',  | 
                                                        |
| 129 | - 'OCP\\AppFramework\\OCS\\OCSBadRequestException' => $baseDir . '/lib/public/AppFramework/OCS/OCSBadRequestException.php',  | 
                                                        |
| 130 | - 'OCP\\AppFramework\\OCS\\OCSException' => $baseDir . '/lib/public/AppFramework/OCS/OCSException.php',  | 
                                                        |
| 131 | - 'OCP\\AppFramework\\OCS\\OCSForbiddenException' => $baseDir . '/lib/public/AppFramework/OCS/OCSForbiddenException.php',  | 
                                                        |
| 132 | - 'OCP\\AppFramework\\OCS\\OCSNotFoundException' => $baseDir . '/lib/public/AppFramework/OCS/OCSNotFoundException.php',  | 
                                                        |
| 133 | - 'OCP\\AppFramework\\OCS\\OCSPreconditionFailedException' => $baseDir . '/lib/public/AppFramework/OCS/OCSPreconditionFailedException.php',  | 
                                                        |
| 134 | - 'OCP\\AppFramework\\PublicShareController' => $baseDir . '/lib/public/AppFramework/PublicShareController.php',  | 
                                                        |
| 135 | - 'OCP\\AppFramework\\QueryException' => $baseDir . '/lib/public/AppFramework/QueryException.php',  | 
                                                        |
| 136 | - 'OCP\\AppFramework\\Services\\IAppConfig' => $baseDir . '/lib/public/AppFramework/Services/IAppConfig.php',  | 
                                                        |
| 137 | - 'OCP\\AppFramework\\Services\\IInitialState' => $baseDir . '/lib/public/AppFramework/Services/IInitialState.php',  | 
                                                        |
| 138 | - 'OCP\\AppFramework\\Services\\InitialStateProvider' => $baseDir . '/lib/public/AppFramework/Services/InitialStateProvider.php',  | 
                                                        |
| 139 | - 'OCP\\AppFramework\\Utility\\IControllerMethodReflector' => $baseDir . '/lib/public/AppFramework/Utility/IControllerMethodReflector.php',  | 
                                                        |
| 140 | - 'OCP\\AppFramework\\Utility\\ITimeFactory' => $baseDir . '/lib/public/AppFramework/Utility/ITimeFactory.php',  | 
                                                        |
| 141 | - 'OCP\\App\\AppPathNotFoundException' => $baseDir . '/lib/public/App/AppPathNotFoundException.php',  | 
                                                        |
| 142 | - 'OCP\\App\\Events\\AppDisableEvent' => $baseDir . '/lib/public/App/Events/AppDisableEvent.php',  | 
                                                        |
| 143 | - 'OCP\\App\\Events\\AppEnableEvent' => $baseDir . '/lib/public/App/Events/AppEnableEvent.php',  | 
                                                        |
| 144 | - 'OCP\\App\\Events\\AppUpdateEvent' => $baseDir . '/lib/public/App/Events/AppUpdateEvent.php',  | 
                                                        |
| 145 | - 'OCP\\App\\IAppManager' => $baseDir . '/lib/public/App/IAppManager.php',  | 
                                                        |
| 146 | - 'OCP\\App\\ManagerEvent' => $baseDir . '/lib/public/App/ManagerEvent.php',  | 
                                                        |
| 147 | - 'OCP\\Authentication\\Events\\AnyLoginFailedEvent' => $baseDir . '/lib/public/Authentication/Events/AnyLoginFailedEvent.php',  | 
                                                        |
| 148 | - 'OCP\\Authentication\\Events\\LoginFailedEvent' => $baseDir . '/lib/public/Authentication/Events/LoginFailedEvent.php',  | 
                                                        |
| 149 | - 'OCP\\Authentication\\Exceptions\\CredentialsUnavailableException' => $baseDir . '/lib/public/Authentication/Exceptions/CredentialsUnavailableException.php',  | 
                                                        |
| 150 | - 'OCP\\Authentication\\Exceptions\\ExpiredTokenException' => $baseDir . '/lib/public/Authentication/Exceptions/ExpiredTokenException.php',  | 
                                                        |
| 151 | - 'OCP\\Authentication\\Exceptions\\InvalidTokenException' => $baseDir . '/lib/public/Authentication/Exceptions/InvalidTokenException.php',  | 
                                                        |
| 152 | - 'OCP\\Authentication\\Exceptions\\PasswordUnavailableException' => $baseDir . '/lib/public/Authentication/Exceptions/PasswordUnavailableException.php',  | 
                                                        |
| 153 | - 'OCP\\Authentication\\Exceptions\\WipeTokenException' => $baseDir . '/lib/public/Authentication/Exceptions/WipeTokenException.php',  | 
                                                        |
| 154 | - 'OCP\\Authentication\\IAlternativeLogin' => $baseDir . '/lib/public/Authentication/IAlternativeLogin.php',  | 
                                                        |
| 155 | - 'OCP\\Authentication\\IApacheBackend' => $baseDir . '/lib/public/Authentication/IApacheBackend.php',  | 
                                                        |
| 156 | - 'OCP\\Authentication\\IProvideUserSecretBackend' => $baseDir . '/lib/public/Authentication/IProvideUserSecretBackend.php',  | 
                                                        |
| 157 | - 'OCP\\Authentication\\LoginCredentials\\ICredentials' => $baseDir . '/lib/public/Authentication/LoginCredentials/ICredentials.php',  | 
                                                        |
| 158 | - 'OCP\\Authentication\\LoginCredentials\\IStore' => $baseDir . '/lib/public/Authentication/LoginCredentials/IStore.php',  | 
                                                        |
| 159 | - 'OCP\\Authentication\\Token\\IProvider' => $baseDir . '/lib/public/Authentication/Token/IProvider.php',  | 
                                                        |
| 160 | - 'OCP\\Authentication\\Token\\IToken' => $baseDir . '/lib/public/Authentication/Token/IToken.php',  | 
                                                        |
| 161 | - 'OCP\\Authentication\\TwoFactorAuth\\ALoginSetupController' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/ALoginSetupController.php',  | 
                                                        |
| 162 | - 'OCP\\Authentication\\TwoFactorAuth\\IActivatableAtLogin' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/IActivatableAtLogin.php',  | 
                                                        |
| 163 | - 'OCP\\Authentication\\TwoFactorAuth\\IActivatableByAdmin' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/IActivatableByAdmin.php',  | 
                                                        |
| 164 | - 'OCP\\Authentication\\TwoFactorAuth\\IDeactivatableByAdmin' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/IDeactivatableByAdmin.php',  | 
                                                        |
| 165 | - 'OCP\\Authentication\\TwoFactorAuth\\ILoginSetupProvider' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/ILoginSetupProvider.php',  | 
                                                        |
| 166 | - 'OCP\\Authentication\\TwoFactorAuth\\IPersonalProviderSettings' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/IPersonalProviderSettings.php',  | 
                                                        |
| 167 | - 'OCP\\Authentication\\TwoFactorAuth\\IProvider' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/IProvider.php',  | 
                                                        |
| 168 | - 'OCP\\Authentication\\TwoFactorAuth\\IProvidesCustomCSP' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/IProvidesCustomCSP.php',  | 
                                                        |
| 169 | - 'OCP\\Authentication\\TwoFactorAuth\\IProvidesIcons' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/IProvidesIcons.php',  | 
                                                        |
| 170 | - 'OCP\\Authentication\\TwoFactorAuth\\IProvidesPersonalSettings' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/IProvidesPersonalSettings.php',  | 
                                                        |
| 171 | - 'OCP\\Authentication\\TwoFactorAuth\\IRegistry' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/IRegistry.php',  | 
                                                        |
| 172 | - 'OCP\\Authentication\\TwoFactorAuth\\RegistryEvent' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/RegistryEvent.php',  | 
                                                        |
| 173 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorException' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/TwoFactorException.php',  | 
                                                        |
| 174 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderChallengeFailed' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderChallengeFailed.php',  | 
                                                        |
| 175 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderChallengePassed' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderChallengePassed.php',  | 
                                                        |
| 176 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderDisabled' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderDisabled.php',  | 
                                                        |
| 177 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserDisabled' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserDisabled.php',  | 
                                                        |
| 178 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserEnabled' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserEnabled.php',  | 
                                                        |
| 179 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserRegistered' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserRegistered.php',  | 
                                                        |
| 180 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserUnregistered' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserUnregistered.php',  | 
                                                        |
| 181 | - 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderUserDeleted' => $baseDir . '/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderUserDeleted.php',  | 
                                                        |
| 182 | - 'OCP\\AutoloadNotAllowedException' => $baseDir . '/lib/public/AutoloadNotAllowedException.php',  | 
                                                        |
| 183 | - 'OCP\\BackgroundJob\\IJob' => $baseDir . '/lib/public/BackgroundJob/IJob.php',  | 
                                                        |
| 184 | - 'OCP\\BackgroundJob\\IJobList' => $baseDir . '/lib/public/BackgroundJob/IJobList.php',  | 
                                                        |
| 185 | - 'OCP\\BackgroundJob\\IParallelAwareJob' => $baseDir . '/lib/public/BackgroundJob/IParallelAwareJob.php',  | 
                                                        |
| 186 | - 'OCP\\BackgroundJob\\Job' => $baseDir . '/lib/public/BackgroundJob/Job.php',  | 
                                                        |
| 187 | - 'OCP\\BackgroundJob\\QueuedJob' => $baseDir . '/lib/public/BackgroundJob/QueuedJob.php',  | 
                                                        |
| 188 | - 'OCP\\BackgroundJob\\TimedJob' => $baseDir . '/lib/public/BackgroundJob/TimedJob.php',  | 
                                                        |
| 189 | - 'OCP\\BeforeSabrePubliclyLoadedEvent' => $baseDir . '/lib/public/BeforeSabrePubliclyLoadedEvent.php',  | 
                                                        |
| 190 | - 'OCP\\Broadcast\\Events\\IBroadcastEvent' => $baseDir . '/lib/public/Broadcast/Events/IBroadcastEvent.php',  | 
                                                        |
| 191 | - 'OCP\\Cache\\CappedMemoryCache' => $baseDir . '/lib/public/Cache/CappedMemoryCache.php',  | 
                                                        |
| 192 | - 'OCP\\Calendar\\BackendTemporarilyUnavailableException' => $baseDir . '/lib/public/Calendar/BackendTemporarilyUnavailableException.php',  | 
                                                        |
| 193 | - 'OCP\\Calendar\\CalendarEventStatus' => $baseDir . '/lib/public/Calendar/CalendarEventStatus.php',  | 
                                                        |
| 194 | - 'OCP\\Calendar\\Events\\AbstractCalendarObjectEvent' => $baseDir . '/lib/public/Calendar/Events/AbstractCalendarObjectEvent.php',  | 
                                                        |
| 195 | - 'OCP\\Calendar\\Events\\CalendarObjectCreatedEvent' => $baseDir . '/lib/public/Calendar/Events/CalendarObjectCreatedEvent.php',  | 
                                                        |
| 196 | - 'OCP\\Calendar\\Events\\CalendarObjectDeletedEvent' => $baseDir . '/lib/public/Calendar/Events/CalendarObjectDeletedEvent.php',  | 
                                                        |
| 197 | - 'OCP\\Calendar\\Events\\CalendarObjectMovedEvent' => $baseDir . '/lib/public/Calendar/Events/CalendarObjectMovedEvent.php',  | 
                                                        |
| 198 | - 'OCP\\Calendar\\Events\\CalendarObjectMovedToTrashEvent' => $baseDir . '/lib/public/Calendar/Events/CalendarObjectMovedToTrashEvent.php',  | 
                                                        |
| 199 | - 'OCP\\Calendar\\Events\\CalendarObjectRestoredEvent' => $baseDir . '/lib/public/Calendar/Events/CalendarObjectRestoredEvent.php',  | 
                                                        |
| 200 | - 'OCP\\Calendar\\Events\\CalendarObjectUpdatedEvent' => $baseDir . '/lib/public/Calendar/Events/CalendarObjectUpdatedEvent.php',  | 
                                                        |
| 201 | - 'OCP\\Calendar\\Exceptions\\CalendarException' => $baseDir . '/lib/public/Calendar/Exceptions/CalendarException.php',  | 
                                                        |
| 202 | - 'OCP\\Calendar\\IAvailabilityResult' => $baseDir . '/lib/public/Calendar/IAvailabilityResult.php',  | 
                                                        |
| 203 | - 'OCP\\Calendar\\ICalendar' => $baseDir . '/lib/public/Calendar/ICalendar.php',  | 
                                                        |
| 204 | - 'OCP\\Calendar\\ICalendarEventBuilder' => $baseDir . '/lib/public/Calendar/ICalendarEventBuilder.php',  | 
                                                        |
| 205 | - 'OCP\\Calendar\\ICalendarIsShared' => $baseDir . '/lib/public/Calendar/ICalendarIsShared.php',  | 
                                                        |
| 206 | - 'OCP\\Calendar\\ICalendarIsWritable' => $baseDir . '/lib/public/Calendar/ICalendarIsWritable.php',  | 
                                                        |
| 207 | - 'OCP\\Calendar\\ICalendarProvider' => $baseDir . '/lib/public/Calendar/ICalendarProvider.php',  | 
                                                        |
| 208 | - 'OCP\\Calendar\\ICalendarQuery' => $baseDir . '/lib/public/Calendar/ICalendarQuery.php',  | 
                                                        |
| 209 | - 'OCP\\Calendar\\ICreateFromString' => $baseDir . '/lib/public/Calendar/ICreateFromString.php',  | 
                                                        |
| 210 | - 'OCP\\Calendar\\IHandleImipMessage' => $baseDir . '/lib/public/Calendar/IHandleImipMessage.php',  | 
                                                        |
| 211 | - 'OCP\\Calendar\\IManager' => $baseDir . '/lib/public/Calendar/IManager.php',  | 
                                                        |
| 212 | - 'OCP\\Calendar\\IMetadataProvider' => $baseDir . '/lib/public/Calendar/IMetadataProvider.php',  | 
                                                        |
| 213 | - 'OCP\\Calendar\\Resource\\IBackend' => $baseDir . '/lib/public/Calendar/Resource/IBackend.php',  | 
                                                        |
| 214 | - 'OCP\\Calendar\\Resource\\IManager' => $baseDir . '/lib/public/Calendar/Resource/IManager.php',  | 
                                                        |
| 215 | - 'OCP\\Calendar\\Resource\\IResource' => $baseDir . '/lib/public/Calendar/Resource/IResource.php',  | 
                                                        |
| 216 | - 'OCP\\Calendar\\Resource\\IResourceMetadata' => $baseDir . '/lib/public/Calendar/Resource/IResourceMetadata.php',  | 
                                                        |
| 217 | - 'OCP\\Calendar\\Room\\IBackend' => $baseDir . '/lib/public/Calendar/Room/IBackend.php',  | 
                                                        |
| 218 | - 'OCP\\Calendar\\Room\\IManager' => $baseDir . '/lib/public/Calendar/Room/IManager.php',  | 
                                                        |
| 219 | - 'OCP\\Calendar\\Room\\IRoom' => $baseDir . '/lib/public/Calendar/Room/IRoom.php',  | 
                                                        |
| 220 | - 'OCP\\Calendar\\Room\\IRoomMetadata' => $baseDir . '/lib/public/Calendar/Room/IRoomMetadata.php',  | 
                                                        |
| 221 | - 'OCP\\Capabilities\\ICapability' => $baseDir . '/lib/public/Capabilities/ICapability.php',  | 
                                                        |
| 222 | - 'OCP\\Capabilities\\IInitialStateExcludedCapability' => $baseDir . '/lib/public/Capabilities/IInitialStateExcludedCapability.php',  | 
                                                        |
| 223 | - 'OCP\\Capabilities\\IPublicCapability' => $baseDir . '/lib/public/Capabilities/IPublicCapability.php',  | 
                                                        |
| 224 | - 'OCP\\Collaboration\\AutoComplete\\AutoCompleteEvent' => $baseDir . '/lib/public/Collaboration/AutoComplete/AutoCompleteEvent.php',  | 
                                                        |
| 225 | - 'OCP\\Collaboration\\AutoComplete\\AutoCompleteFilterEvent' => $baseDir . '/lib/public/Collaboration/AutoComplete/AutoCompleteFilterEvent.php',  | 
                                                        |
| 226 | - 'OCP\\Collaboration\\AutoComplete\\IManager' => $baseDir . '/lib/public/Collaboration/AutoComplete/IManager.php',  | 
                                                        |
| 227 | - 'OCP\\Collaboration\\AutoComplete\\ISorter' => $baseDir . '/lib/public/Collaboration/AutoComplete/ISorter.php',  | 
                                                        |
| 228 | - 'OCP\\Collaboration\\Collaborators\\ISearch' => $baseDir . '/lib/public/Collaboration/Collaborators/ISearch.php',  | 
                                                        |
| 229 | - 'OCP\\Collaboration\\Collaborators\\ISearchPlugin' => $baseDir . '/lib/public/Collaboration/Collaborators/ISearchPlugin.php',  | 
                                                        |
| 230 | - 'OCP\\Collaboration\\Collaborators\\ISearchResult' => $baseDir . '/lib/public/Collaboration/Collaborators/ISearchResult.php',  | 
                                                        |
| 231 | - 'OCP\\Collaboration\\Collaborators\\SearchResultType' => $baseDir . '/lib/public/Collaboration/Collaborators/SearchResultType.php',  | 
                                                        |
| 232 | - 'OCP\\Collaboration\\Reference\\ADiscoverableReferenceProvider' => $baseDir . '/lib/public/Collaboration/Reference/ADiscoverableReferenceProvider.php',  | 
                                                        |
| 233 | - 'OCP\\Collaboration\\Reference\\IDiscoverableReferenceProvider' => $baseDir . '/lib/public/Collaboration/Reference/IDiscoverableReferenceProvider.php',  | 
                                                        |
| 234 | - 'OCP\\Collaboration\\Reference\\IPublicReferenceProvider' => $baseDir . '/lib/public/Collaboration/Reference/IPublicReferenceProvider.php',  | 
                                                        |
| 235 | - 'OCP\\Collaboration\\Reference\\IReference' => $baseDir . '/lib/public/Collaboration/Reference/IReference.php',  | 
                                                        |
| 236 | - 'OCP\\Collaboration\\Reference\\IReferenceManager' => $baseDir . '/lib/public/Collaboration/Reference/IReferenceManager.php',  | 
                                                        |
| 237 | - 'OCP\\Collaboration\\Reference\\IReferenceProvider' => $baseDir . '/lib/public/Collaboration/Reference/IReferenceProvider.php',  | 
                                                        |
| 238 | - 'OCP\\Collaboration\\Reference\\ISearchableReferenceProvider' => $baseDir . '/lib/public/Collaboration/Reference/ISearchableReferenceProvider.php',  | 
                                                        |
| 239 | - 'OCP\\Collaboration\\Reference\\LinkReferenceProvider' => $baseDir . '/lib/public/Collaboration/Reference/LinkReferenceProvider.php',  | 
                                                        |
| 240 | - 'OCP\\Collaboration\\Reference\\Reference' => $baseDir . '/lib/public/Collaboration/Reference/Reference.php',  | 
                                                        |
| 241 | - 'OCP\\Collaboration\\Reference\\RenderReferenceEvent' => $baseDir . '/lib/public/Collaboration/Reference/RenderReferenceEvent.php',  | 
                                                        |
| 242 | - 'OCP\\Collaboration\\Resources\\CollectionException' => $baseDir . '/lib/public/Collaboration/Resources/CollectionException.php',  | 
                                                        |
| 243 | - 'OCP\\Collaboration\\Resources\\ICollection' => $baseDir . '/lib/public/Collaboration/Resources/ICollection.php',  | 
                                                        |
| 244 | - 'OCP\\Collaboration\\Resources\\IManager' => $baseDir . '/lib/public/Collaboration/Resources/IManager.php',  | 
                                                        |
| 245 | - 'OCP\\Collaboration\\Resources\\IProvider' => $baseDir . '/lib/public/Collaboration/Resources/IProvider.php',  | 
                                                        |
| 246 | - 'OCP\\Collaboration\\Resources\\IProviderManager' => $baseDir . '/lib/public/Collaboration/Resources/IProviderManager.php',  | 
                                                        |
| 247 | - 'OCP\\Collaboration\\Resources\\IResource' => $baseDir . '/lib/public/Collaboration/Resources/IResource.php',  | 
                                                        |
| 248 | - 'OCP\\Collaboration\\Resources\\LoadAdditionalScriptsEvent' => $baseDir . '/lib/public/Collaboration/Resources/LoadAdditionalScriptsEvent.php',  | 
                                                        |
| 249 | - 'OCP\\Collaboration\\Resources\\ResourceException' => $baseDir . '/lib/public/Collaboration/Resources/ResourceException.php',  | 
                                                        |
| 250 | - 'OCP\\Color' => $baseDir . '/lib/public/Color.php',  | 
                                                        |
| 251 | - 'OCP\\Command\\IBus' => $baseDir . '/lib/public/Command/IBus.php',  | 
                                                        |
| 252 | - 'OCP\\Command\\ICommand' => $baseDir . '/lib/public/Command/ICommand.php',  | 
                                                        |
| 253 | - 'OCP\\Comments\\CommentsEntityEvent' => $baseDir . '/lib/public/Comments/CommentsEntityEvent.php',  | 
                                                        |
| 254 | - 'OCP\\Comments\\CommentsEvent' => $baseDir . '/lib/public/Comments/CommentsEvent.php',  | 
                                                        |
| 255 | - 'OCP\\Comments\\IComment' => $baseDir . '/lib/public/Comments/IComment.php',  | 
                                                        |
| 256 | - 'OCP\\Comments\\ICommentsEventHandler' => $baseDir . '/lib/public/Comments/ICommentsEventHandler.php',  | 
                                                        |
| 257 | - 'OCP\\Comments\\ICommentsManager' => $baseDir . '/lib/public/Comments/ICommentsManager.php',  | 
                                                        |
| 258 | - 'OCP\\Comments\\ICommentsManagerFactory' => $baseDir . '/lib/public/Comments/ICommentsManagerFactory.php',  | 
                                                        |
| 259 | - 'OCP\\Comments\\IllegalIDChangeException' => $baseDir . '/lib/public/Comments/IllegalIDChangeException.php',  | 
                                                        |
| 260 | - 'OCP\\Comments\\MessageTooLongException' => $baseDir . '/lib/public/Comments/MessageTooLongException.php',  | 
                                                        |
| 261 | - 'OCP\\Comments\\NotFoundException' => $baseDir . '/lib/public/Comments/NotFoundException.php',  | 
                                                        |
| 262 | - 'OCP\\Common\\Exception\\NotFoundException' => $baseDir . '/lib/public/Common/Exception/NotFoundException.php',  | 
                                                        |
| 263 | - 'OCP\\Config\\BeforePreferenceDeletedEvent' => $baseDir . '/lib/public/Config/BeforePreferenceDeletedEvent.php',  | 
                                                        |
| 264 | - 'OCP\\Config\\BeforePreferenceSetEvent' => $baseDir . '/lib/public/Config/BeforePreferenceSetEvent.php',  | 
                                                        |
| 265 | - 'OCP\\Console\\ConsoleEvent' => $baseDir . '/lib/public/Console/ConsoleEvent.php',  | 
                                                        |
| 266 | - 'OCP\\Console\\ReservedOptions' => $baseDir . '/lib/public/Console/ReservedOptions.php',  | 
                                                        |
| 267 | - 'OCP\\Constants' => $baseDir . '/lib/public/Constants.php',  | 
                                                        |
| 268 | - 'OCP\\Contacts\\ContactsMenu\\IAction' => $baseDir . '/lib/public/Contacts/ContactsMenu/IAction.php',  | 
                                                        |
| 269 | - 'OCP\\Contacts\\ContactsMenu\\IActionFactory' => $baseDir . '/lib/public/Contacts/ContactsMenu/IActionFactory.php',  | 
                                                        |
| 270 | - 'OCP\\Contacts\\ContactsMenu\\IBulkProvider' => $baseDir . '/lib/public/Contacts/ContactsMenu/IBulkProvider.php',  | 
                                                        |
| 271 | - 'OCP\\Contacts\\ContactsMenu\\IContactsStore' => $baseDir . '/lib/public/Contacts/ContactsMenu/IContactsStore.php',  | 
                                                        |
| 272 | - 'OCP\\Contacts\\ContactsMenu\\IEntry' => $baseDir . '/lib/public/Contacts/ContactsMenu/IEntry.php',  | 
                                                        |
| 273 | - 'OCP\\Contacts\\ContactsMenu\\ILinkAction' => $baseDir . '/lib/public/Contacts/ContactsMenu/ILinkAction.php',  | 
                                                        |
| 274 | - 'OCP\\Contacts\\ContactsMenu\\IProvider' => $baseDir . '/lib/public/Contacts/ContactsMenu/IProvider.php',  | 
                                                        |
| 275 | - 'OCP\\Contacts\\Events\\ContactInteractedWithEvent' => $baseDir . '/lib/public/Contacts/Events/ContactInteractedWithEvent.php',  | 
                                                        |
| 276 | - 'OCP\\Contacts\\IManager' => $baseDir . '/lib/public/Contacts/IManager.php',  | 
                                                        |
| 277 | - 'OCP\\DB\\Events\\AddMissingColumnsEvent' => $baseDir . '/lib/public/DB/Events/AddMissingColumnsEvent.php',  | 
                                                        |
| 278 | - 'OCP\\DB\\Events\\AddMissingIndicesEvent' => $baseDir . '/lib/public/DB/Events/AddMissingIndicesEvent.php',  | 
                                                        |
| 279 | - 'OCP\\DB\\Events\\AddMissingPrimaryKeyEvent' => $baseDir . '/lib/public/DB/Events/AddMissingPrimaryKeyEvent.php',  | 
                                                        |
| 280 | - 'OCP\\DB\\Exception' => $baseDir . '/lib/public/DB/Exception.php',  | 
                                                        |
| 281 | - 'OCP\\DB\\IPreparedStatement' => $baseDir . '/lib/public/DB/IPreparedStatement.php',  | 
                                                        |
| 282 | - 'OCP\\DB\\IResult' => $baseDir . '/lib/public/DB/IResult.php',  | 
                                                        |
| 283 | - 'OCP\\DB\\ISchemaWrapper' => $baseDir . '/lib/public/DB/ISchemaWrapper.php',  | 
                                                        |
| 284 | - 'OCP\\DB\\QueryBuilder\\ICompositeExpression' => $baseDir . '/lib/public/DB/QueryBuilder/ICompositeExpression.php',  | 
                                                        |
| 285 | - 'OCP\\DB\\QueryBuilder\\IExpressionBuilder' => $baseDir . '/lib/public/DB/QueryBuilder/IExpressionBuilder.php',  | 
                                                        |
| 286 | - 'OCP\\DB\\QueryBuilder\\IFunctionBuilder' => $baseDir . '/lib/public/DB/QueryBuilder/IFunctionBuilder.php',  | 
                                                        |
| 287 | - 'OCP\\DB\\QueryBuilder\\ILiteral' => $baseDir . '/lib/public/DB/QueryBuilder/ILiteral.php',  | 
                                                        |
| 288 | - 'OCP\\DB\\QueryBuilder\\IParameter' => $baseDir . '/lib/public/DB/QueryBuilder/IParameter.php',  | 
                                                        |
| 289 | - 'OCP\\DB\\QueryBuilder\\IQueryBuilder' => $baseDir . '/lib/public/DB/QueryBuilder/IQueryBuilder.php',  | 
                                                        |
| 290 | - 'OCP\\DB\\QueryBuilder\\IQueryFunction' => $baseDir . '/lib/public/DB/QueryBuilder/IQueryFunction.php',  | 
                                                        |
| 291 | - 'OCP\\DB\\QueryBuilder\\Sharded\\IShardMapper' => $baseDir . '/lib/public/DB/QueryBuilder/Sharded/IShardMapper.php',  | 
                                                        |
| 292 | - 'OCP\\DB\\Types' => $baseDir . '/lib/public/DB/Types.php',  | 
                                                        |
| 293 | - 'OCP\\Dashboard\\IAPIWidget' => $baseDir . '/lib/public/Dashboard/IAPIWidget.php',  | 
                                                        |
| 294 | - 'OCP\\Dashboard\\IAPIWidgetV2' => $baseDir . '/lib/public/Dashboard/IAPIWidgetV2.php',  | 
                                                        |
| 295 | - 'OCP\\Dashboard\\IButtonWidget' => $baseDir . '/lib/public/Dashboard/IButtonWidget.php',  | 
                                                        |
| 296 | - 'OCP\\Dashboard\\IConditionalWidget' => $baseDir . '/lib/public/Dashboard/IConditionalWidget.php',  | 
                                                        |
| 297 | - 'OCP\\Dashboard\\IIconWidget' => $baseDir . '/lib/public/Dashboard/IIconWidget.php',  | 
                                                        |
| 298 | - 'OCP\\Dashboard\\IManager' => $baseDir . '/lib/public/Dashboard/IManager.php',  | 
                                                        |
| 299 | - 'OCP\\Dashboard\\IOptionWidget' => $baseDir . '/lib/public/Dashboard/IOptionWidget.php',  | 
                                                        |
| 300 | - 'OCP\\Dashboard\\IReloadableWidget' => $baseDir . '/lib/public/Dashboard/IReloadableWidget.php',  | 
                                                        |
| 301 | - 'OCP\\Dashboard\\IWidget' => $baseDir . '/lib/public/Dashboard/IWidget.php',  | 
                                                        |
| 302 | - 'OCP\\Dashboard\\Model\\WidgetButton' => $baseDir . '/lib/public/Dashboard/Model/WidgetButton.php',  | 
                                                        |
| 303 | - 'OCP\\Dashboard\\Model\\WidgetItem' => $baseDir . '/lib/public/Dashboard/Model/WidgetItem.php',  | 
                                                        |
| 304 | - 'OCP\\Dashboard\\Model\\WidgetItems' => $baseDir . '/lib/public/Dashboard/Model/WidgetItems.php',  | 
                                                        |
| 305 | - 'OCP\\Dashboard\\Model\\WidgetOptions' => $baseDir . '/lib/public/Dashboard/Model/WidgetOptions.php',  | 
                                                        |
| 306 | - 'OCP\\DataCollector\\AbstractDataCollector' => $baseDir . '/lib/public/DataCollector/AbstractDataCollector.php',  | 
                                                        |
| 307 | - 'OCP\\DataCollector\\IDataCollector' => $baseDir . '/lib/public/DataCollector/IDataCollector.php',  | 
                                                        |
| 308 | - 'OCP\\Defaults' => $baseDir . '/lib/public/Defaults.php',  | 
                                                        |
| 309 | - 'OCP\\Diagnostics\\IEvent' => $baseDir . '/lib/public/Diagnostics/IEvent.php',  | 
                                                        |
| 310 | - 'OCP\\Diagnostics\\IEventLogger' => $baseDir . '/lib/public/Diagnostics/IEventLogger.php',  | 
                                                        |
| 311 | - 'OCP\\Diagnostics\\IQuery' => $baseDir . '/lib/public/Diagnostics/IQuery.php',  | 
                                                        |
| 312 | - 'OCP\\Diagnostics\\IQueryLogger' => $baseDir . '/lib/public/Diagnostics/IQueryLogger.php',  | 
                                                        |
| 313 | - 'OCP\\DirectEditing\\ACreateEmpty' => $baseDir . '/lib/public/DirectEditing/ACreateEmpty.php',  | 
                                                        |
| 314 | - 'OCP\\DirectEditing\\ACreateFromTemplate' => $baseDir . '/lib/public/DirectEditing/ACreateFromTemplate.php',  | 
                                                        |
| 315 | - 'OCP\\DirectEditing\\ATemplate' => $baseDir . '/lib/public/DirectEditing/ATemplate.php',  | 
                                                        |
| 316 | - 'OCP\\DirectEditing\\IEditor' => $baseDir . '/lib/public/DirectEditing/IEditor.php',  | 
                                                        |
| 317 | - 'OCP\\DirectEditing\\IManager' => $baseDir . '/lib/public/DirectEditing/IManager.php',  | 
                                                        |
| 318 | - 'OCP\\DirectEditing\\IToken' => $baseDir . '/lib/public/DirectEditing/IToken.php',  | 
                                                        |
| 319 | - 'OCP\\DirectEditing\\RegisterDirectEditorEvent' => $baseDir . '/lib/public/DirectEditing/RegisterDirectEditorEvent.php',  | 
                                                        |
| 320 | - 'OCP\\Encryption\\Exceptions\\GenericEncryptionException' => $baseDir . '/lib/public/Encryption/Exceptions/GenericEncryptionException.php',  | 
                                                        |
| 321 | - 'OCP\\Encryption\\IEncryptionModule' => $baseDir . '/lib/public/Encryption/IEncryptionModule.php',  | 
                                                        |
| 322 | - 'OCP\\Encryption\\IFile' => $baseDir . '/lib/public/Encryption/IFile.php',  | 
                                                        |
| 323 | - 'OCP\\Encryption\\IManager' => $baseDir . '/lib/public/Encryption/IManager.php',  | 
                                                        |
| 324 | - 'OCP\\Encryption\\Keys\\IStorage' => $baseDir . '/lib/public/Encryption/Keys/IStorage.php',  | 
                                                        |
| 325 | - 'OCP\\EventDispatcher\\ABroadcastedEvent' => $baseDir . '/lib/public/EventDispatcher/ABroadcastedEvent.php',  | 
                                                        |
| 326 | - 'OCP\\EventDispatcher\\Event' => $baseDir . '/lib/public/EventDispatcher/Event.php',  | 
                                                        |
| 327 | - 'OCP\\EventDispatcher\\GenericEvent' => $baseDir . '/lib/public/EventDispatcher/GenericEvent.php',  | 
                                                        |
| 328 | - 'OCP\\EventDispatcher\\IEventDispatcher' => $baseDir . '/lib/public/EventDispatcher/IEventDispatcher.php',  | 
                                                        |
| 329 | - 'OCP\\EventDispatcher\\IEventListener' => $baseDir . '/lib/public/EventDispatcher/IEventListener.php',  | 
                                                        |
| 330 | - 'OCP\\EventDispatcher\\IWebhookCompatibleEvent' => $baseDir . '/lib/public/EventDispatcher/IWebhookCompatibleEvent.php',  | 
                                                        |
| 331 | - 'OCP\\EventDispatcher\\JsonSerializer' => $baseDir . '/lib/public/EventDispatcher/JsonSerializer.php',  | 
                                                        |
| 332 | - 'OCP\\Exceptions\\AbortedEventException' => $baseDir . '/lib/public/Exceptions/AbortedEventException.php',  | 
                                                        |
| 333 | - 'OCP\\Exceptions\\AppConfigException' => $baseDir . '/lib/public/Exceptions/AppConfigException.php',  | 
                                                        |
| 334 | - 'OCP\\Exceptions\\AppConfigIncorrectTypeException' => $baseDir . '/lib/public/Exceptions/AppConfigIncorrectTypeException.php',  | 
                                                        |
| 335 | - 'OCP\\Exceptions\\AppConfigTypeConflictException' => $baseDir . '/lib/public/Exceptions/AppConfigTypeConflictException.php',  | 
                                                        |
| 336 | - 'OCP\\Exceptions\\AppConfigUnknownKeyException' => $baseDir . '/lib/public/Exceptions/AppConfigUnknownKeyException.php',  | 
                                                        |
| 337 | - 'OCP\\Federation\\Events\\TrustedServerRemovedEvent' => $baseDir . '/lib/public/Federation/Events/TrustedServerRemovedEvent.php',  | 
                                                        |
| 338 | - 'OCP\\Federation\\Exceptions\\ActionNotSupportedException' => $baseDir . '/lib/public/Federation/Exceptions/ActionNotSupportedException.php',  | 
                                                        |
| 339 | - 'OCP\\Federation\\Exceptions\\AuthenticationFailedException' => $baseDir . '/lib/public/Federation/Exceptions/AuthenticationFailedException.php',  | 
                                                        |
| 340 | - 'OCP\\Federation\\Exceptions\\BadRequestException' => $baseDir . '/lib/public/Federation/Exceptions/BadRequestException.php',  | 
                                                        |
| 341 | - 'OCP\\Federation\\Exceptions\\ProviderAlreadyExistsException' => $baseDir . '/lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php',  | 
                                                        |
| 342 | - 'OCP\\Federation\\Exceptions\\ProviderCouldNotAddShareException' => $baseDir . '/lib/public/Federation/Exceptions/ProviderCouldNotAddShareException.php',  | 
                                                        |
| 343 | - 'OCP\\Federation\\Exceptions\\ProviderDoesNotExistsException' => $baseDir . '/lib/public/Federation/Exceptions/ProviderDoesNotExistsException.php',  | 
                                                        |
| 344 | - 'OCP\\Federation\\ICloudFederationFactory' => $baseDir . '/lib/public/Federation/ICloudFederationFactory.php',  | 
                                                        |
| 345 | - 'OCP\\Federation\\ICloudFederationNotification' => $baseDir . '/lib/public/Federation/ICloudFederationNotification.php',  | 
                                                        |
| 346 | - 'OCP\\Federation\\ICloudFederationProvider' => $baseDir . '/lib/public/Federation/ICloudFederationProvider.php',  | 
                                                        |
| 347 | - 'OCP\\Federation\\ICloudFederationProviderManager' => $baseDir . '/lib/public/Federation/ICloudFederationProviderManager.php',  | 
                                                        |
| 348 | - 'OCP\\Federation\\ICloudFederationShare' => $baseDir . '/lib/public/Federation/ICloudFederationShare.php',  | 
                                                        |
| 349 | - 'OCP\\Federation\\ICloudId' => $baseDir . '/lib/public/Federation/ICloudId.php',  | 
                                                        |
| 350 | - 'OCP\\Federation\\ICloudIdManager' => $baseDir . '/lib/public/Federation/ICloudIdManager.php',  | 
                                                        |
| 351 | - 'OCP\\Files' => $baseDir . '/lib/public/Files.php',  | 
                                                        |
| 352 | - 'OCP\\FilesMetadata\\AMetadataEvent' => $baseDir . '/lib/public/FilesMetadata/AMetadataEvent.php',  | 
                                                        |
| 353 | - 'OCP\\FilesMetadata\\Event\\MetadataBackgroundEvent' => $baseDir . '/lib/public/FilesMetadata/Event/MetadataBackgroundEvent.php',  | 
                                                        |
| 354 | - 'OCP\\FilesMetadata\\Event\\MetadataLiveEvent' => $baseDir . '/lib/public/FilesMetadata/Event/MetadataLiveEvent.php',  | 
                                                        |
| 355 | - 'OCP\\FilesMetadata\\Event\\MetadataNamedEvent' => $baseDir . '/lib/public/FilesMetadata/Event/MetadataNamedEvent.php',  | 
                                                        |
| 356 | - 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataException' => $baseDir . '/lib/public/FilesMetadata/Exceptions/FilesMetadataException.php',  | 
                                                        |
| 357 | - 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataKeyFormatException' => $baseDir . '/lib/public/FilesMetadata/Exceptions/FilesMetadataKeyFormatException.php',  | 
                                                        |
| 358 | - 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataNotFoundException' => $baseDir . '/lib/public/FilesMetadata/Exceptions/FilesMetadataNotFoundException.php',  | 
                                                        |
| 359 | - 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataTypeException' => $baseDir . '/lib/public/FilesMetadata/Exceptions/FilesMetadataTypeException.php',  | 
                                                        |
| 360 | - 'OCP\\FilesMetadata\\IFilesMetadataManager' => $baseDir . '/lib/public/FilesMetadata/IFilesMetadataManager.php',  | 
                                                        |
| 361 | - 'OCP\\FilesMetadata\\IMetadataQuery' => $baseDir . '/lib/public/FilesMetadata/IMetadataQuery.php',  | 
                                                        |
| 362 | - 'OCP\\FilesMetadata\\Model\\IFilesMetadata' => $baseDir . '/lib/public/FilesMetadata/Model/IFilesMetadata.php',  | 
                                                        |
| 363 | - 'OCP\\FilesMetadata\\Model\\IMetadataValueWrapper' => $baseDir . '/lib/public/FilesMetadata/Model/IMetadataValueWrapper.php',  | 
                                                        |
| 364 | - 'OCP\\Files\\AlreadyExistsException' => $baseDir . '/lib/public/Files/AlreadyExistsException.php',  | 
                                                        |
| 365 | - 'OCP\\Files\\AppData\\IAppDataFactory' => $baseDir . '/lib/public/Files/AppData/IAppDataFactory.php',  | 
                                                        |
| 366 | - 'OCP\\Files\\Cache\\AbstractCacheEvent' => $baseDir . '/lib/public/Files/Cache/AbstractCacheEvent.php',  | 
                                                        |
| 367 | - 'OCP\\Files\\Cache\\CacheEntryInsertedEvent' => $baseDir . '/lib/public/Files/Cache/CacheEntryInsertedEvent.php',  | 
                                                        |
| 368 | - 'OCP\\Files\\Cache\\CacheEntryRemovedEvent' => $baseDir . '/lib/public/Files/Cache/CacheEntryRemovedEvent.php',  | 
                                                        |
| 369 | - 'OCP\\Files\\Cache\\CacheEntryUpdatedEvent' => $baseDir . '/lib/public/Files/Cache/CacheEntryUpdatedEvent.php',  | 
                                                        |
| 370 | - 'OCP\\Files\\Cache\\CacheInsertEvent' => $baseDir . '/lib/public/Files/Cache/CacheInsertEvent.php',  | 
                                                        |
| 371 | - 'OCP\\Files\\Cache\\CacheUpdateEvent' => $baseDir . '/lib/public/Files/Cache/CacheUpdateEvent.php',  | 
                                                        |
| 372 | - 'OCP\\Files\\Cache\\ICache' => $baseDir . '/lib/public/Files/Cache/ICache.php',  | 
                                                        |
| 373 | - 'OCP\\Files\\Cache\\ICacheEntry' => $baseDir . '/lib/public/Files/Cache/ICacheEntry.php',  | 
                                                        |
| 374 | - 'OCP\\Files\\Cache\\ICacheEvent' => $baseDir . '/lib/public/Files/Cache/ICacheEvent.php',  | 
                                                        |
| 375 | - 'OCP\\Files\\Cache\\IFileAccess' => $baseDir . '/lib/public/Files/Cache/IFileAccess.php',  | 
                                                        |
| 376 | - 'OCP\\Files\\Cache\\IPropagator' => $baseDir . '/lib/public/Files/Cache/IPropagator.php',  | 
                                                        |
| 377 | - 'OCP\\Files\\Cache\\IScanner' => $baseDir . '/lib/public/Files/Cache/IScanner.php',  | 
                                                        |
| 378 | - 'OCP\\Files\\Cache\\IUpdater' => $baseDir . '/lib/public/Files/Cache/IUpdater.php',  | 
                                                        |
| 379 | - 'OCP\\Files\\Cache\\IWatcher' => $baseDir . '/lib/public/Files/Cache/IWatcher.php',  | 
                                                        |
| 380 | - 'OCP\\Files\\Config\\ICachedMountFileInfo' => $baseDir . '/lib/public/Files/Config/ICachedMountFileInfo.php',  | 
                                                        |
| 381 | - 'OCP\\Files\\Config\\ICachedMountInfo' => $baseDir . '/lib/public/Files/Config/ICachedMountInfo.php',  | 
                                                        |
| 382 | - 'OCP\\Files\\Config\\IHomeMountProvider' => $baseDir . '/lib/public/Files/Config/IHomeMountProvider.php',  | 
                                                        |
| 383 | - 'OCP\\Files\\Config\\IMountProvider' => $baseDir . '/lib/public/Files/Config/IMountProvider.php',  | 
                                                        |
| 384 | - 'OCP\\Files\\Config\\IMountProviderCollection' => $baseDir . '/lib/public/Files/Config/IMountProviderCollection.php',  | 
                                                        |
| 385 | - 'OCP\\Files\\Config\\IRootMountProvider' => $baseDir . '/lib/public/Files/Config/IRootMountProvider.php',  | 
                                                        |
| 386 | - 'OCP\\Files\\Config\\IUserMountCache' => $baseDir . '/lib/public/Files/Config/IUserMountCache.php',  | 
                                                        |
| 387 | - 'OCP\\Files\\ConnectionLostException' => $baseDir . '/lib/public/Files/ConnectionLostException.php',  | 
                                                        |
| 388 | - 'OCP\\Files\\Conversion\\ConversionMimeProvider' => $baseDir . '/lib/public/Files/Conversion/ConversionMimeProvider.php',  | 
                                                        |
| 389 | - 'OCP\\Files\\Conversion\\IConversionManager' => $baseDir . '/lib/public/Files/Conversion/IConversionManager.php',  | 
                                                        |
| 390 | - 'OCP\\Files\\Conversion\\IConversionProvider' => $baseDir . '/lib/public/Files/Conversion/IConversionProvider.php',  | 
                                                        |
| 391 | - 'OCP\\Files\\DavUtil' => $baseDir . '/lib/public/Files/DavUtil.php',  | 
                                                        |
| 392 | - 'OCP\\Files\\EmptyFileNameException' => $baseDir . '/lib/public/Files/EmptyFileNameException.php',  | 
                                                        |
| 393 | - 'OCP\\Files\\EntityTooLargeException' => $baseDir . '/lib/public/Files/EntityTooLargeException.php',  | 
                                                        |
| 394 | - 'OCP\\Files\\Events\\BeforeDirectFileDownloadEvent' => $baseDir . '/lib/public/Files/Events/BeforeDirectFileDownloadEvent.php',  | 
                                                        |
| 395 | - 'OCP\\Files\\Events\\BeforeFileScannedEvent' => $baseDir . '/lib/public/Files/Events/BeforeFileScannedEvent.php',  | 
                                                        |
| 396 | - 'OCP\\Files\\Events\\BeforeFileSystemSetupEvent' => $baseDir . '/lib/public/Files/Events/BeforeFileSystemSetupEvent.php',  | 
                                                        |
| 397 | - 'OCP\\Files\\Events\\BeforeFolderScannedEvent' => $baseDir . '/lib/public/Files/Events/BeforeFolderScannedEvent.php',  | 
                                                        |
| 398 | - 'OCP\\Files\\Events\\BeforeZipCreatedEvent' => $baseDir . '/lib/public/Files/Events/BeforeZipCreatedEvent.php',  | 
                                                        |
| 399 | - 'OCP\\Files\\Events\\FileCacheUpdated' => $baseDir . '/lib/public/Files/Events/FileCacheUpdated.php',  | 
                                                        |
| 400 | - 'OCP\\Files\\Events\\FileScannedEvent' => $baseDir . '/lib/public/Files/Events/FileScannedEvent.php',  | 
                                                        |
| 401 | - 'OCP\\Files\\Events\\FolderScannedEvent' => $baseDir . '/lib/public/Files/Events/FolderScannedEvent.php',  | 
                                                        |
| 402 | - 'OCP\\Files\\Events\\InvalidateMountCacheEvent' => $baseDir . '/lib/public/Files/Events/InvalidateMountCacheEvent.php',  | 
                                                        |
| 403 | - 'OCP\\Files\\Events\\NodeAddedToCache' => $baseDir . '/lib/public/Files/Events/NodeAddedToCache.php',  | 
                                                        |
| 404 | - 'OCP\\Files\\Events\\NodeAddedToFavorite' => $baseDir . '/lib/public/Files/Events/NodeAddedToFavorite.php',  | 
                                                        |
| 405 | - 'OCP\\Files\\Events\\NodeRemovedFromCache' => $baseDir . '/lib/public/Files/Events/NodeRemovedFromCache.php',  | 
                                                        |
| 406 | - 'OCP\\Files\\Events\\NodeRemovedFromFavorite' => $baseDir . '/lib/public/Files/Events/NodeRemovedFromFavorite.php',  | 
                                                        |
| 407 | - 'OCP\\Files\\Events\\Node\\AbstractNodeEvent' => $baseDir . '/lib/public/Files/Events/Node/AbstractNodeEvent.php',  | 
                                                        |
| 408 | - 'OCP\\Files\\Events\\Node\\AbstractNodesEvent' => $baseDir . '/lib/public/Files/Events/Node/AbstractNodesEvent.php',  | 
                                                        |
| 409 | - 'OCP\\Files\\Events\\Node\\BeforeNodeCopiedEvent' => $baseDir . '/lib/public/Files/Events/Node/BeforeNodeCopiedEvent.php',  | 
                                                        |
| 410 | - 'OCP\\Files\\Events\\Node\\BeforeNodeCreatedEvent' => $baseDir . '/lib/public/Files/Events/Node/BeforeNodeCreatedEvent.php',  | 
                                                        |
| 411 | - 'OCP\\Files\\Events\\Node\\BeforeNodeDeletedEvent' => $baseDir . '/lib/public/Files/Events/Node/BeforeNodeDeletedEvent.php',  | 
                                                        |
| 412 | - 'OCP\\Files\\Events\\Node\\BeforeNodeReadEvent' => $baseDir . '/lib/public/Files/Events/Node/BeforeNodeReadEvent.php',  | 
                                                        |
| 413 | - 'OCP\\Files\\Events\\Node\\BeforeNodeRenamedEvent' => $baseDir . '/lib/public/Files/Events/Node/BeforeNodeRenamedEvent.php',  | 
                                                        |
| 414 | - 'OCP\\Files\\Events\\Node\\BeforeNodeTouchedEvent' => $baseDir . '/lib/public/Files/Events/Node/BeforeNodeTouchedEvent.php',  | 
                                                        |
| 415 | - 'OCP\\Files\\Events\\Node\\BeforeNodeWrittenEvent' => $baseDir . '/lib/public/Files/Events/Node/BeforeNodeWrittenEvent.php',  | 
                                                        |
| 416 | - 'OCP\\Files\\Events\\Node\\FilesystemTornDownEvent' => $baseDir . '/lib/public/Files/Events/Node/FilesystemTornDownEvent.php',  | 
                                                        |
| 417 | - 'OCP\\Files\\Events\\Node\\NodeCopiedEvent' => $baseDir . '/lib/public/Files/Events/Node/NodeCopiedEvent.php',  | 
                                                        |
| 418 | - 'OCP\\Files\\Events\\Node\\NodeCreatedEvent' => $baseDir . '/lib/public/Files/Events/Node/NodeCreatedEvent.php',  | 
                                                        |
| 419 | - 'OCP\\Files\\Events\\Node\\NodeDeletedEvent' => $baseDir . '/lib/public/Files/Events/Node/NodeDeletedEvent.php',  | 
                                                        |
| 420 | - 'OCP\\Files\\Events\\Node\\NodeRenamedEvent' => $baseDir . '/lib/public/Files/Events/Node/NodeRenamedEvent.php',  | 
                                                        |
| 421 | - 'OCP\\Files\\Events\\Node\\NodeTouchedEvent' => $baseDir . '/lib/public/Files/Events/Node/NodeTouchedEvent.php',  | 
                                                        |
| 422 | - 'OCP\\Files\\Events\\Node\\NodeWrittenEvent' => $baseDir . '/lib/public/Files/Events/Node/NodeWrittenEvent.php',  | 
                                                        |
| 423 | - 'OCP\\Files\\File' => $baseDir . '/lib/public/Files/File.php',  | 
                                                        |
| 424 | - 'OCP\\Files\\FileInfo' => $baseDir . '/lib/public/Files/FileInfo.php',  | 
                                                        |
| 425 | - 'OCP\\Files\\FileNameTooLongException' => $baseDir . '/lib/public/Files/FileNameTooLongException.php',  | 
                                                        |
| 426 | - 'OCP\\Files\\Folder' => $baseDir . '/lib/public/Files/Folder.php',  | 
                                                        |
| 427 | - 'OCP\\Files\\ForbiddenException' => $baseDir . '/lib/public/Files/ForbiddenException.php',  | 
                                                        |
| 428 | - 'OCP\\Files\\GenericFileException' => $baseDir . '/lib/public/Files/GenericFileException.php',  | 
                                                        |
| 429 | - 'OCP\\Files\\IAppData' => $baseDir . '/lib/public/Files/IAppData.php',  | 
                                                        |
| 430 | - 'OCP\\Files\\IFilenameValidator' => $baseDir . '/lib/public/Files/IFilenameValidator.php',  | 
                                                        |
| 431 | - 'OCP\\Files\\IHomeStorage' => $baseDir . '/lib/public/Files/IHomeStorage.php',  | 
                                                        |
| 432 | - 'OCP\\Files\\IMimeTypeDetector' => $baseDir . '/lib/public/Files/IMimeTypeDetector.php',  | 
                                                        |
| 433 | - 'OCP\\Files\\IMimeTypeLoader' => $baseDir . '/lib/public/Files/IMimeTypeLoader.php',  | 
                                                        |
| 434 | - 'OCP\\Files\\IRootFolder' => $baseDir . '/lib/public/Files/IRootFolder.php',  | 
                                                        |
| 435 | - 'OCP\\Files\\InvalidCharacterInPathException' => $baseDir . '/lib/public/Files/InvalidCharacterInPathException.php',  | 
                                                        |
| 436 | - 'OCP\\Files\\InvalidContentException' => $baseDir . '/lib/public/Files/InvalidContentException.php',  | 
                                                        |
| 437 | - 'OCP\\Files\\InvalidDirectoryException' => $baseDir . '/lib/public/Files/InvalidDirectoryException.php',  | 
                                                        |
| 438 | - 'OCP\\Files\\InvalidPathException' => $baseDir . '/lib/public/Files/InvalidPathException.php',  | 
                                                        |
| 439 | - 'OCP\\Files\\LockNotAcquiredException' => $baseDir . '/lib/public/Files/LockNotAcquiredException.php',  | 
                                                        |
| 440 | - 'OCP\\Files\\Lock\\ILock' => $baseDir . '/lib/public/Files/Lock/ILock.php',  | 
                                                        |
| 441 | - 'OCP\\Files\\Lock\\ILockManager' => $baseDir . '/lib/public/Files/Lock/ILockManager.php',  | 
                                                        |
| 442 | - 'OCP\\Files\\Lock\\ILockProvider' => $baseDir . '/lib/public/Files/Lock/ILockProvider.php',  | 
                                                        |
| 443 | - 'OCP\\Files\\Lock\\LockContext' => $baseDir . '/lib/public/Files/Lock/LockContext.php',  | 
                                                        |
| 444 | - 'OCP\\Files\\Lock\\NoLockProviderException' => $baseDir . '/lib/public/Files/Lock/NoLockProviderException.php',  | 
                                                        |
| 445 | - 'OCP\\Files\\Lock\\OwnerLockedException' => $baseDir . '/lib/public/Files/Lock/OwnerLockedException.php',  | 
                                                        |
| 446 | - 'OCP\\Files\\Mount\\IMountManager' => $baseDir . '/lib/public/Files/Mount/IMountManager.php',  | 
                                                        |
| 447 | - 'OCP\\Files\\Mount\\IMountPoint' => $baseDir . '/lib/public/Files/Mount/IMountPoint.php',  | 
                                                        |
| 448 | - 'OCP\\Files\\Mount\\IMovableMount' => $baseDir . '/lib/public/Files/Mount/IMovableMount.php',  | 
                                                        |
| 449 | - 'OCP\\Files\\Mount\\IShareOwnerlessMount' => $baseDir . '/lib/public/Files/Mount/IShareOwnerlessMount.php',  | 
                                                        |
| 450 | - 'OCP\\Files\\Mount\\ISystemMountPoint' => $baseDir . '/lib/public/Files/Mount/ISystemMountPoint.php',  | 
                                                        |
| 451 | - 'OCP\\Files\\Node' => $baseDir . '/lib/public/Files/Node.php',  | 
                                                        |
| 452 | - 'OCP\\Files\\NotEnoughSpaceException' => $baseDir . '/lib/public/Files/NotEnoughSpaceException.php',  | 
                                                        |
| 453 | - 'OCP\\Files\\NotFoundException' => $baseDir . '/lib/public/Files/NotFoundException.php',  | 
                                                        |
| 454 | - 'OCP\\Files\\NotPermittedException' => $baseDir . '/lib/public/Files/NotPermittedException.php',  | 
                                                        |
| 455 | - 'OCP\\Files\\Notify\\IChange' => $baseDir . '/lib/public/Files/Notify/IChange.php',  | 
                                                        |
| 456 | - 'OCP\\Files\\Notify\\INotifyHandler' => $baseDir . '/lib/public/Files/Notify/INotifyHandler.php',  | 
                                                        |
| 457 | - 'OCP\\Files\\Notify\\IRenameChange' => $baseDir . '/lib/public/Files/Notify/IRenameChange.php',  | 
                                                        |
| 458 | - 'OCP\\Files\\ObjectStore\\IObjectStore' => $baseDir . '/lib/public/Files/ObjectStore/IObjectStore.php',  | 
                                                        |
| 459 | - 'OCP\\Files\\ObjectStore\\IObjectStoreMetaData' => $baseDir . '/lib/public/Files/ObjectStore/IObjectStoreMetaData.php',  | 
                                                        |
| 460 | - 'OCP\\Files\\ObjectStore\\IObjectStoreMultiPartUpload' => $baseDir . '/lib/public/Files/ObjectStore/IObjectStoreMultiPartUpload.php',  | 
                                                        |
| 461 | - 'OCP\\Files\\ReservedWordException' => $baseDir . '/lib/public/Files/ReservedWordException.php',  | 
                                                        |
| 462 | - 'OCP\\Files\\Search\\ISearchBinaryOperator' => $baseDir . '/lib/public/Files/Search/ISearchBinaryOperator.php',  | 
                                                        |
| 463 | - 'OCP\\Files\\Search\\ISearchComparison' => $baseDir . '/lib/public/Files/Search/ISearchComparison.php',  | 
                                                        |
| 464 | - 'OCP\\Files\\Search\\ISearchOperator' => $baseDir . '/lib/public/Files/Search/ISearchOperator.php',  | 
                                                        |
| 465 | - 'OCP\\Files\\Search\\ISearchOrder' => $baseDir . '/lib/public/Files/Search/ISearchOrder.php',  | 
                                                        |
| 466 | - 'OCP\\Files\\Search\\ISearchQuery' => $baseDir . '/lib/public/Files/Search/ISearchQuery.php',  | 
                                                        |
| 467 | - 'OCP\\Files\\SimpleFS\\ISimpleFile' => $baseDir . '/lib/public/Files/SimpleFS/ISimpleFile.php',  | 
                                                        |
| 468 | - 'OCP\\Files\\SimpleFS\\ISimpleFolder' => $baseDir . '/lib/public/Files/SimpleFS/ISimpleFolder.php',  | 
                                                        |
| 469 | - 'OCP\\Files\\SimpleFS\\ISimpleRoot' => $baseDir . '/lib/public/Files/SimpleFS/ISimpleRoot.php',  | 
                                                        |
| 470 | - 'OCP\\Files\\SimpleFS\\InMemoryFile' => $baseDir . '/lib/public/Files/SimpleFS/InMemoryFile.php',  | 
                                                        |
| 471 | - 'OCP\\Files\\StorageAuthException' => $baseDir . '/lib/public/Files/StorageAuthException.php',  | 
                                                        |
| 472 | - 'OCP\\Files\\StorageBadConfigException' => $baseDir . '/lib/public/Files/StorageBadConfigException.php',  | 
                                                        |
| 473 | - 'OCP\\Files\\StorageConnectionException' => $baseDir . '/lib/public/Files/StorageConnectionException.php',  | 
                                                        |
| 474 | - 'OCP\\Files\\StorageInvalidException' => $baseDir . '/lib/public/Files/StorageInvalidException.php',  | 
                                                        |
| 475 | - 'OCP\\Files\\StorageNotAvailableException' => $baseDir . '/lib/public/Files/StorageNotAvailableException.php',  | 
                                                        |
| 476 | - 'OCP\\Files\\StorageTimeoutException' => $baseDir . '/lib/public/Files/StorageTimeoutException.php',  | 
                                                        |
| 477 | - 'OCP\\Files\\Storage\\IChunkedFileWrite' => $baseDir . '/lib/public/Files/Storage/IChunkedFileWrite.php',  | 
                                                        |
| 478 | - 'OCP\\Files\\Storage\\IConstructableStorage' => $baseDir . '/lib/public/Files/Storage/IConstructableStorage.php',  | 
                                                        |
| 479 | - 'OCP\\Files\\Storage\\IDisableEncryptionStorage' => $baseDir . '/lib/public/Files/Storage/IDisableEncryptionStorage.php',  | 
                                                        |
| 480 | - 'OCP\\Files\\Storage\\ILockingStorage' => $baseDir . '/lib/public/Files/Storage/ILockingStorage.php',  | 
                                                        |
| 481 | - 'OCP\\Files\\Storage\\INotifyStorage' => $baseDir . '/lib/public/Files/Storage/INotifyStorage.php',  | 
                                                        |
| 482 | - 'OCP\\Files\\Storage\\IReliableEtagStorage' => $baseDir . '/lib/public/Files/Storage/IReliableEtagStorage.php',  | 
                                                        |
| 483 | - 'OCP\\Files\\Storage\\ISharedStorage' => $baseDir . '/lib/public/Files/Storage/ISharedStorage.php',  | 
                                                        |
| 484 | - 'OCP\\Files\\Storage\\IStorage' => $baseDir . '/lib/public/Files/Storage/IStorage.php',  | 
                                                        |
| 485 | - 'OCP\\Files\\Storage\\IStorageFactory' => $baseDir . '/lib/public/Files/Storage/IStorageFactory.php',  | 
                                                        |
| 486 | - 'OCP\\Files\\Storage\\IWriteStreamStorage' => $baseDir . '/lib/public/Files/Storage/IWriteStreamStorage.php',  | 
                                                        |
| 487 | - 'OCP\\Files\\Template\\BeforeGetTemplatesEvent' => $baseDir . '/lib/public/Files/Template/BeforeGetTemplatesEvent.php',  | 
                                                        |
| 488 | - 'OCP\\Files\\Template\\Field' => $baseDir . '/lib/public/Files/Template/Field.php',  | 
                                                        |
| 489 | - 'OCP\\Files\\Template\\FieldFactory' => $baseDir . '/lib/public/Files/Template/FieldFactory.php',  | 
                                                        |
| 490 | - 'OCP\\Files\\Template\\FieldType' => $baseDir . '/lib/public/Files/Template/FieldType.php',  | 
                                                        |
| 491 | - 'OCP\\Files\\Template\\Fields\\CheckBoxField' => $baseDir . '/lib/public/Files/Template/Fields/CheckBoxField.php',  | 
                                                        |
| 492 | - 'OCP\\Files\\Template\\Fields\\RichTextField' => $baseDir . '/lib/public/Files/Template/Fields/RichTextField.php',  | 
                                                        |
| 493 | - 'OCP\\Files\\Template\\FileCreatedFromTemplateEvent' => $baseDir . '/lib/public/Files/Template/FileCreatedFromTemplateEvent.php',  | 
                                                        |
| 494 | - 'OCP\\Files\\Template\\ICustomTemplateProvider' => $baseDir . '/lib/public/Files/Template/ICustomTemplateProvider.php',  | 
                                                        |
| 495 | - 'OCP\\Files\\Template\\ITemplateManager' => $baseDir . '/lib/public/Files/Template/ITemplateManager.php',  | 
                                                        |
| 496 | - 'OCP\\Files\\Template\\InvalidFieldTypeException' => $baseDir . '/lib/public/Files/Template/InvalidFieldTypeException.php',  | 
                                                        |
| 497 | - 'OCP\\Files\\Template\\RegisterTemplateCreatorEvent' => $baseDir . '/lib/public/Files/Template/RegisterTemplateCreatorEvent.php',  | 
                                                        |
| 498 | - 'OCP\\Files\\Template\\Template' => $baseDir . '/lib/public/Files/Template/Template.php',  | 
                                                        |
| 499 | - 'OCP\\Files\\Template\\TemplateFileCreator' => $baseDir . '/lib/public/Files/Template/TemplateFileCreator.php',  | 
                                                        |
| 500 | - 'OCP\\Files\\UnseekableException' => $baseDir . '/lib/public/Files/UnseekableException.php',  | 
                                                        |
| 501 | - 'OCP\\Files_FullTextSearch\\Model\\AFilesDocument' => $baseDir . '/lib/public/Files_FullTextSearch/Model/AFilesDocument.php',  | 
                                                        |
| 502 | - 'OCP\\FullTextSearch\\Exceptions\\FullTextSearchAppNotAvailableException' => $baseDir . '/lib/public/FullTextSearch/Exceptions/FullTextSearchAppNotAvailableException.php',  | 
                                                        |
| 503 | - 'OCP\\FullTextSearch\\Exceptions\\FullTextSearchIndexNotAvailableException' => $baseDir . '/lib/public/FullTextSearch/Exceptions/FullTextSearchIndexNotAvailableException.php',  | 
                                                        |
| 504 | - 'OCP\\FullTextSearch\\IFullTextSearchManager' => $baseDir . '/lib/public/FullTextSearch/IFullTextSearchManager.php',  | 
                                                        |
| 505 | - 'OCP\\FullTextSearch\\IFullTextSearchPlatform' => $baseDir . '/lib/public/FullTextSearch/IFullTextSearchPlatform.php',  | 
                                                        |
| 506 | - 'OCP\\FullTextSearch\\IFullTextSearchProvider' => $baseDir . '/lib/public/FullTextSearch/IFullTextSearchProvider.php',  | 
                                                        |
| 507 | - 'OCP\\FullTextSearch\\Model\\IDocumentAccess' => $baseDir . '/lib/public/FullTextSearch/Model/IDocumentAccess.php',  | 
                                                        |
| 508 | - 'OCP\\FullTextSearch\\Model\\IIndex' => $baseDir . '/lib/public/FullTextSearch/Model/IIndex.php',  | 
                                                        |
| 509 | - 'OCP\\FullTextSearch\\Model\\IIndexDocument' => $baseDir . '/lib/public/FullTextSearch/Model/IIndexDocument.php',  | 
                                                        |
| 510 | - 'OCP\\FullTextSearch\\Model\\IIndexOptions' => $baseDir . '/lib/public/FullTextSearch/Model/IIndexOptions.php',  | 
                                                        |
| 511 | - 'OCP\\FullTextSearch\\Model\\IRunner' => $baseDir . '/lib/public/FullTextSearch/Model/IRunner.php',  | 
                                                        |
| 512 | - 'OCP\\FullTextSearch\\Model\\ISearchOption' => $baseDir . '/lib/public/FullTextSearch/Model/ISearchOption.php',  | 
                                                        |
| 513 | - 'OCP\\FullTextSearch\\Model\\ISearchRequest' => $baseDir . '/lib/public/FullTextSearch/Model/ISearchRequest.php',  | 
                                                        |
| 514 | - 'OCP\\FullTextSearch\\Model\\ISearchRequestSimpleQuery' => $baseDir . '/lib/public/FullTextSearch/Model/ISearchRequestSimpleQuery.php',  | 
                                                        |
| 515 | - 'OCP\\FullTextSearch\\Model\\ISearchResult' => $baseDir . '/lib/public/FullTextSearch/Model/ISearchResult.php',  | 
                                                        |
| 516 | - 'OCP\\FullTextSearch\\Model\\ISearchTemplate' => $baseDir . '/lib/public/FullTextSearch/Model/ISearchTemplate.php',  | 
                                                        |
| 517 | - 'OCP\\FullTextSearch\\Service\\IIndexService' => $baseDir . '/lib/public/FullTextSearch/Service/IIndexService.php',  | 
                                                        |
| 518 | - 'OCP\\FullTextSearch\\Service\\IProviderService' => $baseDir . '/lib/public/FullTextSearch/Service/IProviderService.php',  | 
                                                        |
| 519 | - 'OCP\\FullTextSearch\\Service\\ISearchService' => $baseDir . '/lib/public/FullTextSearch/Service/ISearchService.php',  | 
                                                        |
| 520 | - 'OCP\\GlobalScale\\IConfig' => $baseDir . '/lib/public/GlobalScale/IConfig.php',  | 
                                                        |
| 521 | - 'OCP\\GroupInterface' => $baseDir . '/lib/public/GroupInterface.php',  | 
                                                        |
| 522 | - 'OCP\\Group\\Backend\\ABackend' => $baseDir . '/lib/public/Group/Backend/ABackend.php',  | 
                                                        |
| 523 | - 'OCP\\Group\\Backend\\IAddToGroupBackend' => $baseDir . '/lib/public/Group/Backend/IAddToGroupBackend.php',  | 
                                                        |
| 524 | - 'OCP\\Group\\Backend\\IBatchMethodsBackend' => $baseDir . '/lib/public/Group/Backend/IBatchMethodsBackend.php',  | 
                                                        |
| 525 | - 'OCP\\Group\\Backend\\ICountDisabledInGroup' => $baseDir . '/lib/public/Group/Backend/ICountDisabledInGroup.php',  | 
                                                        |
| 526 | - 'OCP\\Group\\Backend\\ICountUsersBackend' => $baseDir . '/lib/public/Group/Backend/ICountUsersBackend.php',  | 
                                                        |
| 527 | - 'OCP\\Group\\Backend\\ICreateGroupBackend' => $baseDir . '/lib/public/Group/Backend/ICreateGroupBackend.php',  | 
                                                        |
| 528 | - 'OCP\\Group\\Backend\\ICreateNamedGroupBackend' => $baseDir . '/lib/public/Group/Backend/ICreateNamedGroupBackend.php',  | 
                                                        |
| 529 | - 'OCP\\Group\\Backend\\IDeleteGroupBackend' => $baseDir . '/lib/public/Group/Backend/IDeleteGroupBackend.php',  | 
                                                        |
| 530 | - 'OCP\\Group\\Backend\\IGetDisplayNameBackend' => $baseDir . '/lib/public/Group/Backend/IGetDisplayNameBackend.php',  | 
                                                        |
| 531 | - 'OCP\\Group\\Backend\\IGroupDetailsBackend' => $baseDir . '/lib/public/Group/Backend/IGroupDetailsBackend.php',  | 
                                                        |
| 532 | - 'OCP\\Group\\Backend\\IHideFromCollaborationBackend' => $baseDir . '/lib/public/Group/Backend/IHideFromCollaborationBackend.php',  | 
                                                        |
| 533 | - 'OCP\\Group\\Backend\\IIsAdminBackend' => $baseDir . '/lib/public/Group/Backend/IIsAdminBackend.php',  | 
                                                        |
| 534 | - 'OCP\\Group\\Backend\\INamedBackend' => $baseDir . '/lib/public/Group/Backend/INamedBackend.php',  | 
                                                        |
| 535 | - 'OCP\\Group\\Backend\\IRemoveFromGroupBackend' => $baseDir . '/lib/public/Group/Backend/IRemoveFromGroupBackend.php',  | 
                                                        |
| 536 | - 'OCP\\Group\\Backend\\ISearchableGroupBackend' => $baseDir . '/lib/public/Group/Backend/ISearchableGroupBackend.php',  | 
                                                        |
| 537 | - 'OCP\\Group\\Backend\\ISetDisplayNameBackend' => $baseDir . '/lib/public/Group/Backend/ISetDisplayNameBackend.php',  | 
                                                        |
| 538 | - 'OCP\\Group\\Events\\BeforeGroupChangedEvent' => $baseDir . '/lib/public/Group/Events/BeforeGroupChangedEvent.php',  | 
                                                        |
| 539 | - 'OCP\\Group\\Events\\BeforeGroupCreatedEvent' => $baseDir . '/lib/public/Group/Events/BeforeGroupCreatedEvent.php',  | 
                                                        |
| 540 | - 'OCP\\Group\\Events\\BeforeGroupDeletedEvent' => $baseDir . '/lib/public/Group/Events/BeforeGroupDeletedEvent.php',  | 
                                                        |
| 541 | - 'OCP\\Group\\Events\\BeforeUserAddedEvent' => $baseDir . '/lib/public/Group/Events/BeforeUserAddedEvent.php',  | 
                                                        |
| 542 | - 'OCP\\Group\\Events\\BeforeUserRemovedEvent' => $baseDir . '/lib/public/Group/Events/BeforeUserRemovedEvent.php',  | 
                                                        |
| 543 | - 'OCP\\Group\\Events\\GroupChangedEvent' => $baseDir . '/lib/public/Group/Events/GroupChangedEvent.php',  | 
                                                        |
| 544 | - 'OCP\\Group\\Events\\GroupCreatedEvent' => $baseDir . '/lib/public/Group/Events/GroupCreatedEvent.php',  | 
                                                        |
| 545 | - 'OCP\\Group\\Events\\GroupDeletedEvent' => $baseDir . '/lib/public/Group/Events/GroupDeletedEvent.php',  | 
                                                        |
| 546 | - 'OCP\\Group\\Events\\SubAdminAddedEvent' => $baseDir . '/lib/public/Group/Events/SubAdminAddedEvent.php',  | 
                                                        |
| 547 | - 'OCP\\Group\\Events\\SubAdminRemovedEvent' => $baseDir . '/lib/public/Group/Events/SubAdminRemovedEvent.php',  | 
                                                        |
| 548 | - 'OCP\\Group\\Events\\UserAddedEvent' => $baseDir . '/lib/public/Group/Events/UserAddedEvent.php',  | 
                                                        |
| 549 | - 'OCP\\Group\\Events\\UserRemovedEvent' => $baseDir . '/lib/public/Group/Events/UserRemovedEvent.php',  | 
                                                        |
| 550 | - 'OCP\\Group\\ISubAdmin' => $baseDir . '/lib/public/Group/ISubAdmin.php',  | 
                                                        |
| 551 | - 'OCP\\HintException' => $baseDir . '/lib/public/HintException.php',  | 
                                                        |
| 552 | - 'OCP\\Http\\Client\\IClient' => $baseDir . '/lib/public/Http/Client/IClient.php',  | 
                                                        |
| 553 | - 'OCP\\Http\\Client\\IClientService' => $baseDir . '/lib/public/Http/Client/IClientService.php',  | 
                                                        |
| 554 | - 'OCP\\Http\\Client\\IPromise' => $baseDir . '/lib/public/Http/Client/IPromise.php',  | 
                                                        |
| 555 | - 'OCP\\Http\\Client\\IResponse' => $baseDir . '/lib/public/Http/Client/IResponse.php',  | 
                                                        |
| 556 | - 'OCP\\Http\\Client\\LocalServerException' => $baseDir . '/lib/public/Http/Client/LocalServerException.php',  | 
                                                        |
| 557 | - 'OCP\\Http\\WellKnown\\GenericResponse' => $baseDir . '/lib/public/Http/WellKnown/GenericResponse.php',  | 
                                                        |
| 558 | - 'OCP\\Http\\WellKnown\\IHandler' => $baseDir . '/lib/public/Http/WellKnown/IHandler.php',  | 
                                                        |
| 559 | - 'OCP\\Http\\WellKnown\\IRequestContext' => $baseDir . '/lib/public/Http/WellKnown/IRequestContext.php',  | 
                                                        |
| 560 | - 'OCP\\Http\\WellKnown\\IResponse' => $baseDir . '/lib/public/Http/WellKnown/IResponse.php',  | 
                                                        |
| 561 | - 'OCP\\Http\\WellKnown\\JrdResponse' => $baseDir . '/lib/public/Http/WellKnown/JrdResponse.php',  | 
                                                        |
| 562 | - 'OCP\\IAddressBook' => $baseDir . '/lib/public/IAddressBook.php',  | 
                                                        |
| 563 | - 'OCP\\IAddressBookEnabled' => $baseDir . '/lib/public/IAddressBookEnabled.php',  | 
                                                        |
| 564 | - 'OCP\\IAppConfig' => $baseDir . '/lib/public/IAppConfig.php',  | 
                                                        |
| 565 | - 'OCP\\IAvatar' => $baseDir . '/lib/public/IAvatar.php',  | 
                                                        |
| 566 | - 'OCP\\IAvatarManager' => $baseDir . '/lib/public/IAvatarManager.php',  | 
                                                        |
| 567 | - 'OCP\\IBinaryFinder' => $baseDir . '/lib/public/IBinaryFinder.php',  | 
                                                        |
| 568 | - 'OCP\\ICache' => $baseDir . '/lib/public/ICache.php',  | 
                                                        |
| 569 | - 'OCP\\ICacheFactory' => $baseDir . '/lib/public/ICacheFactory.php',  | 
                                                        |
| 570 | - 'OCP\\ICertificate' => $baseDir . '/lib/public/ICertificate.php',  | 
                                                        |
| 571 | - 'OCP\\ICertificateManager' => $baseDir . '/lib/public/ICertificateManager.php',  | 
                                                        |
| 572 | - 'OCP\\IConfig' => $baseDir . '/lib/public/IConfig.php',  | 
                                                        |
| 573 | - 'OCP\\IContainer' => $baseDir . '/lib/public/IContainer.php',  | 
                                                        |
| 574 | - 'OCP\\IDBConnection' => $baseDir . '/lib/public/IDBConnection.php',  | 
                                                        |
| 575 | - 'OCP\\IDateTimeFormatter' => $baseDir . '/lib/public/IDateTimeFormatter.php',  | 
                                                        |
| 576 | - 'OCP\\IDateTimeZone' => $baseDir . '/lib/public/IDateTimeZone.php',  | 
                                                        |
| 577 | - 'OCP\\IEmojiHelper' => $baseDir . '/lib/public/IEmojiHelper.php',  | 
                                                        |
| 578 | - 'OCP\\IEventSource' => $baseDir . '/lib/public/IEventSource.php',  | 
                                                        |
| 579 | - 'OCP\\IEventSourceFactory' => $baseDir . '/lib/public/IEventSourceFactory.php',  | 
                                                        |
| 580 | - 'OCP\\IGroup' => $baseDir . '/lib/public/IGroup.php',  | 
                                                        |
| 581 | - 'OCP\\IGroupManager' => $baseDir . '/lib/public/IGroupManager.php',  | 
                                                        |
| 582 | - 'OCP\\IImage' => $baseDir . '/lib/public/IImage.php',  | 
                                                        |
| 583 | - 'OCP\\IInitialStateService' => $baseDir . '/lib/public/IInitialStateService.php',  | 
                                                        |
| 584 | - 'OCP\\IL10N' => $baseDir . '/lib/public/IL10N.php',  | 
                                                        |
| 585 | - 'OCP\\ILogger' => $baseDir . '/lib/public/ILogger.php',  | 
                                                        |
| 586 | - 'OCP\\IMemcache' => $baseDir . '/lib/public/IMemcache.php',  | 
                                                        |
| 587 | - 'OCP\\IMemcacheTTL' => $baseDir . '/lib/public/IMemcacheTTL.php',  | 
                                                        |
| 588 | - 'OCP\\INavigationManager' => $baseDir . '/lib/public/INavigationManager.php',  | 
                                                        |
| 589 | - 'OCP\\IPhoneNumberUtil' => $baseDir . '/lib/public/IPhoneNumberUtil.php',  | 
                                                        |
| 590 | - 'OCP\\IPreview' => $baseDir . '/lib/public/IPreview.php',  | 
                                                        |
| 591 | - 'OCP\\IRequest' => $baseDir . '/lib/public/IRequest.php',  | 
                                                        |
| 592 | - 'OCP\\IRequestId' => $baseDir . '/lib/public/IRequestId.php',  | 
                                                        |
| 593 | - 'OCP\\IServerContainer' => $baseDir . '/lib/public/IServerContainer.php',  | 
                                                        |
| 594 | - 'OCP\\ISession' => $baseDir . '/lib/public/ISession.php',  | 
                                                        |
| 595 | - 'OCP\\IStreamImage' => $baseDir . '/lib/public/IStreamImage.php',  | 
                                                        |
| 596 | - 'OCP\\ITagManager' => $baseDir . '/lib/public/ITagManager.php',  | 
                                                        |
| 597 | - 'OCP\\ITags' => $baseDir . '/lib/public/ITags.php',  | 
                                                        |
| 598 | - 'OCP\\ITempManager' => $baseDir . '/lib/public/ITempManager.php',  | 
                                                        |
| 599 | - 'OCP\\IURLGenerator' => $baseDir . '/lib/public/IURLGenerator.php',  | 
                                                        |
| 600 | - 'OCP\\IUser' => $baseDir . '/lib/public/IUser.php',  | 
                                                        |
| 601 | - 'OCP\\IUserBackend' => $baseDir . '/lib/public/IUserBackend.php',  | 
                                                        |
| 602 | - 'OCP\\IUserManager' => $baseDir . '/lib/public/IUserManager.php',  | 
                                                        |
| 603 | - 'OCP\\IUserSession' => $baseDir . '/lib/public/IUserSession.php',  | 
                                                        |
| 604 | - 'OCP\\Image' => $baseDir . '/lib/public/Image.php',  | 
                                                        |
| 605 | - 'OCP\\L10N\\IFactory' => $baseDir . '/lib/public/L10N/IFactory.php',  | 
                                                        |
| 606 | - 'OCP\\L10N\\ILanguageIterator' => $baseDir . '/lib/public/L10N/ILanguageIterator.php',  | 
                                                        |
| 607 | - 'OCP\\LDAP\\IDeletionFlagSupport' => $baseDir . '/lib/public/LDAP/IDeletionFlagSupport.php',  | 
                                                        |
| 608 | - 'OCP\\LDAP\\ILDAPProvider' => $baseDir . '/lib/public/LDAP/ILDAPProvider.php',  | 
                                                        |
| 609 | - 'OCP\\LDAP\\ILDAPProviderFactory' => $baseDir . '/lib/public/LDAP/ILDAPProviderFactory.php',  | 
                                                        |
| 610 | - 'OCP\\Lock\\ILockingProvider' => $baseDir . '/lib/public/Lock/ILockingProvider.php',  | 
                                                        |
| 611 | - 'OCP\\Lock\\LockedException' => $baseDir . '/lib/public/Lock/LockedException.php',  | 
                                                        |
| 612 | - 'OCP\\Lock\\ManuallyLockedException' => $baseDir . '/lib/public/Lock/ManuallyLockedException.php',  | 
                                                        |
| 613 | - 'OCP\\Lockdown\\ILockdownManager' => $baseDir . '/lib/public/Lockdown/ILockdownManager.php',  | 
                                                        |
| 614 | - 'OCP\\Log\\Audit\\CriticalActionPerformedEvent' => $baseDir . '/lib/public/Log/Audit/CriticalActionPerformedEvent.php',  | 
                                                        |
| 615 | - 'OCP\\Log\\BeforeMessageLoggedEvent' => $baseDir . '/lib/public/Log/BeforeMessageLoggedEvent.php',  | 
                                                        |
| 616 | - 'OCP\\Log\\IDataLogger' => $baseDir . '/lib/public/Log/IDataLogger.php',  | 
                                                        |
| 617 | - 'OCP\\Log\\IFileBased' => $baseDir . '/lib/public/Log/IFileBased.php',  | 
                                                        |
| 618 | - 'OCP\\Log\\ILogFactory' => $baseDir . '/lib/public/Log/ILogFactory.php',  | 
                                                        |
| 619 | - 'OCP\\Log\\IWriter' => $baseDir . '/lib/public/Log/IWriter.php',  | 
                                                        |
| 620 | - 'OCP\\Log\\RotationTrait' => $baseDir . '/lib/public/Log/RotationTrait.php',  | 
                                                        |
| 621 | - 'OCP\\Mail\\Events\\BeforeMessageSent' => $baseDir . '/lib/public/Mail/Events/BeforeMessageSent.php',  | 
                                                        |
| 622 | - 'OCP\\Mail\\Headers\\AutoSubmitted' => $baseDir . '/lib/public/Mail/Headers/AutoSubmitted.php',  | 
                                                        |
| 623 | - 'OCP\\Mail\\IAttachment' => $baseDir . '/lib/public/Mail/IAttachment.php',  | 
                                                        |
| 624 | - 'OCP\\Mail\\IEMailTemplate' => $baseDir . '/lib/public/Mail/IEMailTemplate.php',  | 
                                                        |
| 625 | - 'OCP\\Mail\\IMailer' => $baseDir . '/lib/public/Mail/IMailer.php',  | 
                                                        |
| 626 | - 'OCP\\Mail\\IMessage' => $baseDir . '/lib/public/Mail/IMessage.php',  | 
                                                        |
| 627 | - 'OCP\\Mail\\Provider\\Address' => $baseDir . '/lib/public/Mail/Provider/Address.php',  | 
                                                        |
| 628 | - 'OCP\\Mail\\Provider\\Attachment' => $baseDir . '/lib/public/Mail/Provider/Attachment.php',  | 
                                                        |
| 629 | - 'OCP\\Mail\\Provider\\Exception\\Exception' => $baseDir . '/lib/public/Mail/Provider/Exception/Exception.php',  | 
                                                        |
| 630 | - 'OCP\\Mail\\Provider\\Exception\\SendException' => $baseDir . '/lib/public/Mail/Provider/Exception/SendException.php',  | 
                                                        |
| 631 | - 'OCP\\Mail\\Provider\\IAddress' => $baseDir . '/lib/public/Mail/Provider/IAddress.php',  | 
                                                        |
| 632 | - 'OCP\\Mail\\Provider\\IAttachment' => $baseDir . '/lib/public/Mail/Provider/IAttachment.php',  | 
                                                        |
| 633 | - 'OCP\\Mail\\Provider\\IManager' => $baseDir . '/lib/public/Mail/Provider/IManager.php',  | 
                                                        |
| 634 | - 'OCP\\Mail\\Provider\\IMessage' => $baseDir . '/lib/public/Mail/Provider/IMessage.php',  | 
                                                        |
| 635 | - 'OCP\\Mail\\Provider\\IMessageSend' => $baseDir . '/lib/public/Mail/Provider/IMessageSend.php',  | 
                                                        |
| 636 | - 'OCP\\Mail\\Provider\\IProvider' => $baseDir . '/lib/public/Mail/Provider/IProvider.php',  | 
                                                        |
| 637 | - 'OCP\\Mail\\Provider\\IService' => $baseDir . '/lib/public/Mail/Provider/IService.php',  | 
                                                        |
| 638 | - 'OCP\\Mail\\Provider\\Message' => $baseDir . '/lib/public/Mail/Provider/Message.php',  | 
                                                        |
| 639 | - 'OCP\\Migration\\Attributes\\AddColumn' => $baseDir . '/lib/public/Migration/Attributes/AddColumn.php',  | 
                                                        |
| 640 | - 'OCP\\Migration\\Attributes\\AddIndex' => $baseDir . '/lib/public/Migration/Attributes/AddIndex.php',  | 
                                                        |
| 641 | - 'OCP\\Migration\\Attributes\\ColumnMigrationAttribute' => $baseDir . '/lib/public/Migration/Attributes/ColumnMigrationAttribute.php',  | 
                                                        |
| 642 | - 'OCP\\Migration\\Attributes\\ColumnType' => $baseDir . '/lib/public/Migration/Attributes/ColumnType.php',  | 
                                                        |
| 643 | - 'OCP\\Migration\\Attributes\\CreateTable' => $baseDir . '/lib/public/Migration/Attributes/CreateTable.php',  | 
                                                        |
| 644 | - 'OCP\\Migration\\Attributes\\DropColumn' => $baseDir . '/lib/public/Migration/Attributes/DropColumn.php',  | 
                                                        |
| 645 | - 'OCP\\Migration\\Attributes\\DropIndex' => $baseDir . '/lib/public/Migration/Attributes/DropIndex.php',  | 
                                                        |
| 646 | - 'OCP\\Migration\\Attributes\\DropTable' => $baseDir . '/lib/public/Migration/Attributes/DropTable.php',  | 
                                                        |
| 647 | - 'OCP\\Migration\\Attributes\\GenericMigrationAttribute' => $baseDir . '/lib/public/Migration/Attributes/GenericMigrationAttribute.php',  | 
                                                        |
| 648 | - 'OCP\\Migration\\Attributes\\IndexMigrationAttribute' => $baseDir . '/lib/public/Migration/Attributes/IndexMigrationAttribute.php',  | 
                                                        |
| 649 | - 'OCP\\Migration\\Attributes\\IndexType' => $baseDir . '/lib/public/Migration/Attributes/IndexType.php',  | 
                                                        |
| 650 | - 'OCP\\Migration\\Attributes\\MigrationAttribute' => $baseDir . '/lib/public/Migration/Attributes/MigrationAttribute.php',  | 
                                                        |
| 651 | - 'OCP\\Migration\\Attributes\\ModifyColumn' => $baseDir . '/lib/public/Migration/Attributes/ModifyColumn.php',  | 
                                                        |
| 652 | - 'OCP\\Migration\\Attributes\\TableMigrationAttribute' => $baseDir . '/lib/public/Migration/Attributes/TableMigrationAttribute.php',  | 
                                                        |
| 653 | - 'OCP\\Migration\\BigIntMigration' => $baseDir . '/lib/public/Migration/BigIntMigration.php',  | 
                                                        |
| 654 | - 'OCP\\Migration\\IMigrationStep' => $baseDir . '/lib/public/Migration/IMigrationStep.php',  | 
                                                        |
| 655 | - 'OCP\\Migration\\IOutput' => $baseDir . '/lib/public/Migration/IOutput.php',  | 
                                                        |
| 656 | - 'OCP\\Migration\\IRepairStep' => $baseDir . '/lib/public/Migration/IRepairStep.php',  | 
                                                        |
| 657 | - 'OCP\\Migration\\SimpleMigrationStep' => $baseDir . '/lib/public/Migration/SimpleMigrationStep.php',  | 
                                                        |
| 658 | - 'OCP\\Navigation\\Events\\LoadAdditionalEntriesEvent' => $baseDir . '/lib/public/Navigation/Events/LoadAdditionalEntriesEvent.php',  | 
                                                        |
| 659 | - 'OCP\\Notification\\AlreadyProcessedException' => $baseDir . '/lib/public/Notification/AlreadyProcessedException.php',  | 
                                                        |
| 660 | - 'OCP\\Notification\\IAction' => $baseDir . '/lib/public/Notification/IAction.php',  | 
                                                        |
| 661 | - 'OCP\\Notification\\IApp' => $baseDir . '/lib/public/Notification/IApp.php',  | 
                                                        |
| 662 | - 'OCP\\Notification\\IDeferrableApp' => $baseDir . '/lib/public/Notification/IDeferrableApp.php',  | 
                                                        |
| 663 | - 'OCP\\Notification\\IDismissableNotifier' => $baseDir . '/lib/public/Notification/IDismissableNotifier.php',  | 
                                                        |
| 664 | - 'OCP\\Notification\\IManager' => $baseDir . '/lib/public/Notification/IManager.php',  | 
                                                        |
| 665 | - 'OCP\\Notification\\INotification' => $baseDir . '/lib/public/Notification/INotification.php',  | 
                                                        |
| 666 | - 'OCP\\Notification\\INotifier' => $baseDir . '/lib/public/Notification/INotifier.php',  | 
                                                        |
| 667 | - 'OCP\\Notification\\IncompleteNotificationException' => $baseDir . '/lib/public/Notification/IncompleteNotificationException.php',  | 
                                                        |
| 668 | - 'OCP\\Notification\\IncompleteParsedNotificationException' => $baseDir . '/lib/public/Notification/IncompleteParsedNotificationException.php',  | 
                                                        |
| 669 | - 'OCP\\Notification\\InvalidValueException' => $baseDir . '/lib/public/Notification/InvalidValueException.php',  | 
                                                        |
| 670 | - 'OCP\\Notification\\UnknownNotificationException' => $baseDir . '/lib/public/Notification/UnknownNotificationException.php',  | 
                                                        |
| 671 | - 'OCP\\OCM\\Events\\ResourceTypeRegisterEvent' => $baseDir . '/lib/public/OCM/Events/ResourceTypeRegisterEvent.php',  | 
                                                        |
| 672 | - 'OCP\\OCM\\Exceptions\\OCMArgumentException' => $baseDir . '/lib/public/OCM/Exceptions/OCMArgumentException.php',  | 
                                                        |
| 673 | - 'OCP\\OCM\\Exceptions\\OCMProviderException' => $baseDir . '/lib/public/OCM/Exceptions/OCMProviderException.php',  | 
                                                        |
| 674 | - 'OCP\\OCM\\IOCMDiscoveryService' => $baseDir . '/lib/public/OCM/IOCMDiscoveryService.php',  | 
                                                        |
| 675 | - 'OCP\\OCM\\IOCMProvider' => $baseDir . '/lib/public/OCM/IOCMProvider.php',  | 
                                                        |
| 676 | - 'OCP\\OCM\\IOCMResource' => $baseDir . '/lib/public/OCM/IOCMResource.php',  | 
                                                        |
| 677 | - 'OCP\\OCS\\IDiscoveryService' => $baseDir . '/lib/public/OCS/IDiscoveryService.php',  | 
                                                        |
| 678 | - 'OCP\\PreConditionNotMetException' => $baseDir . '/lib/public/PreConditionNotMetException.php',  | 
                                                        |
| 679 | - 'OCP\\Preview\\BeforePreviewFetchedEvent' => $baseDir . '/lib/public/Preview/BeforePreviewFetchedEvent.php',  | 
                                                        |
| 680 | - 'OCP\\Preview\\IMimeIconProvider' => $baseDir . '/lib/public/Preview/IMimeIconProvider.php',  | 
                                                        |
| 681 | - 'OCP\\Preview\\IProvider' => $baseDir . '/lib/public/Preview/IProvider.php',  | 
                                                        |
| 682 | - 'OCP\\Preview\\IProviderV2' => $baseDir . '/lib/public/Preview/IProviderV2.php',  | 
                                                        |
| 683 | - 'OCP\\Preview\\IVersionedPreviewFile' => $baseDir . '/lib/public/Preview/IVersionedPreviewFile.php',  | 
                                                        |
| 684 | - 'OCP\\Profile\\BeforeTemplateRenderedEvent' => $baseDir . '/lib/public/Profile/BeforeTemplateRenderedEvent.php',  | 
                                                        |
| 685 | - 'OCP\\Profile\\ILinkAction' => $baseDir . '/lib/public/Profile/ILinkAction.php',  | 
                                                        |
| 686 | - 'OCP\\Profile\\IProfileManager' => $baseDir . '/lib/public/Profile/IProfileManager.php',  | 
                                                        |
| 687 | - 'OCP\\Profile\\ParameterDoesNotExistException' => $baseDir . '/lib/public/Profile/ParameterDoesNotExistException.php',  | 
                                                        |
| 688 | - 'OCP\\Profiler\\IProfile' => $baseDir . '/lib/public/Profiler/IProfile.php',  | 
                                                        |
| 689 | - 'OCP\\Profiler\\IProfiler' => $baseDir . '/lib/public/Profiler/IProfiler.php',  | 
                                                        |
| 690 | - 'OCP\\Remote\\Api\\IApiCollection' => $baseDir . '/lib/public/Remote/Api/IApiCollection.php',  | 
                                                        |
| 691 | - 'OCP\\Remote\\Api\\IApiFactory' => $baseDir . '/lib/public/Remote/Api/IApiFactory.php',  | 
                                                        |
| 692 | - 'OCP\\Remote\\Api\\ICapabilitiesApi' => $baseDir . '/lib/public/Remote/Api/ICapabilitiesApi.php',  | 
                                                        |
| 693 | - 'OCP\\Remote\\Api\\IUserApi' => $baseDir . '/lib/public/Remote/Api/IUserApi.php',  | 
                                                        |
| 694 | - 'OCP\\Remote\\ICredentials' => $baseDir . '/lib/public/Remote/ICredentials.php',  | 
                                                        |
| 695 | - 'OCP\\Remote\\IInstance' => $baseDir . '/lib/public/Remote/IInstance.php',  | 
                                                        |
| 696 | - 'OCP\\Remote\\IInstanceFactory' => $baseDir . '/lib/public/Remote/IInstanceFactory.php',  | 
                                                        |
| 697 | - 'OCP\\Remote\\IUser' => $baseDir . '/lib/public/Remote/IUser.php',  | 
                                                        |
| 698 | - 'OCP\\RichObjectStrings\\Definitions' => $baseDir . '/lib/public/RichObjectStrings/Definitions.php',  | 
                                                        |
| 699 | - 'OCP\\RichObjectStrings\\IRichTextFormatter' => $baseDir . '/lib/public/RichObjectStrings/IRichTextFormatter.php',  | 
                                                        |
| 700 | - 'OCP\\RichObjectStrings\\IValidator' => $baseDir . '/lib/public/RichObjectStrings/IValidator.php',  | 
                                                        |
| 701 | - 'OCP\\RichObjectStrings\\InvalidObjectExeption' => $baseDir . '/lib/public/RichObjectStrings/InvalidObjectExeption.php',  | 
                                                        |
| 702 | - 'OCP\\Route\\IRoute' => $baseDir . '/lib/public/Route/IRoute.php',  | 
                                                        |
| 703 | - 'OCP\\Route\\IRouter' => $baseDir . '/lib/public/Route/IRouter.php',  | 
                                                        |
| 704 | - 'OCP\\SabrePluginEvent' => $baseDir . '/lib/public/SabrePluginEvent.php',  | 
                                                        |
| 705 | - 'OCP\\SabrePluginException' => $baseDir . '/lib/public/SabrePluginException.php',  | 
                                                        |
| 706 | - 'OCP\\Search\\FilterDefinition' => $baseDir . '/lib/public/Search/FilterDefinition.php',  | 
                                                        |
| 707 | - 'OCP\\Search\\IFilter' => $baseDir . '/lib/public/Search/IFilter.php',  | 
                                                        |
| 708 | - 'OCP\\Search\\IFilterCollection' => $baseDir . '/lib/public/Search/IFilterCollection.php',  | 
                                                        |
| 709 | - 'OCP\\Search\\IFilteringProvider' => $baseDir . '/lib/public/Search/IFilteringProvider.php',  | 
                                                        |
| 710 | - 'OCP\\Search\\IInAppSearch' => $baseDir . '/lib/public/Search/IInAppSearch.php',  | 
                                                        |
| 711 | - 'OCP\\Search\\IProvider' => $baseDir . '/lib/public/Search/IProvider.php',  | 
                                                        |
| 712 | - 'OCP\\Search\\ISearchQuery' => $baseDir . '/lib/public/Search/ISearchQuery.php',  | 
                                                        |
| 713 | - 'OCP\\Search\\PagedProvider' => $baseDir . '/lib/public/Search/PagedProvider.php',  | 
                                                        |
| 714 | - 'OCP\\Search\\Provider' => $baseDir . '/lib/public/Search/Provider.php',  | 
                                                        |
| 715 | - 'OCP\\Search\\Result' => $baseDir . '/lib/public/Search/Result.php',  | 
                                                        |
| 716 | - 'OCP\\Search\\SearchResult' => $baseDir . '/lib/public/Search/SearchResult.php',  | 
                                                        |
| 717 | - 'OCP\\Search\\SearchResultEntry' => $baseDir . '/lib/public/Search/SearchResultEntry.php',  | 
                                                        |
| 718 | - 'OCP\\Security\\Bruteforce\\IThrottler' => $baseDir . '/lib/public/Security/Bruteforce/IThrottler.php',  | 
                                                        |
| 719 | - 'OCP\\Security\\Bruteforce\\MaxDelayReached' => $baseDir . '/lib/public/Security/Bruteforce/MaxDelayReached.php',  | 
                                                        |
| 720 | - 'OCP\\Security\\CSP\\AddContentSecurityPolicyEvent' => $baseDir . '/lib/public/Security/CSP/AddContentSecurityPolicyEvent.php',  | 
                                                        |
| 721 | - 'OCP\\Security\\Events\\GenerateSecurePasswordEvent' => $baseDir . '/lib/public/Security/Events/GenerateSecurePasswordEvent.php',  | 
                                                        |
| 722 | - 'OCP\\Security\\Events\\ValidatePasswordPolicyEvent' => $baseDir . '/lib/public/Security/Events/ValidatePasswordPolicyEvent.php',  | 
                                                        |
| 723 | - 'OCP\\Security\\FeaturePolicy\\AddFeaturePolicyEvent' => $baseDir . '/lib/public/Security/FeaturePolicy/AddFeaturePolicyEvent.php',  | 
                                                        |
| 724 | - 'OCP\\Security\\IContentSecurityPolicyManager' => $baseDir . '/lib/public/Security/IContentSecurityPolicyManager.php',  | 
                                                        |
| 725 | - 'OCP\\Security\\ICredentialsManager' => $baseDir . '/lib/public/Security/ICredentialsManager.php',  | 
                                                        |
| 726 | - 'OCP\\Security\\ICrypto' => $baseDir . '/lib/public/Security/ICrypto.php',  | 
                                                        |
| 727 | - 'OCP\\Security\\IHasher' => $baseDir . '/lib/public/Security/IHasher.php',  | 
                                                        |
| 728 | - 'OCP\\Security\\IRemoteHostValidator' => $baseDir . '/lib/public/Security/IRemoteHostValidator.php',  | 
                                                        |
| 729 | - 'OCP\\Security\\ISecureRandom' => $baseDir . '/lib/public/Security/ISecureRandom.php',  | 
                                                        |
| 730 | - 'OCP\\Security\\ITrustedDomainHelper' => $baseDir . '/lib/public/Security/ITrustedDomainHelper.php',  | 
                                                        |
| 731 | - 'OCP\\Security\\Ip\\IAddress' => $baseDir . '/lib/public/Security/Ip/IAddress.php',  | 
                                                        |
| 732 | - 'OCP\\Security\\Ip\\IFactory' => $baseDir . '/lib/public/Security/Ip/IFactory.php',  | 
                                                        |
| 733 | - 'OCP\\Security\\Ip\\IRange' => $baseDir . '/lib/public/Security/Ip/IRange.php',  | 
                                                        |
| 734 | - 'OCP\\Security\\Ip\\IRemoteAddress' => $baseDir . '/lib/public/Security/Ip/IRemoteAddress.php',  | 
                                                        |
| 735 | - 'OCP\\Security\\PasswordContext' => $baseDir . '/lib/public/Security/PasswordContext.php',  | 
                                                        |
| 736 | - 'OCP\\Security\\RateLimiting\\ILimiter' => $baseDir . '/lib/public/Security/RateLimiting/ILimiter.php',  | 
                                                        |
| 737 | - 'OCP\\Security\\RateLimiting\\IRateLimitExceededException' => $baseDir . '/lib/public/Security/RateLimiting/IRateLimitExceededException.php',  | 
                                                        |
| 738 | - 'OCP\\Security\\VerificationToken\\IVerificationToken' => $baseDir . '/lib/public/Security/VerificationToken/IVerificationToken.php',  | 
                                                        |
| 739 | - 'OCP\\Security\\VerificationToken\\InvalidTokenException' => $baseDir . '/lib/public/Security/VerificationToken/InvalidTokenException.php',  | 
                                                        |
| 740 | - 'OCP\\Server' => $baseDir . '/lib/public/Server.php',  | 
                                                        |
| 741 | - 'OCP\\ServerVersion' => $baseDir . '/lib/public/ServerVersion.php',  | 
                                                        |
| 742 | - 'OCP\\Session\\Exceptions\\SessionNotAvailableException' => $baseDir . '/lib/public/Session/Exceptions/SessionNotAvailableException.php',  | 
                                                        |
| 743 | - 'OCP\\Settings\\DeclarativeSettingsTypes' => $baseDir . '/lib/public/Settings/DeclarativeSettingsTypes.php',  | 
                                                        |
| 744 | - 'OCP\\Settings\\Events\\DeclarativeSettingsGetValueEvent' => $baseDir . '/lib/public/Settings/Events/DeclarativeSettingsGetValueEvent.php',  | 
                                                        |
| 745 | - 'OCP\\Settings\\Events\\DeclarativeSettingsRegisterFormEvent' => $baseDir . '/lib/public/Settings/Events/DeclarativeSettingsRegisterFormEvent.php',  | 
                                                        |
| 746 | - 'OCP\\Settings\\Events\\DeclarativeSettingsSetValueEvent' => $baseDir . '/lib/public/Settings/Events/DeclarativeSettingsSetValueEvent.php',  | 
                                                        |
| 747 | - 'OCP\\Settings\\IDeclarativeManager' => $baseDir . '/lib/public/Settings/IDeclarativeManager.php',  | 
                                                        |
| 748 | - 'OCP\\Settings\\IDeclarativeSettingsForm' => $baseDir . '/lib/public/Settings/IDeclarativeSettingsForm.php',  | 
                                                        |
| 749 | - 'OCP\\Settings\\IDeclarativeSettingsFormWithHandlers' => $baseDir . '/lib/public/Settings/IDeclarativeSettingsFormWithHandlers.php',  | 
                                                        |
| 750 | - 'OCP\\Settings\\IDelegatedSettings' => $baseDir . '/lib/public/Settings/IDelegatedSettings.php',  | 
                                                        |
| 751 | - 'OCP\\Settings\\IIconSection' => $baseDir . '/lib/public/Settings/IIconSection.php',  | 
                                                        |
| 752 | - 'OCP\\Settings\\IManager' => $baseDir . '/lib/public/Settings/IManager.php',  | 
                                                        |
| 753 | - 'OCP\\Settings\\ISettings' => $baseDir . '/lib/public/Settings/ISettings.php',  | 
                                                        |
| 754 | - 'OCP\\Settings\\ISubAdminSettings' => $baseDir . '/lib/public/Settings/ISubAdminSettings.php',  | 
                                                        |
| 755 | - 'OCP\\SetupCheck\\CheckServerResponseTrait' => $baseDir . '/lib/public/SetupCheck/CheckServerResponseTrait.php',  | 
                                                        |
| 756 | - 'OCP\\SetupCheck\\ISetupCheck' => $baseDir . '/lib/public/SetupCheck/ISetupCheck.php',  | 
                                                        |
| 757 | - 'OCP\\SetupCheck\\ISetupCheckManager' => $baseDir . '/lib/public/SetupCheck/ISetupCheckManager.php',  | 
                                                        |
| 758 | - 'OCP\\SetupCheck\\SetupResult' => $baseDir . '/lib/public/SetupCheck/SetupResult.php',  | 
                                                        |
| 759 | - 'OCP\\Share' => $baseDir . '/lib/public/Share.php',  | 
                                                        |
| 760 | - 'OCP\\Share\\Events\\BeforeShareCreatedEvent' => $baseDir . '/lib/public/Share/Events/BeforeShareCreatedEvent.php',  | 
                                                        |
| 761 | - 'OCP\\Share\\Events\\BeforeShareDeletedEvent' => $baseDir . '/lib/public/Share/Events/BeforeShareDeletedEvent.php',  | 
                                                        |
| 762 | - 'OCP\\Share\\Events\\ShareAcceptedEvent' => $baseDir . '/lib/public/Share/Events/ShareAcceptedEvent.php',  | 
                                                        |
| 763 | - 'OCP\\Share\\Events\\ShareCreatedEvent' => $baseDir . '/lib/public/Share/Events/ShareCreatedEvent.php',  | 
                                                        |
| 764 | - 'OCP\\Share\\Events\\ShareDeletedEvent' => $baseDir . '/lib/public/Share/Events/ShareDeletedEvent.php',  | 
                                                        |
| 765 | - 'OCP\\Share\\Events\\ShareDeletedFromSelfEvent' => $baseDir . '/lib/public/Share/Events/ShareDeletedFromSelfEvent.php',  | 
                                                        |
| 766 | - 'OCP\\Share\\Events\\VerifyMountPointEvent' => $baseDir . '/lib/public/Share/Events/VerifyMountPointEvent.php',  | 
                                                        |
| 767 | - 'OCP\\Share\\Exceptions\\AlreadySharedException' => $baseDir . '/lib/public/Share/Exceptions/AlreadySharedException.php',  | 
                                                        |
| 768 | - 'OCP\\Share\\Exceptions\\GenericShareException' => $baseDir . '/lib/public/Share/Exceptions/GenericShareException.php',  | 
                                                        |
| 769 | - 'OCP\\Share\\Exceptions\\IllegalIDChangeException' => $baseDir . '/lib/public/Share/Exceptions/IllegalIDChangeException.php',  | 
                                                        |
| 770 | - 'OCP\\Share\\Exceptions\\ShareNotFound' => $baseDir . '/lib/public/Share/Exceptions/ShareNotFound.php',  | 
                                                        |
| 771 | - 'OCP\\Share\\Exceptions\\ShareTokenException' => $baseDir . '/lib/public/Share/Exceptions/ShareTokenException.php',  | 
                                                        |
| 772 | - 'OCP\\Share\\IAttributes' => $baseDir . '/lib/public/Share/IAttributes.php',  | 
                                                        |
| 773 | - 'OCP\\Share\\IManager' => $baseDir . '/lib/public/Share/IManager.php',  | 
                                                        |
| 774 | - 'OCP\\Share\\IProviderFactory' => $baseDir . '/lib/public/Share/IProviderFactory.php',  | 
                                                        |
| 775 | - 'OCP\\Share\\IPublicShareTemplateFactory' => $baseDir . '/lib/public/Share/IPublicShareTemplateFactory.php',  | 
                                                        |
| 776 | - 'OCP\\Share\\IPublicShareTemplateProvider' => $baseDir . '/lib/public/Share/IPublicShareTemplateProvider.php',  | 
                                                        |
| 777 | - 'OCP\\Share\\IShare' => $baseDir . '/lib/public/Share/IShare.php',  | 
                                                        |
| 778 | - 'OCP\\Share\\IShareHelper' => $baseDir . '/lib/public/Share/IShareHelper.php',  | 
                                                        |
| 779 | - 'OCP\\Share\\IShareProvider' => $baseDir . '/lib/public/Share/IShareProvider.php',  | 
                                                        |
| 780 | - 'OCP\\Share\\IShareProviderSupportsAccept' => $baseDir . '/lib/public/Share/IShareProviderSupportsAccept.php',  | 
                                                        |
| 781 | - 'OCP\\Share\\IShareProviderWithNotification' => $baseDir . '/lib/public/Share/IShareProviderWithNotification.php',  | 
                                                        |
| 782 | - 'OCP\\Share_Backend' => $baseDir . '/lib/public/Share_Backend.php',  | 
                                                        |
| 783 | - 'OCP\\Share_Backend_Collection' => $baseDir . '/lib/public/Share_Backend_Collection.php',  | 
                                                        |
| 784 | - 'OCP\\Share_Backend_File_Dependent' => $baseDir . '/lib/public/Share_Backend_File_Dependent.php',  | 
                                                        |
| 785 | - 'OCP\\SpeechToText\\Events\\AbstractTranscriptionEvent' => $baseDir . '/lib/public/SpeechToText/Events/AbstractTranscriptionEvent.php',  | 
                                                        |
| 786 | - 'OCP\\SpeechToText\\Events\\TranscriptionFailedEvent' => $baseDir . '/lib/public/SpeechToText/Events/TranscriptionFailedEvent.php',  | 
                                                        |
| 787 | - 'OCP\\SpeechToText\\Events\\TranscriptionSuccessfulEvent' => $baseDir . '/lib/public/SpeechToText/Events/TranscriptionSuccessfulEvent.php',  | 
                                                        |
| 788 | - 'OCP\\SpeechToText\\ISpeechToTextManager' => $baseDir . '/lib/public/SpeechToText/ISpeechToTextManager.php',  | 
                                                        |
| 789 | - 'OCP\\SpeechToText\\ISpeechToTextProvider' => $baseDir . '/lib/public/SpeechToText/ISpeechToTextProvider.php',  | 
                                                        |
| 790 | - 'OCP\\SpeechToText\\ISpeechToTextProviderWithId' => $baseDir . '/lib/public/SpeechToText/ISpeechToTextProviderWithId.php',  | 
                                                        |
| 791 | - 'OCP\\SpeechToText\\ISpeechToTextProviderWithUserId' => $baseDir . '/lib/public/SpeechToText/ISpeechToTextProviderWithUserId.php',  | 
                                                        |
| 792 | - 'OCP\\Support\\CrashReport\\ICollectBreadcrumbs' => $baseDir . '/lib/public/Support/CrashReport/ICollectBreadcrumbs.php',  | 
                                                        |
| 793 | - 'OCP\\Support\\CrashReport\\IMessageReporter' => $baseDir . '/lib/public/Support/CrashReport/IMessageReporter.php',  | 
                                                        |
| 794 | - 'OCP\\Support\\CrashReport\\IRegistry' => $baseDir . '/lib/public/Support/CrashReport/IRegistry.php',  | 
                                                        |
| 795 | - 'OCP\\Support\\CrashReport\\IReporter' => $baseDir . '/lib/public/Support/CrashReport/IReporter.php',  | 
                                                        |
| 796 | - 'OCP\\Support\\Subscription\\Exception\\AlreadyRegisteredException' => $baseDir . '/lib/public/Support/Subscription/Exception/AlreadyRegisteredException.php',  | 
                                                        |
| 797 | - 'OCP\\Support\\Subscription\\IAssertion' => $baseDir . '/lib/public/Support/Subscription/IAssertion.php',  | 
                                                        |
| 798 | - 'OCP\\Support\\Subscription\\IRegistry' => $baseDir . '/lib/public/Support/Subscription/IRegistry.php',  | 
                                                        |
| 799 | - 'OCP\\Support\\Subscription\\ISubscription' => $baseDir . '/lib/public/Support/Subscription/ISubscription.php',  | 
                                                        |
| 800 | - 'OCP\\Support\\Subscription\\ISupportedApps' => $baseDir . '/lib/public/Support/Subscription/ISupportedApps.php',  | 
                                                        |
| 801 | - 'OCP\\SystemTag\\ISystemTag' => $baseDir . '/lib/public/SystemTag/ISystemTag.php',  | 
                                                        |
| 802 | - 'OCP\\SystemTag\\ISystemTagManager' => $baseDir . '/lib/public/SystemTag/ISystemTagManager.php',  | 
                                                        |
| 803 | - 'OCP\\SystemTag\\ISystemTagManagerFactory' => $baseDir . '/lib/public/SystemTag/ISystemTagManagerFactory.php',  | 
                                                        |
| 804 | - 'OCP\\SystemTag\\ISystemTagObjectMapper' => $baseDir . '/lib/public/SystemTag/ISystemTagObjectMapper.php',  | 
                                                        |
| 805 | - 'OCP\\SystemTag\\ManagerEvent' => $baseDir . '/lib/public/SystemTag/ManagerEvent.php',  | 
                                                        |
| 806 | - 'OCP\\SystemTag\\MapperEvent' => $baseDir . '/lib/public/SystemTag/MapperEvent.php',  | 
                                                        |
| 807 | - 'OCP\\SystemTag\\SystemTagsEntityEvent' => $baseDir . '/lib/public/SystemTag/SystemTagsEntityEvent.php',  | 
                                                        |
| 808 | - 'OCP\\SystemTag\\TagAlreadyExistsException' => $baseDir . '/lib/public/SystemTag/TagAlreadyExistsException.php',  | 
                                                        |
| 809 | - 'OCP\\SystemTag\\TagCreationForbiddenException' => $baseDir . '/lib/public/SystemTag/TagCreationForbiddenException.php',  | 
                                                        |
| 810 | - 'OCP\\SystemTag\\TagNotFoundException' => $baseDir . '/lib/public/SystemTag/TagNotFoundException.php',  | 
                                                        |
| 811 | - 'OCP\\SystemTag\\TagUpdateForbiddenException' => $baseDir . '/lib/public/SystemTag/TagUpdateForbiddenException.php',  | 
                                                        |
| 812 | - 'OCP\\Talk\\Exceptions\\NoBackendException' => $baseDir . '/lib/public/Talk/Exceptions/NoBackendException.php',  | 
                                                        |
| 813 | - 'OCP\\Talk\\IBroker' => $baseDir . '/lib/public/Talk/IBroker.php',  | 
                                                        |
| 814 | - 'OCP\\Talk\\IConversation' => $baseDir . '/lib/public/Talk/IConversation.php',  | 
                                                        |
| 815 | - 'OCP\\Talk\\IConversationOptions' => $baseDir . '/lib/public/Talk/IConversationOptions.php',  | 
                                                        |
| 816 | - 'OCP\\Talk\\ITalkBackend' => $baseDir . '/lib/public/Talk/ITalkBackend.php',  | 
                                                        |
| 817 | - 'OCP\\TaskProcessing\\EShapeType' => $baseDir . '/lib/public/TaskProcessing/EShapeType.php',  | 
                                                        |
| 818 | - 'OCP\\TaskProcessing\\Events\\AbstractTaskProcessingEvent' => $baseDir . '/lib/public/TaskProcessing/Events/AbstractTaskProcessingEvent.php',  | 
                                                        |
| 819 | - 'OCP\\TaskProcessing\\Events\\TaskFailedEvent' => $baseDir . '/lib/public/TaskProcessing/Events/TaskFailedEvent.php',  | 
                                                        |
| 820 | - 'OCP\\TaskProcessing\\Events\\TaskSuccessfulEvent' => $baseDir . '/lib/public/TaskProcessing/Events/TaskSuccessfulEvent.php',  | 
                                                        |
| 821 | - 'OCP\\TaskProcessing\\Exception\\Exception' => $baseDir . '/lib/public/TaskProcessing/Exception/Exception.php',  | 
                                                        |
| 822 | - 'OCP\\TaskProcessing\\Exception\\NotFoundException' => $baseDir . '/lib/public/TaskProcessing/Exception/NotFoundException.php',  | 
                                                        |
| 823 | - 'OCP\\TaskProcessing\\Exception\\PreConditionNotMetException' => $baseDir . '/lib/public/TaskProcessing/Exception/PreConditionNotMetException.php',  | 
                                                        |
| 824 | - 'OCP\\TaskProcessing\\Exception\\ProcessingException' => $baseDir . '/lib/public/TaskProcessing/Exception/ProcessingException.php',  | 
                                                        |
| 825 | - 'OCP\\TaskProcessing\\Exception\\UnauthorizedException' => $baseDir . '/lib/public/TaskProcessing/Exception/UnauthorizedException.php',  | 
                                                        |
| 826 | - 'OCP\\TaskProcessing\\Exception\\ValidationException' => $baseDir . '/lib/public/TaskProcessing/Exception/ValidationException.php',  | 
                                                        |
| 827 | - 'OCP\\TaskProcessing\\IManager' => $baseDir . '/lib/public/TaskProcessing/IManager.php',  | 
                                                        |
| 828 | - 'OCP\\TaskProcessing\\IProvider' => $baseDir . '/lib/public/TaskProcessing/IProvider.php',  | 
                                                        |
| 829 | - 'OCP\\TaskProcessing\\ISynchronousProvider' => $baseDir . '/lib/public/TaskProcessing/ISynchronousProvider.php',  | 
                                                        |
| 830 | - 'OCP\\TaskProcessing\\ITaskType' => $baseDir . '/lib/public/TaskProcessing/ITaskType.php',  | 
                                                        |
| 831 | - 'OCP\\TaskProcessing\\ShapeDescriptor' => $baseDir . '/lib/public/TaskProcessing/ShapeDescriptor.php',  | 
                                                        |
| 832 | - 'OCP\\TaskProcessing\\ShapeEnumValue' => $baseDir . '/lib/public/TaskProcessing/ShapeEnumValue.php',  | 
                                                        |
| 833 | - 'OCP\\TaskProcessing\\Task' => $baseDir . '/lib/public/TaskProcessing/Task.php',  | 
                                                        |
| 834 | - 'OCP\\TaskProcessing\\TaskTypes\\AudioToText' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/AudioToText.php',  | 
                                                        |
| 835 | - 'OCP\\TaskProcessing\\TaskTypes\\ContextAgentInteraction' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/ContextAgentInteraction.php',  | 
                                                        |
| 836 | - 'OCP\\TaskProcessing\\TaskTypes\\ContextWrite' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/ContextWrite.php',  | 
                                                        |
| 837 | - 'OCP\\TaskProcessing\\TaskTypes\\GenerateEmoji' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/GenerateEmoji.php',  | 
                                                        |
| 838 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToImage' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToImage.php',  | 
                                                        |
| 839 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToText' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToText.php',  | 
                                                        |
| 840 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextChangeTone' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToTextChangeTone.php',  | 
                                                        |
| 841 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextChat' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToTextChat.php',  | 
                                                        |
| 842 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextChatWithTools' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToTextChatWithTools.php',  | 
                                                        |
| 843 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextFormalization' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToTextFormalization.php',  | 
                                                        |
| 844 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextHeadline' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToTextHeadline.php',  | 
                                                        |
| 845 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextProofread' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToTextProofread.php',  | 
                                                        |
| 846 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextReformulation' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToTextReformulation.php',  | 
                                                        |
| 847 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextSimplification' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToTextSimplification.php',  | 
                                                        |
| 848 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextSummary' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToTextSummary.php',  | 
                                                        |
| 849 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextTopics' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToTextTopics.php',  | 
                                                        |
| 850 | - 'OCP\\TaskProcessing\\TaskTypes\\TextToTextTranslate' => $baseDir . '/lib/public/TaskProcessing/TaskTypes/TextToTextTranslate.php',  | 
                                                        |
| 851 | - 'OCP\\Teams\\ITeamManager' => $baseDir . '/lib/public/Teams/ITeamManager.php',  | 
                                                        |
| 852 | - 'OCP\\Teams\\ITeamResourceProvider' => $baseDir . '/lib/public/Teams/ITeamResourceProvider.php',  | 
                                                        |
| 853 | - 'OCP\\Teams\\Team' => $baseDir . '/lib/public/Teams/Team.php',  | 
                                                        |
| 854 | - 'OCP\\Teams\\TeamResource' => $baseDir . '/lib/public/Teams/TeamResource.php',  | 
                                                        |
| 855 | - 'OCP\\Template' => $baseDir . '/lib/public/Template.php',  | 
                                                        |
| 856 | - 'OCP\\Template\\ITemplate' => $baseDir . '/lib/public/Template/ITemplate.php',  | 
                                                        |
| 857 | - 'OCP\\Template\\ITemplateManager' => $baseDir . '/lib/public/Template/ITemplateManager.php',  | 
                                                        |
| 858 | - 'OCP\\Template\\TemplateNotFoundException' => $baseDir . '/lib/public/Template/TemplateNotFoundException.php',  | 
                                                        |
| 859 | - 'OCP\\TextProcessing\\Events\\AbstractTextProcessingEvent' => $baseDir . '/lib/public/TextProcessing/Events/AbstractTextProcessingEvent.php',  | 
                                                        |
| 860 | - 'OCP\\TextProcessing\\Events\\TaskFailedEvent' => $baseDir . '/lib/public/TextProcessing/Events/TaskFailedEvent.php',  | 
                                                        |
| 861 | - 'OCP\\TextProcessing\\Events\\TaskSuccessfulEvent' => $baseDir . '/lib/public/TextProcessing/Events/TaskSuccessfulEvent.php',  | 
                                                        |
| 862 | - 'OCP\\TextProcessing\\Exception\\TaskFailureException' => $baseDir . '/lib/public/TextProcessing/Exception/TaskFailureException.php',  | 
                                                        |
| 863 | - 'OCP\\TextProcessing\\FreePromptTaskType' => $baseDir . '/lib/public/TextProcessing/FreePromptTaskType.php',  | 
                                                        |
| 864 | - 'OCP\\TextProcessing\\HeadlineTaskType' => $baseDir . '/lib/public/TextProcessing/HeadlineTaskType.php',  | 
                                                        |
| 865 | - 'OCP\\TextProcessing\\IManager' => $baseDir . '/lib/public/TextProcessing/IManager.php',  | 
                                                        |
| 866 | - 'OCP\\TextProcessing\\IProvider' => $baseDir . '/lib/public/TextProcessing/IProvider.php',  | 
                                                        |
| 867 | - 'OCP\\TextProcessing\\IProviderWithExpectedRuntime' => $baseDir . '/lib/public/TextProcessing/IProviderWithExpectedRuntime.php',  | 
                                                        |
| 868 | - 'OCP\\TextProcessing\\IProviderWithId' => $baseDir . '/lib/public/TextProcessing/IProviderWithId.php',  | 
                                                        |
| 869 | - 'OCP\\TextProcessing\\IProviderWithUserId' => $baseDir . '/lib/public/TextProcessing/IProviderWithUserId.php',  | 
                                                        |
| 870 | - 'OCP\\TextProcessing\\ITaskType' => $baseDir . '/lib/public/TextProcessing/ITaskType.php',  | 
                                                        |
| 871 | - 'OCP\\TextProcessing\\SummaryTaskType' => $baseDir . '/lib/public/TextProcessing/SummaryTaskType.php',  | 
                                                        |
| 872 | - 'OCP\\TextProcessing\\Task' => $baseDir . '/lib/public/TextProcessing/Task.php',  | 
                                                        |
| 873 | - 'OCP\\TextProcessing\\TopicsTaskType' => $baseDir . '/lib/public/TextProcessing/TopicsTaskType.php',  | 
                                                        |
| 874 | - 'OCP\\TextToImage\\Events\\AbstractTextToImageEvent' => $baseDir . '/lib/public/TextToImage/Events/AbstractTextToImageEvent.php',  | 
                                                        |
| 875 | - 'OCP\\TextToImage\\Events\\TaskFailedEvent' => $baseDir . '/lib/public/TextToImage/Events/TaskFailedEvent.php',  | 
                                                        |
| 876 | - 'OCP\\TextToImage\\Events\\TaskSuccessfulEvent' => $baseDir . '/lib/public/TextToImage/Events/TaskSuccessfulEvent.php',  | 
                                                        |
| 877 | - 'OCP\\TextToImage\\Exception\\TaskFailureException' => $baseDir . '/lib/public/TextToImage/Exception/TaskFailureException.php',  | 
                                                        |
| 878 | - 'OCP\\TextToImage\\Exception\\TaskNotFoundException' => $baseDir . '/lib/public/TextToImage/Exception/TaskNotFoundException.php',  | 
                                                        |
| 879 | - 'OCP\\TextToImage\\Exception\\TextToImageException' => $baseDir . '/lib/public/TextToImage/Exception/TextToImageException.php',  | 
                                                        |
| 880 | - 'OCP\\TextToImage\\IManager' => $baseDir . '/lib/public/TextToImage/IManager.php',  | 
                                                        |
| 881 | - 'OCP\\TextToImage\\IProvider' => $baseDir . '/lib/public/TextToImage/IProvider.php',  | 
                                                        |
| 882 | - 'OCP\\TextToImage\\IProviderWithUserId' => $baseDir . '/lib/public/TextToImage/IProviderWithUserId.php',  | 
                                                        |
| 883 | - 'OCP\\TextToImage\\Task' => $baseDir . '/lib/public/TextToImage/Task.php',  | 
                                                        |
| 884 | - 'OCP\\Translation\\CouldNotTranslateException' => $baseDir . '/lib/public/Translation/CouldNotTranslateException.php',  | 
                                                        |
| 885 | - 'OCP\\Translation\\IDetectLanguageProvider' => $baseDir . '/lib/public/Translation/IDetectLanguageProvider.php',  | 
                                                        |
| 886 | - 'OCP\\Translation\\ITranslationManager' => $baseDir . '/lib/public/Translation/ITranslationManager.php',  | 
                                                        |
| 887 | - 'OCP\\Translation\\ITranslationProvider' => $baseDir . '/lib/public/Translation/ITranslationProvider.php',  | 
                                                        |
| 888 | - 'OCP\\Translation\\ITranslationProviderWithId' => $baseDir . '/lib/public/Translation/ITranslationProviderWithId.php',  | 
                                                        |
| 889 | - 'OCP\\Translation\\ITranslationProviderWithUserId' => $baseDir . '/lib/public/Translation/ITranslationProviderWithUserId.php',  | 
                                                        |
| 890 | - 'OCP\\Translation\\LanguageTuple' => $baseDir . '/lib/public/Translation/LanguageTuple.php',  | 
                                                        |
| 891 | - 'OCP\\UserInterface' => $baseDir . '/lib/public/UserInterface.php',  | 
                                                        |
| 892 | - 'OCP\\UserMigration\\IExportDestination' => $baseDir . '/lib/public/UserMigration/IExportDestination.php',  | 
                                                        |
| 893 | - 'OCP\\UserMigration\\IImportSource' => $baseDir . '/lib/public/UserMigration/IImportSource.php',  | 
                                                        |
| 894 | - 'OCP\\UserMigration\\IMigrator' => $baseDir . '/lib/public/UserMigration/IMigrator.php',  | 
                                                        |
| 895 | - 'OCP\\UserMigration\\ISizeEstimationMigrator' => $baseDir . '/lib/public/UserMigration/ISizeEstimationMigrator.php',  | 
                                                        |
| 896 | - 'OCP\\UserMigration\\TMigratorBasicVersionHandling' => $baseDir . '/lib/public/UserMigration/TMigratorBasicVersionHandling.php',  | 
                                                        |
| 897 | - 'OCP\\UserMigration\\UserMigrationException' => $baseDir . '/lib/public/UserMigration/UserMigrationException.php',  | 
                                                        |
| 898 | - 'OCP\\UserStatus\\IManager' => $baseDir . '/lib/public/UserStatus/IManager.php',  | 
                                                        |
| 899 | - 'OCP\\UserStatus\\IProvider' => $baseDir . '/lib/public/UserStatus/IProvider.php',  | 
                                                        |
| 900 | - 'OCP\\UserStatus\\IUserStatus' => $baseDir . '/lib/public/UserStatus/IUserStatus.php',  | 
                                                        |
| 901 | - 'OCP\\User\\Backend\\ABackend' => $baseDir . '/lib/public/User/Backend/ABackend.php',  | 
                                                        |
| 902 | - 'OCP\\User\\Backend\\ICheckPasswordBackend' => $baseDir . '/lib/public/User/Backend/ICheckPasswordBackend.php',  | 
                                                        |
| 903 | - 'OCP\\User\\Backend\\ICountMappedUsersBackend' => $baseDir . '/lib/public/User/Backend/ICountMappedUsersBackend.php',  | 
                                                        |
| 904 | - 'OCP\\User\\Backend\\ICountUsersBackend' => $baseDir . '/lib/public/User/Backend/ICountUsersBackend.php',  | 
                                                        |
| 905 | - 'OCP\\User\\Backend\\ICreateUserBackend' => $baseDir . '/lib/public/User/Backend/ICreateUserBackend.php',  | 
                                                        |
| 906 | - 'OCP\\User\\Backend\\ICustomLogout' => $baseDir . '/lib/public/User/Backend/ICustomLogout.php',  | 
                                                        |
| 907 | - 'OCP\\User\\Backend\\IGetDisplayNameBackend' => $baseDir . '/lib/public/User/Backend/IGetDisplayNameBackend.php',  | 
                                                        |
| 908 | - 'OCP\\User\\Backend\\IGetHomeBackend' => $baseDir . '/lib/public/User/Backend/IGetHomeBackend.php',  | 
                                                        |
| 909 | - 'OCP\\User\\Backend\\IGetRealUIDBackend' => $baseDir . '/lib/public/User/Backend/IGetRealUIDBackend.php',  | 
                                                        |
| 910 | - 'OCP\\User\\Backend\\ILimitAwareCountUsersBackend' => $baseDir . '/lib/public/User/Backend/ILimitAwareCountUsersBackend.php',  | 
                                                        |
| 911 | - 'OCP\\User\\Backend\\IPasswordConfirmationBackend' => $baseDir . '/lib/public/User/Backend/IPasswordConfirmationBackend.php',  | 
                                                        |
| 912 | - 'OCP\\User\\Backend\\IPasswordHashBackend' => $baseDir . '/lib/public/User/Backend/IPasswordHashBackend.php',  | 
                                                        |
| 913 | - 'OCP\\User\\Backend\\IProvideAvatarBackend' => $baseDir . '/lib/public/User/Backend/IProvideAvatarBackend.php',  | 
                                                        |
| 914 | - 'OCP\\User\\Backend\\IProvideEnabledStateBackend' => $baseDir . '/lib/public/User/Backend/IProvideEnabledStateBackend.php',  | 
                                                        |
| 915 | - 'OCP\\User\\Backend\\ISearchKnownUsersBackend' => $baseDir . '/lib/public/User/Backend/ISearchKnownUsersBackend.php',  | 
                                                        |
| 916 | - 'OCP\\User\\Backend\\ISetDisplayNameBackend' => $baseDir . '/lib/public/User/Backend/ISetDisplayNameBackend.php',  | 
                                                        |
| 917 | - 'OCP\\User\\Backend\\ISetPasswordBackend' => $baseDir . '/lib/public/User/Backend/ISetPasswordBackend.php',  | 
                                                        |
| 918 | - 'OCP\\User\\Events\\BeforePasswordUpdatedEvent' => $baseDir . '/lib/public/User/Events/BeforePasswordUpdatedEvent.php',  | 
                                                        |
| 919 | - 'OCP\\User\\Events\\BeforeUserCreatedEvent' => $baseDir . '/lib/public/User/Events/BeforeUserCreatedEvent.php',  | 
                                                        |
| 920 | - 'OCP\\User\\Events\\BeforeUserDeletedEvent' => $baseDir . '/lib/public/User/Events/BeforeUserDeletedEvent.php',  | 
                                                        |
| 921 | - 'OCP\\User\\Events\\BeforeUserIdUnassignedEvent' => $baseDir . '/lib/public/User/Events/BeforeUserIdUnassignedEvent.php',  | 
                                                        |
| 922 | - 'OCP\\User\\Events\\BeforeUserLoggedInEvent' => $baseDir . '/lib/public/User/Events/BeforeUserLoggedInEvent.php',  | 
                                                        |
| 923 | - 'OCP\\User\\Events\\BeforeUserLoggedInWithCookieEvent' => $baseDir . '/lib/public/User/Events/BeforeUserLoggedInWithCookieEvent.php',  | 
                                                        |
| 924 | - 'OCP\\User\\Events\\BeforeUserLoggedOutEvent' => $baseDir . '/lib/public/User/Events/BeforeUserLoggedOutEvent.php',  | 
                                                        |
| 925 | - 'OCP\\User\\Events\\OutOfOfficeChangedEvent' => $baseDir . '/lib/public/User/Events/OutOfOfficeChangedEvent.php',  | 
                                                        |
| 926 | - 'OCP\\User\\Events\\OutOfOfficeClearedEvent' => $baseDir . '/lib/public/User/Events/OutOfOfficeClearedEvent.php',  | 
                                                        |
| 927 | - 'OCP\\User\\Events\\OutOfOfficeEndedEvent' => $baseDir . '/lib/public/User/Events/OutOfOfficeEndedEvent.php',  | 
                                                        |
| 928 | - 'OCP\\User\\Events\\OutOfOfficeScheduledEvent' => $baseDir . '/lib/public/User/Events/OutOfOfficeScheduledEvent.php',  | 
                                                        |
| 929 | - 'OCP\\User\\Events\\OutOfOfficeStartedEvent' => $baseDir . '/lib/public/User/Events/OutOfOfficeStartedEvent.php',  | 
                                                        |
| 930 | - 'OCP\\User\\Events\\PasswordUpdatedEvent' => $baseDir . '/lib/public/User/Events/PasswordUpdatedEvent.php',  | 
                                                        |
| 931 | - 'OCP\\User\\Events\\PostLoginEvent' => $baseDir . '/lib/public/User/Events/PostLoginEvent.php',  | 
                                                        |
| 932 | - 'OCP\\User\\Events\\UserChangedEvent' => $baseDir . '/lib/public/User/Events/UserChangedEvent.php',  | 
                                                        |
| 933 | - 'OCP\\User\\Events\\UserCreatedEvent' => $baseDir . '/lib/public/User/Events/UserCreatedEvent.php',  | 
                                                        |
| 934 | - 'OCP\\User\\Events\\UserDeletedEvent' => $baseDir . '/lib/public/User/Events/UserDeletedEvent.php',  | 
                                                        |
| 935 | - 'OCP\\User\\Events\\UserFirstTimeLoggedInEvent' => $baseDir . '/lib/public/User/Events/UserFirstTimeLoggedInEvent.php',  | 
                                                        |
| 936 | - 'OCP\\User\\Events\\UserIdAssignedEvent' => $baseDir . '/lib/public/User/Events/UserIdAssignedEvent.php',  | 
                                                        |
| 937 | - 'OCP\\User\\Events\\UserIdUnassignedEvent' => $baseDir . '/lib/public/User/Events/UserIdUnassignedEvent.php',  | 
                                                        |
| 938 | - 'OCP\\User\\Events\\UserLiveStatusEvent' => $baseDir . '/lib/public/User/Events/UserLiveStatusEvent.php',  | 
                                                        |
| 939 | - 'OCP\\User\\Events\\UserLoggedInEvent' => $baseDir . '/lib/public/User/Events/UserLoggedInEvent.php',  | 
                                                        |
| 940 | - 'OCP\\User\\Events\\UserLoggedInWithCookieEvent' => $baseDir . '/lib/public/User/Events/UserLoggedInWithCookieEvent.php',  | 
                                                        |
| 941 | - 'OCP\\User\\Events\\UserLoggedOutEvent' => $baseDir . '/lib/public/User/Events/UserLoggedOutEvent.php',  | 
                                                        |
| 942 | - 'OCP\\User\\GetQuotaEvent' => $baseDir . '/lib/public/User/GetQuotaEvent.php',  | 
                                                        |
| 943 | - 'OCP\\User\\IAvailabilityCoordinator' => $baseDir . '/lib/public/User/IAvailabilityCoordinator.php',  | 
                                                        |
| 944 | - 'OCP\\User\\IOutOfOfficeData' => $baseDir . '/lib/public/User/IOutOfOfficeData.php',  | 
                                                        |
| 945 | - 'OCP\\Util' => $baseDir . '/lib/public/Util.php',  | 
                                                        |
| 946 | - 'OCP\\WorkflowEngine\\EntityContext\\IContextPortation' => $baseDir . '/lib/public/WorkflowEngine/EntityContext/IContextPortation.php',  | 
                                                        |
| 947 | - 'OCP\\WorkflowEngine\\EntityContext\\IDisplayName' => $baseDir . '/lib/public/WorkflowEngine/EntityContext/IDisplayName.php',  | 
                                                        |
| 948 | - 'OCP\\WorkflowEngine\\EntityContext\\IDisplayText' => $baseDir . '/lib/public/WorkflowEngine/EntityContext/IDisplayText.php',  | 
                                                        |
| 949 | - 'OCP\\WorkflowEngine\\EntityContext\\IIcon' => $baseDir . '/lib/public/WorkflowEngine/EntityContext/IIcon.php',  | 
                                                        |
| 950 | - 'OCP\\WorkflowEngine\\EntityContext\\IUrl' => $baseDir . '/lib/public/WorkflowEngine/EntityContext/IUrl.php',  | 
                                                        |
| 951 | - 'OCP\\WorkflowEngine\\Events\\LoadSettingsScriptsEvent' => $baseDir . '/lib/public/WorkflowEngine/Events/LoadSettingsScriptsEvent.php',  | 
                                                        |
| 952 | - 'OCP\\WorkflowEngine\\Events\\RegisterChecksEvent' => $baseDir . '/lib/public/WorkflowEngine/Events/RegisterChecksEvent.php',  | 
                                                        |
| 953 | - 'OCP\\WorkflowEngine\\Events\\RegisterEntitiesEvent' => $baseDir . '/lib/public/WorkflowEngine/Events/RegisterEntitiesEvent.php',  | 
                                                        |
| 954 | - 'OCP\\WorkflowEngine\\Events\\RegisterOperationsEvent' => $baseDir . '/lib/public/WorkflowEngine/Events/RegisterOperationsEvent.php',  | 
                                                        |
| 955 | - 'OCP\\WorkflowEngine\\GenericEntityEvent' => $baseDir . '/lib/public/WorkflowEngine/GenericEntityEvent.php',  | 
                                                        |
| 956 | - 'OCP\\WorkflowEngine\\ICheck' => $baseDir . '/lib/public/WorkflowEngine/ICheck.php',  | 
                                                        |
| 957 | - 'OCP\\WorkflowEngine\\IComplexOperation' => $baseDir . '/lib/public/WorkflowEngine/IComplexOperation.php',  | 
                                                        |
| 958 | - 'OCP\\WorkflowEngine\\IEntity' => $baseDir . '/lib/public/WorkflowEngine/IEntity.php',  | 
                                                        |
| 959 | - 'OCP\\WorkflowEngine\\IEntityCheck' => $baseDir . '/lib/public/WorkflowEngine/IEntityCheck.php',  | 
                                                        |
| 960 | - 'OCP\\WorkflowEngine\\IEntityEvent' => $baseDir . '/lib/public/WorkflowEngine/IEntityEvent.php',  | 
                                                        |
| 961 | - 'OCP\\WorkflowEngine\\IFileCheck' => $baseDir . '/lib/public/WorkflowEngine/IFileCheck.php',  | 
                                                        |
| 962 | - 'OCP\\WorkflowEngine\\IManager' => $baseDir . '/lib/public/WorkflowEngine/IManager.php',  | 
                                                        |
| 963 | - 'OCP\\WorkflowEngine\\IOperation' => $baseDir . '/lib/public/WorkflowEngine/IOperation.php',  | 
                                                        |
| 964 | - 'OCP\\WorkflowEngine\\IRuleMatcher' => $baseDir . '/lib/public/WorkflowEngine/IRuleMatcher.php',  | 
                                                        |
| 965 | - 'OCP\\WorkflowEngine\\ISpecificOperation' => $baseDir . '/lib/public/WorkflowEngine/ISpecificOperation.php',  | 
                                                        |
| 966 | - 'OC\\Accounts\\Account' => $baseDir . '/lib/private/Accounts/Account.php',  | 
                                                        |
| 967 | - 'OC\\Accounts\\AccountManager' => $baseDir . '/lib/private/Accounts/AccountManager.php',  | 
                                                        |
| 968 | - 'OC\\Accounts\\AccountProperty' => $baseDir . '/lib/private/Accounts/AccountProperty.php',  | 
                                                        |
| 969 | - 'OC\\Accounts\\AccountPropertyCollection' => $baseDir . '/lib/private/Accounts/AccountPropertyCollection.php',  | 
                                                        |
| 970 | - 'OC\\Accounts\\Hooks' => $baseDir . '/lib/private/Accounts/Hooks.php',  | 
                                                        |
| 971 | - 'OC\\Accounts\\TAccountsHelper' => $baseDir . '/lib/private/Accounts/TAccountsHelper.php',  | 
                                                        |
| 972 | - 'OC\\Activity\\ActivitySettingsAdapter' => $baseDir . '/lib/private/Activity/ActivitySettingsAdapter.php',  | 
                                                        |
| 973 | - 'OC\\Activity\\Event' => $baseDir . '/lib/private/Activity/Event.php',  | 
                                                        |
| 974 | - 'OC\\Activity\\EventMerger' => $baseDir . '/lib/private/Activity/EventMerger.php',  | 
                                                        |
| 975 | - 'OC\\Activity\\Manager' => $baseDir . '/lib/private/Activity/Manager.php',  | 
                                                        |
| 976 | - 'OC\\AllConfig' => $baseDir . '/lib/private/AllConfig.php',  | 
                                                        |
| 977 | - 'OC\\AppConfig' => $baseDir . '/lib/private/AppConfig.php',  | 
                                                        |
| 978 | - 'OC\\AppFramework\\App' => $baseDir . '/lib/private/AppFramework/App.php',  | 
                                                        |
| 979 | - 'OC\\AppFramework\\Bootstrap\\ARegistration' => $baseDir . '/lib/private/AppFramework/Bootstrap/ARegistration.php',  | 
                                                        |
| 980 | - 'OC\\AppFramework\\Bootstrap\\BootContext' => $baseDir . '/lib/private/AppFramework/Bootstrap/BootContext.php',  | 
                                                        |
| 981 | - 'OC\\AppFramework\\Bootstrap\\Coordinator' => $baseDir . '/lib/private/AppFramework/Bootstrap/Coordinator.php',  | 
                                                        |
| 982 | - 'OC\\AppFramework\\Bootstrap\\EventListenerRegistration' => $baseDir . '/lib/private/AppFramework/Bootstrap/EventListenerRegistration.php',  | 
                                                        |
| 983 | - 'OC\\AppFramework\\Bootstrap\\FunctionInjector' => $baseDir . '/lib/private/AppFramework/Bootstrap/FunctionInjector.php',  | 
                                                        |
| 984 | - 'OC\\AppFramework\\Bootstrap\\MiddlewareRegistration' => $baseDir . '/lib/private/AppFramework/Bootstrap/MiddlewareRegistration.php',  | 
                                                        |
| 985 | - 'OC\\AppFramework\\Bootstrap\\ParameterRegistration' => $baseDir . '/lib/private/AppFramework/Bootstrap/ParameterRegistration.php',  | 
                                                        |
| 986 | - 'OC\\AppFramework\\Bootstrap\\PreviewProviderRegistration' => $baseDir . '/lib/private/AppFramework/Bootstrap/PreviewProviderRegistration.php',  | 
                                                        |
| 987 | - 'OC\\AppFramework\\Bootstrap\\RegistrationContext' => $baseDir . '/lib/private/AppFramework/Bootstrap/RegistrationContext.php',  | 
                                                        |
| 988 | - 'OC\\AppFramework\\Bootstrap\\ServiceAliasRegistration' => $baseDir . '/lib/private/AppFramework/Bootstrap/ServiceAliasRegistration.php',  | 
                                                        |
| 989 | - 'OC\\AppFramework\\Bootstrap\\ServiceFactoryRegistration' => $baseDir . '/lib/private/AppFramework/Bootstrap/ServiceFactoryRegistration.php',  | 
                                                        |
| 990 | - 'OC\\AppFramework\\Bootstrap\\ServiceRegistration' => $baseDir . '/lib/private/AppFramework/Bootstrap/ServiceRegistration.php',  | 
                                                        |
| 991 | - 'OC\\AppFramework\\DependencyInjection\\DIContainer' => $baseDir . '/lib/private/AppFramework/DependencyInjection/DIContainer.php',  | 
                                                        |
| 992 | - 'OC\\AppFramework\\Http' => $baseDir . '/lib/private/AppFramework/Http.php',  | 
                                                        |
| 993 | - 'OC\\AppFramework\\Http\\Dispatcher' => $baseDir . '/lib/private/AppFramework/Http/Dispatcher.php',  | 
                                                        |
| 994 | - 'OC\\AppFramework\\Http\\Output' => $baseDir . '/lib/private/AppFramework/Http/Output.php',  | 
                                                        |
| 995 | - 'OC\\AppFramework\\Http\\Request' => $baseDir . '/lib/private/AppFramework/Http/Request.php',  | 
                                                        |
| 996 | - 'OC\\AppFramework\\Http\\RequestId' => $baseDir . '/lib/private/AppFramework/Http/RequestId.php',  | 
                                                        |
| 997 | - 'OC\\AppFramework\\Middleware\\AdditionalScriptsMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/AdditionalScriptsMiddleware.php',  | 
                                                        |
| 998 | - 'OC\\AppFramework\\Middleware\\CompressionMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/CompressionMiddleware.php',  | 
                                                        |
| 999 | - 'OC\\AppFramework\\Middleware\\FlowV2EphemeralSessionsMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/FlowV2EphemeralSessionsMiddleware.php',  | 
                                                        |
| 1000 | - 'OC\\AppFramework\\Middleware\\MiddlewareDispatcher' => $baseDir . '/lib/private/AppFramework/Middleware/MiddlewareDispatcher.php',  | 
                                                        |
| 1001 | - 'OC\\AppFramework\\Middleware\\NotModifiedMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/NotModifiedMiddleware.php',  | 
                                                        |
| 1002 | - 'OC\\AppFramework\\Middleware\\OCSMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/OCSMiddleware.php',  | 
                                                        |
| 1003 | - 'OC\\AppFramework\\Middleware\\PublicShare\\Exceptions\\NeedAuthenticationException' => $baseDir . '/lib/private/AppFramework/Middleware/PublicShare/Exceptions/NeedAuthenticationException.php',  | 
                                                        |
| 1004 | - 'OC\\AppFramework\\Middleware\\PublicShare\\PublicShareMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/PublicShare/PublicShareMiddleware.php',  | 
                                                        |
| 1005 | - 'OC\\AppFramework\\Middleware\\Security\\BruteForceMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/Security/BruteForceMiddleware.php',  | 
                                                        |
| 1006 | - 'OC\\AppFramework\\Middleware\\Security\\CORSMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/Security/CORSMiddleware.php',  | 
                                                        |
| 1007 | - 'OC\\AppFramework\\Middleware\\Security\\CSPMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/Security/CSPMiddleware.php',  | 
                                                        |
| 1008 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\AdminIpNotAllowedException' => $baseDir . '/lib/private/AppFramework/Middleware/Security/Exceptions/AdminIpNotAllowedException.php',  | 
                                                        |
| 1009 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\AppNotEnabledException' => $baseDir . '/lib/private/AppFramework/Middleware/Security/Exceptions/AppNotEnabledException.php',  | 
                                                        |
| 1010 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\CrossSiteRequestForgeryException' => $baseDir . '/lib/private/AppFramework/Middleware/Security/Exceptions/CrossSiteRequestForgeryException.php',  | 
                                                        |
| 1011 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\ExAppRequiredException' => $baseDir . '/lib/private/AppFramework/Middleware/Security/Exceptions/ExAppRequiredException.php',  | 
                                                        |
| 1012 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\LaxSameSiteCookieFailedException' => $baseDir . '/lib/private/AppFramework/Middleware/Security/Exceptions/LaxSameSiteCookieFailedException.php',  | 
                                                        |
| 1013 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\NotAdminException' => $baseDir . '/lib/private/AppFramework/Middleware/Security/Exceptions/NotAdminException.php',  | 
                                                        |
| 1014 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\NotConfirmedException' => $baseDir . '/lib/private/AppFramework/Middleware/Security/Exceptions/NotConfirmedException.php',  | 
                                                        |
| 1015 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\NotLoggedInException' => $baseDir . '/lib/private/AppFramework/Middleware/Security/Exceptions/NotLoggedInException.php',  | 
                                                        |
| 1016 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\ReloadExecutionException' => $baseDir . '/lib/private/AppFramework/Middleware/Security/Exceptions/ReloadExecutionException.php',  | 
                                                        |
| 1017 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\SecurityException' => $baseDir . '/lib/private/AppFramework/Middleware/Security/Exceptions/SecurityException.php',  | 
                                                        |
| 1018 | - 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\StrictCookieMissingException' => $baseDir . '/lib/private/AppFramework/Middleware/Security/Exceptions/StrictCookieMissingException.php',  | 
                                                        |
| 1019 | - 'OC\\AppFramework\\Middleware\\Security\\FeaturePolicyMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/Security/FeaturePolicyMiddleware.php',  | 
                                                        |
| 1020 | - 'OC\\AppFramework\\Middleware\\Security\\PasswordConfirmationMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/Security/PasswordConfirmationMiddleware.php',  | 
                                                        |
| 1021 | - 'OC\\AppFramework\\Middleware\\Security\\RateLimitingMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/Security/RateLimitingMiddleware.php',  | 
                                                        |
| 1022 | - 'OC\\AppFramework\\Middleware\\Security\\ReloadExecutionMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/Security/ReloadExecutionMiddleware.php',  | 
                                                        |
| 1023 | - 'OC\\AppFramework\\Middleware\\Security\\SameSiteCookieMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/Security/SameSiteCookieMiddleware.php',  | 
                                                        |
| 1024 | - 'OC\\AppFramework\\Middleware\\Security\\SecurityMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php',  | 
                                                        |
| 1025 | - 'OC\\AppFramework\\Middleware\\SessionMiddleware' => $baseDir . '/lib/private/AppFramework/Middleware/SessionMiddleware.php',  | 
                                                        |
| 1026 | - 'OC\\AppFramework\\OCS\\BaseResponse' => $baseDir . '/lib/private/AppFramework/OCS/BaseResponse.php',  | 
                                                        |
| 1027 | - 'OC\\AppFramework\\OCS\\V1Response' => $baseDir . '/lib/private/AppFramework/OCS/V1Response.php',  | 
                                                        |
| 1028 | - 'OC\\AppFramework\\OCS\\V2Response' => $baseDir . '/lib/private/AppFramework/OCS/V2Response.php',  | 
                                                        |
| 1029 | - 'OC\\AppFramework\\Routing\\RouteActionHandler' => $baseDir . '/lib/private/AppFramework/Routing/RouteActionHandler.php',  | 
                                                        |
| 1030 | - 'OC\\AppFramework\\Routing\\RouteConfig' => $baseDir . '/lib/private/AppFramework/Routing/RouteConfig.php',  | 
                                                        |
| 1031 | - 'OC\\AppFramework\\Routing\\RouteParser' => $baseDir . '/lib/private/AppFramework/Routing/RouteParser.php',  | 
                                                        |
| 1032 | - 'OC\\AppFramework\\ScopedPsrLogger' => $baseDir . '/lib/private/AppFramework/ScopedPsrLogger.php',  | 
                                                        |
| 1033 | - 'OC\\AppFramework\\Services\\AppConfig' => $baseDir . '/lib/private/AppFramework/Services/AppConfig.php',  | 
                                                        |
| 1034 | - 'OC\\AppFramework\\Services\\InitialState' => $baseDir . '/lib/private/AppFramework/Services/InitialState.php',  | 
                                                        |
| 1035 | - 'OC\\AppFramework\\Utility\\ControllerMethodReflector' => $baseDir . '/lib/private/AppFramework/Utility/ControllerMethodReflector.php',  | 
                                                        |
| 1036 | - 'OC\\AppFramework\\Utility\\QueryNotFoundException' => $baseDir . '/lib/private/AppFramework/Utility/QueryNotFoundException.php',  | 
                                                        |
| 1037 | - 'OC\\AppFramework\\Utility\\SimpleContainer' => $baseDir . '/lib/private/AppFramework/Utility/SimpleContainer.php',  | 
                                                        |
| 1038 | - 'OC\\AppFramework\\Utility\\TimeFactory' => $baseDir . '/lib/private/AppFramework/Utility/TimeFactory.php',  | 
                                                        |
| 1039 | - 'OC\\AppScriptDependency' => $baseDir . '/lib/private/AppScriptDependency.php',  | 
                                                        |
| 1040 | - 'OC\\AppScriptSort' => $baseDir . '/lib/private/AppScriptSort.php',  | 
                                                        |
| 1041 | - 'OC\\App\\AppManager' => $baseDir . '/lib/private/App/AppManager.php',  | 
                                                        |
| 1042 | - 'OC\\App\\AppStore\\Bundles\\Bundle' => $baseDir . '/lib/private/App/AppStore/Bundles/Bundle.php',  | 
                                                        |
| 1043 | - 'OC\\App\\AppStore\\Bundles\\BundleFetcher' => $baseDir . '/lib/private/App/AppStore/Bundles/BundleFetcher.php',  | 
                                                        |
| 1044 | - 'OC\\App\\AppStore\\Bundles\\EducationBundle' => $baseDir . '/lib/private/App/AppStore/Bundles/EducationBundle.php',  | 
                                                        |
| 1045 | - 'OC\\App\\AppStore\\Bundles\\EnterpriseBundle' => $baseDir . '/lib/private/App/AppStore/Bundles/EnterpriseBundle.php',  | 
                                                        |
| 1046 | - 'OC\\App\\AppStore\\Bundles\\GroupwareBundle' => $baseDir . '/lib/private/App/AppStore/Bundles/GroupwareBundle.php',  | 
                                                        |
| 1047 | - 'OC\\App\\AppStore\\Bundles\\HubBundle' => $baseDir . '/lib/private/App/AppStore/Bundles/HubBundle.php',  | 
                                                        |
| 1048 | - 'OC\\App\\AppStore\\Bundles\\PublicSectorBundle' => $baseDir . '/lib/private/App/AppStore/Bundles/PublicSectorBundle.php',  | 
                                                        |
| 1049 | - 'OC\\App\\AppStore\\Bundles\\SocialSharingBundle' => $baseDir . '/lib/private/App/AppStore/Bundles/SocialSharingBundle.php',  | 
                                                        |
| 1050 | - 'OC\\App\\AppStore\\Fetcher\\AppDiscoverFetcher' => $baseDir . '/lib/private/App/AppStore/Fetcher/AppDiscoverFetcher.php',  | 
                                                        |
| 1051 | - 'OC\\App\\AppStore\\Fetcher\\AppFetcher' => $baseDir . '/lib/private/App/AppStore/Fetcher/AppFetcher.php',  | 
                                                        |
| 1052 | - 'OC\\App\\AppStore\\Fetcher\\CategoryFetcher' => $baseDir . '/lib/private/App/AppStore/Fetcher/CategoryFetcher.php',  | 
                                                        |
| 1053 | - 'OC\\App\\AppStore\\Fetcher\\Fetcher' => $baseDir . '/lib/private/App/AppStore/Fetcher/Fetcher.php',  | 
                                                        |
| 1054 | - 'OC\\App\\AppStore\\Version\\Version' => $baseDir . '/lib/private/App/AppStore/Version/Version.php',  | 
                                                        |
| 1055 | - 'OC\\App\\AppStore\\Version\\VersionParser' => $baseDir . '/lib/private/App/AppStore/Version/VersionParser.php',  | 
                                                        |
| 1056 | - 'OC\\App\\CompareVersion' => $baseDir . '/lib/private/App/CompareVersion.php',  | 
                                                        |
| 1057 | - 'OC\\App\\DependencyAnalyzer' => $baseDir . '/lib/private/App/DependencyAnalyzer.php',  | 
                                                        |
| 1058 | - 'OC\\App\\InfoParser' => $baseDir . '/lib/private/App/InfoParser.php',  | 
                                                        |
| 1059 | - 'OC\\App\\Platform' => $baseDir . '/lib/private/App/Platform.php',  | 
                                                        |
| 1060 | - 'OC\\App\\PlatformRepository' => $baseDir . '/lib/private/App/PlatformRepository.php',  | 
                                                        |
| 1061 | - 'OC\\Archive\\Archive' => $baseDir . '/lib/private/Archive/Archive.php',  | 
                                                        |
| 1062 | - 'OC\\Archive\\TAR' => $baseDir . '/lib/private/Archive/TAR.php',  | 
                                                        |
| 1063 | - 'OC\\Archive\\ZIP' => $baseDir . '/lib/private/Archive/ZIP.php',  | 
                                                        |
| 1064 | - 'OC\\Authentication\\Events\\ARemoteWipeEvent' => $baseDir . '/lib/private/Authentication/Events/ARemoteWipeEvent.php',  | 
                                                        |
| 1065 | - 'OC\\Authentication\\Events\\AppPasswordCreatedEvent' => $baseDir . '/lib/private/Authentication/Events/AppPasswordCreatedEvent.php',  | 
                                                        |
| 1066 | - 'OC\\Authentication\\Events\\LoginFailed' => $baseDir . '/lib/private/Authentication/Events/LoginFailed.php',  | 
                                                        |
| 1067 | - 'OC\\Authentication\\Events\\RemoteWipeFinished' => $baseDir . '/lib/private/Authentication/Events/RemoteWipeFinished.php',  | 
                                                        |
| 1068 | - 'OC\\Authentication\\Events\\RemoteWipeStarted' => $baseDir . '/lib/private/Authentication/Events/RemoteWipeStarted.php',  | 
                                                        |
| 1069 | - 'OC\\Authentication\\Exceptions\\ExpiredTokenException' => $baseDir . '/lib/private/Authentication/Exceptions/ExpiredTokenException.php',  | 
                                                        |
| 1070 | - 'OC\\Authentication\\Exceptions\\InvalidProviderException' => $baseDir . '/lib/private/Authentication/Exceptions/InvalidProviderException.php',  | 
                                                        |
| 1071 | - 'OC\\Authentication\\Exceptions\\InvalidTokenException' => $baseDir . '/lib/private/Authentication/Exceptions/InvalidTokenException.php',  | 
                                                        |
| 1072 | - 'OC\\Authentication\\Exceptions\\LoginRequiredException' => $baseDir . '/lib/private/Authentication/Exceptions/LoginRequiredException.php',  | 
                                                        |
| 1073 | - 'OC\\Authentication\\Exceptions\\PasswordLoginForbiddenException' => $baseDir . '/lib/private/Authentication/Exceptions/PasswordLoginForbiddenException.php',  | 
                                                        |
| 1074 | - 'OC\\Authentication\\Exceptions\\PasswordlessTokenException' => $baseDir . '/lib/private/Authentication/Exceptions/PasswordlessTokenException.php',  | 
                                                        |
| 1075 | - 'OC\\Authentication\\Exceptions\\TokenPasswordExpiredException' => $baseDir . '/lib/private/Authentication/Exceptions/TokenPasswordExpiredException.php',  | 
                                                        |
| 1076 | - 'OC\\Authentication\\Exceptions\\TwoFactorAuthRequiredException' => $baseDir . '/lib/private/Authentication/Exceptions/TwoFactorAuthRequiredException.php',  | 
                                                        |
| 1077 | - 'OC\\Authentication\\Exceptions\\UserAlreadyLoggedInException' => $baseDir . '/lib/private/Authentication/Exceptions/UserAlreadyLoggedInException.php',  | 
                                                        |
| 1078 | - 'OC\\Authentication\\Exceptions\\WipeTokenException' => $baseDir . '/lib/private/Authentication/Exceptions/WipeTokenException.php',  | 
                                                        |
| 1079 | - 'OC\\Authentication\\Listeners\\LoginFailedListener' => $baseDir . '/lib/private/Authentication/Listeners/LoginFailedListener.php',  | 
                                                        |
| 1080 | - 'OC\\Authentication\\Listeners\\RemoteWipeActivityListener' => $baseDir . '/lib/private/Authentication/Listeners/RemoteWipeActivityListener.php',  | 
                                                        |
| 1081 | - 'OC\\Authentication\\Listeners\\RemoteWipeEmailListener' => $baseDir . '/lib/private/Authentication/Listeners/RemoteWipeEmailListener.php',  | 
                                                        |
| 1082 | - 'OC\\Authentication\\Listeners\\RemoteWipeNotificationsListener' => $baseDir . '/lib/private/Authentication/Listeners/RemoteWipeNotificationsListener.php',  | 
                                                        |
| 1083 | - 'OC\\Authentication\\Listeners\\UserDeletedFilesCleanupListener' => $baseDir . '/lib/private/Authentication/Listeners/UserDeletedFilesCleanupListener.php',  | 
                                                        |
| 1084 | - 'OC\\Authentication\\Listeners\\UserDeletedStoreCleanupListener' => $baseDir . '/lib/private/Authentication/Listeners/UserDeletedStoreCleanupListener.php',  | 
                                                        |
| 1085 | - 'OC\\Authentication\\Listeners\\UserDeletedTokenCleanupListener' => $baseDir . '/lib/private/Authentication/Listeners/UserDeletedTokenCleanupListener.php',  | 
                                                        |
| 1086 | - 'OC\\Authentication\\Listeners\\UserDeletedWebAuthnCleanupListener' => $baseDir . '/lib/private/Authentication/Listeners/UserDeletedWebAuthnCleanupListener.php',  | 
                                                        |
| 1087 | - 'OC\\Authentication\\Listeners\\UserLoggedInListener' => $baseDir . '/lib/private/Authentication/Listeners/UserLoggedInListener.php',  | 
                                                        |
| 1088 | - 'OC\\Authentication\\LoginCredentials\\Credentials' => $baseDir . '/lib/private/Authentication/LoginCredentials/Credentials.php',  | 
                                                        |
| 1089 | - 'OC\\Authentication\\LoginCredentials\\Store' => $baseDir . '/lib/private/Authentication/LoginCredentials/Store.php',  | 
                                                        |
| 1090 | - 'OC\\Authentication\\Login\\ALoginCommand' => $baseDir . '/lib/private/Authentication/Login/ALoginCommand.php',  | 
                                                        |
| 1091 | - 'OC\\Authentication\\Login\\Chain' => $baseDir . '/lib/private/Authentication/Login/Chain.php',  | 
                                                        |
| 1092 | - 'OC\\Authentication\\Login\\ClearLostPasswordTokensCommand' => $baseDir . '/lib/private/Authentication/Login/ClearLostPasswordTokensCommand.php',  | 
                                                        |
| 1093 | - 'OC\\Authentication\\Login\\CompleteLoginCommand' => $baseDir . '/lib/private/Authentication/Login/CompleteLoginCommand.php',  | 
                                                        |
| 1094 | - 'OC\\Authentication\\Login\\CreateSessionTokenCommand' => $baseDir . '/lib/private/Authentication/Login/CreateSessionTokenCommand.php',  | 
                                                        |
| 1095 | - 'OC\\Authentication\\Login\\FinishRememberedLoginCommand' => $baseDir . '/lib/private/Authentication/Login/FinishRememberedLoginCommand.php',  | 
                                                        |
| 1096 | - 'OC\\Authentication\\Login\\FlowV2EphemeralSessionsCommand' => $baseDir . '/lib/private/Authentication/Login/FlowV2EphemeralSessionsCommand.php',  | 
                                                        |
| 1097 | - 'OC\\Authentication\\Login\\LoggedInCheckCommand' => $baseDir . '/lib/private/Authentication/Login/LoggedInCheckCommand.php',  | 
                                                        |
| 1098 | - 'OC\\Authentication\\Login\\LoginData' => $baseDir . '/lib/private/Authentication/Login/LoginData.php',  | 
                                                        |
| 1099 | - 'OC\\Authentication\\Login\\LoginResult' => $baseDir . '/lib/private/Authentication/Login/LoginResult.php',  | 
                                                        |
| 1100 | - 'OC\\Authentication\\Login\\PreLoginHookCommand' => $baseDir . '/lib/private/Authentication/Login/PreLoginHookCommand.php',  | 
                                                        |
| 1101 | - 'OC\\Authentication\\Login\\SetUserTimezoneCommand' => $baseDir . '/lib/private/Authentication/Login/SetUserTimezoneCommand.php',  | 
                                                        |
| 1102 | - 'OC\\Authentication\\Login\\TwoFactorCommand' => $baseDir . '/lib/private/Authentication/Login/TwoFactorCommand.php',  | 
                                                        |
| 1103 | - 'OC\\Authentication\\Login\\UidLoginCommand' => $baseDir . '/lib/private/Authentication/Login/UidLoginCommand.php',  | 
                                                        |
| 1104 | - 'OC\\Authentication\\Login\\UpdateLastPasswordConfirmCommand' => $baseDir . '/lib/private/Authentication/Login/UpdateLastPasswordConfirmCommand.php',  | 
                                                        |
| 1105 | - 'OC\\Authentication\\Login\\UserDisabledCheckCommand' => $baseDir . '/lib/private/Authentication/Login/UserDisabledCheckCommand.php',  | 
                                                        |
| 1106 | - 'OC\\Authentication\\Login\\WebAuthnChain' => $baseDir . '/lib/private/Authentication/Login/WebAuthnChain.php',  | 
                                                        |
| 1107 | - 'OC\\Authentication\\Login\\WebAuthnLoginCommand' => $baseDir . '/lib/private/Authentication/Login/WebAuthnLoginCommand.php',  | 
                                                        |
| 1108 | - 'OC\\Authentication\\Notifications\\Notifier' => $baseDir . '/lib/private/Authentication/Notifications/Notifier.php',  | 
                                                        |
| 1109 | - 'OC\\Authentication\\Token\\INamedToken' => $baseDir . '/lib/private/Authentication/Token/INamedToken.php',  | 
                                                        |
| 1110 | - 'OC\\Authentication\\Token\\IProvider' => $baseDir . '/lib/private/Authentication/Token/IProvider.php',  | 
                                                        |
| 1111 | - 'OC\\Authentication\\Token\\IToken' => $baseDir . '/lib/private/Authentication/Token/IToken.php',  | 
                                                        |
| 1112 | - 'OC\\Authentication\\Token\\IWipeableToken' => $baseDir . '/lib/private/Authentication/Token/IWipeableToken.php',  | 
                                                        |
| 1113 | - 'OC\\Authentication\\Token\\Manager' => $baseDir . '/lib/private/Authentication/Token/Manager.php',  | 
                                                        |
| 1114 | - 'OC\\Authentication\\Token\\PublicKeyToken' => $baseDir . '/lib/private/Authentication/Token/PublicKeyToken.php',  | 
                                                        |
| 1115 | - 'OC\\Authentication\\Token\\PublicKeyTokenMapper' => $baseDir . '/lib/private/Authentication/Token/PublicKeyTokenMapper.php',  | 
                                                        |
| 1116 | - 'OC\\Authentication\\Token\\PublicKeyTokenProvider' => $baseDir . '/lib/private/Authentication/Token/PublicKeyTokenProvider.php',  | 
                                                        |
| 1117 | - 'OC\\Authentication\\Token\\RemoteWipe' => $baseDir . '/lib/private/Authentication/Token/RemoteWipe.php',  | 
                                                        |
| 1118 | - 'OC\\Authentication\\Token\\TokenCleanupJob' => $baseDir . '/lib/private/Authentication/Token/TokenCleanupJob.php',  | 
                                                        |
| 1119 | - 'OC\\Authentication\\TwoFactorAuth\\Db\\ProviderUserAssignmentDao' => $baseDir . '/lib/private/Authentication/TwoFactorAuth/Db/ProviderUserAssignmentDao.php',  | 
                                                        |
| 1120 | - 'OC\\Authentication\\TwoFactorAuth\\EnforcementState' => $baseDir . '/lib/private/Authentication/TwoFactorAuth/EnforcementState.php',  | 
                                                        |
| 1121 | - 'OC\\Authentication\\TwoFactorAuth\\Manager' => $baseDir . '/lib/private/Authentication/TwoFactorAuth/Manager.php',  | 
                                                        |
| 1122 | - 'OC\\Authentication\\TwoFactorAuth\\MandatoryTwoFactor' => $baseDir . '/lib/private/Authentication/TwoFactorAuth/MandatoryTwoFactor.php',  | 
                                                        |
| 1123 | - 'OC\\Authentication\\TwoFactorAuth\\ProviderLoader' => $baseDir . '/lib/private/Authentication/TwoFactorAuth/ProviderLoader.php',  | 
                                                        |
| 1124 | - 'OC\\Authentication\\TwoFactorAuth\\ProviderManager' => $baseDir . '/lib/private/Authentication/TwoFactorAuth/ProviderManager.php',  | 
                                                        |
| 1125 | - 'OC\\Authentication\\TwoFactorAuth\\ProviderSet' => $baseDir . '/lib/private/Authentication/TwoFactorAuth/ProviderSet.php',  | 
                                                        |
| 1126 | - 'OC\\Authentication\\TwoFactorAuth\\Registry' => $baseDir . '/lib/private/Authentication/TwoFactorAuth/Registry.php',  | 
                                                        |
| 1127 | - 'OC\\Authentication\\WebAuthn\\CredentialRepository' => $baseDir . '/lib/private/Authentication/WebAuthn/CredentialRepository.php',  | 
                                                        |
| 1128 | - 'OC\\Authentication\\WebAuthn\\Db\\PublicKeyCredentialEntity' => $baseDir . '/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialEntity.php',  | 
                                                        |
| 1129 | - 'OC\\Authentication\\WebAuthn\\Db\\PublicKeyCredentialMapper' => $baseDir . '/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php',  | 
                                                        |
| 1130 | - 'OC\\Authentication\\WebAuthn\\Manager' => $baseDir . '/lib/private/Authentication/WebAuthn/Manager.php',  | 
                                                        |
| 1131 | - 'OC\\Avatar\\Avatar' => $baseDir . '/lib/private/Avatar/Avatar.php',  | 
                                                        |
| 1132 | - 'OC\\Avatar\\AvatarManager' => $baseDir . '/lib/private/Avatar/AvatarManager.php',  | 
                                                        |
| 1133 | - 'OC\\Avatar\\GuestAvatar' => $baseDir . '/lib/private/Avatar/GuestAvatar.php',  | 
                                                        |
| 1134 | - 'OC\\Avatar\\PlaceholderAvatar' => $baseDir . '/lib/private/Avatar/PlaceholderAvatar.php',  | 
                                                        |
| 1135 | - 'OC\\Avatar\\UserAvatar' => $baseDir . '/lib/private/Avatar/UserAvatar.php',  | 
                                                        |
| 1136 | - 'OC\\BackgroundJob\\JobList' => $baseDir . '/lib/private/BackgroundJob/JobList.php',  | 
                                                        |
| 1137 | - 'OC\\BinaryFinder' => $baseDir . '/lib/private/BinaryFinder.php',  | 
                                                        |
| 1138 | - 'OC\\Blurhash\\Listener\\GenerateBlurhashMetadata' => $baseDir . '/lib/private/Blurhash/Listener/GenerateBlurhashMetadata.php',  | 
                                                        |
| 1139 | - 'OC\\Broadcast\\Events\\BroadcastEvent' => $baseDir . '/lib/private/Broadcast/Events/BroadcastEvent.php',  | 
                                                        |
| 1140 | - 'OC\\Cache\\CappedMemoryCache' => $baseDir . '/lib/private/Cache/CappedMemoryCache.php',  | 
                                                        |
| 1141 | - 'OC\\Cache\\File' => $baseDir . '/lib/private/Cache/File.php',  | 
                                                        |
| 1142 | - 'OC\\Calendar\\AvailabilityResult' => $baseDir . '/lib/private/Calendar/AvailabilityResult.php',  | 
                                                        |
| 1143 | - 'OC\\Calendar\\CalendarEventBuilder' => $baseDir . '/lib/private/Calendar/CalendarEventBuilder.php',  | 
                                                        |
| 1144 | - 'OC\\Calendar\\CalendarQuery' => $baseDir . '/lib/private/Calendar/CalendarQuery.php',  | 
                                                        |
| 1145 | - 'OC\\Calendar\\Manager' => $baseDir . '/lib/private/Calendar/Manager.php',  | 
                                                        |
| 1146 | - 'OC\\Calendar\\Resource\\Manager' => $baseDir . '/lib/private/Calendar/Resource/Manager.php',  | 
                                                        |
| 1147 | - 'OC\\Calendar\\ResourcesRoomsUpdater' => $baseDir . '/lib/private/Calendar/ResourcesRoomsUpdater.php',  | 
                                                        |
| 1148 | - 'OC\\Calendar\\Room\\Manager' => $baseDir . '/lib/private/Calendar/Room/Manager.php',  | 
                                                        |
| 1149 | - 'OC\\CapabilitiesManager' => $baseDir . '/lib/private/CapabilitiesManager.php',  | 
                                                        |
| 1150 | - 'OC\\Collaboration\\AutoComplete\\Manager' => $baseDir . '/lib/private/Collaboration/AutoComplete/Manager.php',  | 
                                                        |
| 1151 | - 'OC\\Collaboration\\Collaborators\\GroupPlugin' => $baseDir . '/lib/private/Collaboration/Collaborators/GroupPlugin.php',  | 
                                                        |
| 1152 | - 'OC\\Collaboration\\Collaborators\\LookupPlugin' => $baseDir . '/lib/private/Collaboration/Collaborators/LookupPlugin.php',  | 
                                                        |
| 1153 | - 'OC\\Collaboration\\Collaborators\\MailPlugin' => $baseDir . '/lib/private/Collaboration/Collaborators/MailPlugin.php',  | 
                                                        |
| 1154 | - 'OC\\Collaboration\\Collaborators\\RemoteGroupPlugin' => $baseDir . '/lib/private/Collaboration/Collaborators/RemoteGroupPlugin.php',  | 
                                                        |
| 1155 | - 'OC\\Collaboration\\Collaborators\\RemotePlugin' => $baseDir . '/lib/private/Collaboration/Collaborators/RemotePlugin.php',  | 
                                                        |
| 1156 | - 'OC\\Collaboration\\Collaborators\\Search' => $baseDir . '/lib/private/Collaboration/Collaborators/Search.php',  | 
                                                        |
| 1157 | - 'OC\\Collaboration\\Collaborators\\SearchResult' => $baseDir . '/lib/private/Collaboration/Collaborators/SearchResult.php',  | 
                                                        |
| 1158 | - 'OC\\Collaboration\\Collaborators\\UserPlugin' => $baseDir . '/lib/private/Collaboration/Collaborators/UserPlugin.php',  | 
                                                        |
| 1159 | - 'OC\\Collaboration\\Reference\\File\\FileReferenceEventListener' => $baseDir . '/lib/private/Collaboration/Reference/File/FileReferenceEventListener.php',  | 
                                                        |
| 1160 | - 'OC\\Collaboration\\Reference\\File\\FileReferenceProvider' => $baseDir . '/lib/private/Collaboration/Reference/File/FileReferenceProvider.php',  | 
                                                        |
| 1161 | - 'OC\\Collaboration\\Reference\\LinkReferenceProvider' => $baseDir . '/lib/private/Collaboration/Reference/LinkReferenceProvider.php',  | 
                                                        |
| 1162 | - 'OC\\Collaboration\\Reference\\ReferenceManager' => $baseDir . '/lib/private/Collaboration/Reference/ReferenceManager.php',  | 
                                                        |
| 1163 | - 'OC\\Collaboration\\Reference\\RenderReferenceEventListener' => $baseDir . '/lib/private/Collaboration/Reference/RenderReferenceEventListener.php',  | 
                                                        |
| 1164 | - 'OC\\Collaboration\\Resources\\Collection' => $baseDir . '/lib/private/Collaboration/Resources/Collection.php',  | 
                                                        |
| 1165 | - 'OC\\Collaboration\\Resources\\Listener' => $baseDir . '/lib/private/Collaboration/Resources/Listener.php',  | 
                                                        |
| 1166 | - 'OC\\Collaboration\\Resources\\Manager' => $baseDir . '/lib/private/Collaboration/Resources/Manager.php',  | 
                                                        |
| 1167 | - 'OC\\Collaboration\\Resources\\ProviderManager' => $baseDir . '/lib/private/Collaboration/Resources/ProviderManager.php',  | 
                                                        |
| 1168 | - 'OC\\Collaboration\\Resources\\Resource' => $baseDir . '/lib/private/Collaboration/Resources/Resource.php',  | 
                                                        |
| 1169 | - 'OC\\Color' => $baseDir . '/lib/private/Color.php',  | 
                                                        |
| 1170 | - 'OC\\Command\\AsyncBus' => $baseDir . '/lib/private/Command/AsyncBus.php',  | 
                                                        |
| 1171 | - 'OC\\Command\\CallableJob' => $baseDir . '/lib/private/Command/CallableJob.php',  | 
                                                        |
| 1172 | - 'OC\\Command\\ClosureJob' => $baseDir . '/lib/private/Command/ClosureJob.php',  | 
                                                        |
| 1173 | - 'OC\\Command\\CommandJob' => $baseDir . '/lib/private/Command/CommandJob.php',  | 
                                                        |
| 1174 | - 'OC\\Command\\CronBus' => $baseDir . '/lib/private/Command/CronBus.php',  | 
                                                        |
| 1175 | - 'OC\\Command\\FileAccess' => $baseDir . '/lib/private/Command/FileAccess.php',  | 
                                                        |
| 1176 | - 'OC\\Command\\QueueBus' => $baseDir . '/lib/private/Command/QueueBus.php',  | 
                                                        |
| 1177 | - 'OC\\Comments\\Comment' => $baseDir . '/lib/private/Comments/Comment.php',  | 
                                                        |
| 1178 | - 'OC\\Comments\\Manager' => $baseDir . '/lib/private/Comments/Manager.php',  | 
                                                        |
| 1179 | - 'OC\\Comments\\ManagerFactory' => $baseDir . '/lib/private/Comments/ManagerFactory.php',  | 
                                                        |
| 1180 | - 'OC\\Config' => $baseDir . '/lib/private/Config.php',  | 
                                                        |
| 1181 | - 'OC\\Config\\Lexicon\\CoreConfigLexicon' => $baseDir . '/lib/private/Config/Lexicon/CoreConfigLexicon.php',  | 
                                                        |
| 1182 | - 'OC\\Config\\UserConfig' => $baseDir . '/lib/private/Config/UserConfig.php',  | 
                                                        |
| 1183 | - 'OC\\Console\\Application' => $baseDir . '/lib/private/Console/Application.php',  | 
                                                        |
| 1184 | - 'OC\\Console\\TimestampFormatter' => $baseDir . '/lib/private/Console/TimestampFormatter.php',  | 
                                                        |
| 1185 | - 'OC\\ContactsManager' => $baseDir . '/lib/private/ContactsManager.php',  | 
                                                        |
| 1186 | - 'OC\\Contacts\\ContactsMenu\\ActionFactory' => $baseDir . '/lib/private/Contacts/ContactsMenu/ActionFactory.php',  | 
                                                        |
| 1187 | - 'OC\\Contacts\\ContactsMenu\\ActionProviderStore' => $baseDir . '/lib/private/Contacts/ContactsMenu/ActionProviderStore.php',  | 
                                                        |
| 1188 | - 'OC\\Contacts\\ContactsMenu\\Actions\\LinkAction' => $baseDir . '/lib/private/Contacts/ContactsMenu/Actions/LinkAction.php',  | 
                                                        |
| 1189 | - 'OC\\Contacts\\ContactsMenu\\ContactsStore' => $baseDir . '/lib/private/Contacts/ContactsMenu/ContactsStore.php',  | 
                                                        |
| 1190 | - 'OC\\Contacts\\ContactsMenu\\Entry' => $baseDir . '/lib/private/Contacts/ContactsMenu/Entry.php',  | 
                                                        |
| 1191 | - 'OC\\Contacts\\ContactsMenu\\Manager' => $baseDir . '/lib/private/Contacts/ContactsMenu/Manager.php',  | 
                                                        |
| 1192 | - 'OC\\Contacts\\ContactsMenu\\Providers\\EMailProvider' => $baseDir . '/lib/private/Contacts/ContactsMenu/Providers/EMailProvider.php',  | 
                                                        |
| 1193 | - 'OC\\Contacts\\ContactsMenu\\Providers\\LocalTimeProvider' => $baseDir . '/lib/private/Contacts/ContactsMenu/Providers/LocalTimeProvider.php',  | 
                                                        |
| 1194 | - 'OC\\Contacts\\ContactsMenu\\Providers\\ProfileProvider' => $baseDir . '/lib/private/Contacts/ContactsMenu/Providers/ProfileProvider.php',  | 
                                                        |
| 1195 | - 'OC\\Core\\Application' => $baseDir . '/core/Application.php',  | 
                                                        |
| 1196 | - 'OC\\Core\\BackgroundJobs\\BackgroundCleanupUpdaterBackupsJob' => $baseDir . '/core/BackgroundJobs/BackgroundCleanupUpdaterBackupsJob.php',  | 
                                                        |
| 1197 | - 'OC\\Core\\BackgroundJobs\\CheckForUserCertificates' => $baseDir . '/core/BackgroundJobs/CheckForUserCertificates.php',  | 
                                                        |
| 1198 | - 'OC\\Core\\BackgroundJobs\\CleanupLoginFlowV2' => $baseDir . '/core/BackgroundJobs/CleanupLoginFlowV2.php',  | 
                                                        |
| 1199 | - 'OC\\Core\\BackgroundJobs\\GenerateMetadataJob' => $baseDir . '/core/BackgroundJobs/GenerateMetadataJob.php',  | 
                                                        |
| 1200 | - 'OC\\Core\\BackgroundJobs\\LookupServerSendCheckBackgroundJob' => $baseDir . '/core/BackgroundJobs/LookupServerSendCheckBackgroundJob.php',  | 
                                                        |
| 1201 | - 'OC\\Core\\Command\\App\\Disable' => $baseDir . '/core/Command/App/Disable.php',  | 
                                                        |
| 1202 | - 'OC\\Core\\Command\\App\\Enable' => $baseDir . '/core/Command/App/Enable.php',  | 
                                                        |
| 1203 | - 'OC\\Core\\Command\\App\\GetPath' => $baseDir . '/core/Command/App/GetPath.php',  | 
                                                        |
| 1204 | - 'OC\\Core\\Command\\App\\Install' => $baseDir . '/core/Command/App/Install.php',  | 
                                                        |
| 1205 | - 'OC\\Core\\Command\\App\\ListApps' => $baseDir . '/core/Command/App/ListApps.php',  | 
                                                        |
| 1206 | - 'OC\\Core\\Command\\App\\Remove' => $baseDir . '/core/Command/App/Remove.php',  | 
                                                        |
| 1207 | - 'OC\\Core\\Command\\App\\Update' => $baseDir . '/core/Command/App/Update.php',  | 
                                                        |
| 1208 | - 'OC\\Core\\Command\\Background\\Delete' => $baseDir . '/core/Command/Background/Delete.php',  | 
                                                        |
| 1209 | - 'OC\\Core\\Command\\Background\\Job' => $baseDir . '/core/Command/Background/Job.php',  | 
                                                        |
| 1210 | - 'OC\\Core\\Command\\Background\\JobBase' => $baseDir . '/core/Command/Background/JobBase.php',  | 
                                                        |
| 1211 | - 'OC\\Core\\Command\\Background\\JobWorker' => $baseDir . '/core/Command/Background/JobWorker.php',  | 
                                                        |
| 1212 | - 'OC\\Core\\Command\\Background\\ListCommand' => $baseDir . '/core/Command/Background/ListCommand.php',  | 
                                                        |
| 1213 | - 'OC\\Core\\Command\\Background\\Mode' => $baseDir . '/core/Command/Background/Mode.php',  | 
                                                        |
| 1214 | - 'OC\\Core\\Command\\Base' => $baseDir . '/core/Command/Base.php',  | 
                                                        |
| 1215 | - 'OC\\Core\\Command\\Broadcast\\Test' => $baseDir . '/core/Command/Broadcast/Test.php',  | 
                                                        |
| 1216 | - 'OC\\Core\\Command\\Check' => $baseDir . '/core/Command/Check.php',  | 
                                                        |
| 1217 | - 'OC\\Core\\Command\\Config\\App\\Base' => $baseDir . '/core/Command/Config/App/Base.php',  | 
                                                        |
| 1218 | - 'OC\\Core\\Command\\Config\\App\\DeleteConfig' => $baseDir . '/core/Command/Config/App/DeleteConfig.php',  | 
                                                        |
| 1219 | - 'OC\\Core\\Command\\Config\\App\\GetConfig' => $baseDir . '/core/Command/Config/App/GetConfig.php',  | 
                                                        |
| 1220 | - 'OC\\Core\\Command\\Config\\App\\SetConfig' => $baseDir . '/core/Command/Config/App/SetConfig.php',  | 
                                                        |
| 1221 | - 'OC\\Core\\Command\\Config\\Import' => $baseDir . '/core/Command/Config/Import.php',  | 
                                                        |
| 1222 | - 'OC\\Core\\Command\\Config\\ListConfigs' => $baseDir . '/core/Command/Config/ListConfigs.php',  | 
                                                        |
| 1223 | - 'OC\\Core\\Command\\Config\\System\\Base' => $baseDir . '/core/Command/Config/System/Base.php',  | 
                                                        |
| 1224 | - 'OC\\Core\\Command\\Config\\System\\DeleteConfig' => $baseDir . '/core/Command/Config/System/DeleteConfig.php',  | 
                                                        |
| 1225 | - 'OC\\Core\\Command\\Config\\System\\GetConfig' => $baseDir . '/core/Command/Config/System/GetConfig.php',  | 
                                                        |
| 1226 | - 'OC\\Core\\Command\\Config\\System\\SetConfig' => $baseDir . '/core/Command/Config/System/SetConfig.php',  | 
                                                        |
| 1227 | - 'OC\\Core\\Command\\Db\\AddMissingColumns' => $baseDir . '/core/Command/Db/AddMissingColumns.php',  | 
                                                        |
| 1228 | - 'OC\\Core\\Command\\Db\\AddMissingIndices' => $baseDir . '/core/Command/Db/AddMissingIndices.php',  | 
                                                        |
| 1229 | - 'OC\\Core\\Command\\Db\\AddMissingPrimaryKeys' => $baseDir . '/core/Command/Db/AddMissingPrimaryKeys.php',  | 
                                                        |
| 1230 | - 'OC\\Core\\Command\\Db\\ConvertFilecacheBigInt' => $baseDir . '/core/Command/Db/ConvertFilecacheBigInt.php',  | 
                                                        |
| 1231 | - 'OC\\Core\\Command\\Db\\ConvertMysqlToMB4' => $baseDir . '/core/Command/Db/ConvertMysqlToMB4.php',  | 
                                                        |
| 1232 | - 'OC\\Core\\Command\\Db\\ConvertType' => $baseDir . '/core/Command/Db/ConvertType.php',  | 
                                                        |
| 1233 | - 'OC\\Core\\Command\\Db\\ExpectedSchema' => $baseDir . '/core/Command/Db/ExpectedSchema.php',  | 
                                                        |
| 1234 | - 'OC\\Core\\Command\\Db\\ExportSchema' => $baseDir . '/core/Command/Db/ExportSchema.php',  | 
                                                        |
| 1235 | - 'OC\\Core\\Command\\Db\\Migrations\\ExecuteCommand' => $baseDir . '/core/Command/Db/Migrations/ExecuteCommand.php',  | 
                                                        |
| 1236 | - 'OC\\Core\\Command\\Db\\Migrations\\GenerateCommand' => $baseDir . '/core/Command/Db/Migrations/GenerateCommand.php',  | 
                                                        |
| 1237 | - 'OC\\Core\\Command\\Db\\Migrations\\GenerateMetadataCommand' => $baseDir . '/core/Command/Db/Migrations/GenerateMetadataCommand.php',  | 
                                                        |
| 1238 | - 'OC\\Core\\Command\\Db\\Migrations\\MigrateCommand' => $baseDir . '/core/Command/Db/Migrations/MigrateCommand.php',  | 
                                                        |
| 1239 | - 'OC\\Core\\Command\\Db\\Migrations\\PreviewCommand' => $baseDir . '/core/Command/Db/Migrations/PreviewCommand.php',  | 
                                                        |
| 1240 | - 'OC\\Core\\Command\\Db\\Migrations\\StatusCommand' => $baseDir . '/core/Command/Db/Migrations/StatusCommand.php',  | 
                                                        |
| 1241 | - 'OC\\Core\\Command\\Db\\SchemaEncoder' => $baseDir . '/core/Command/Db/SchemaEncoder.php',  | 
                                                        |
| 1242 | - 'OC\\Core\\Command\\Encryption\\ChangeKeyStorageRoot' => $baseDir . '/core/Command/Encryption/ChangeKeyStorageRoot.php',  | 
                                                        |
| 1243 | - 'OC\\Core\\Command\\Encryption\\DecryptAll' => $baseDir . '/core/Command/Encryption/DecryptAll.php',  | 
                                                        |
| 1244 | - 'OC\\Core\\Command\\Encryption\\Disable' => $baseDir . '/core/Command/Encryption/Disable.php',  | 
                                                        |
| 1245 | - 'OC\\Core\\Command\\Encryption\\Enable' => $baseDir . '/core/Command/Encryption/Enable.php',  | 
                                                        |
| 1246 | - 'OC\\Core\\Command\\Encryption\\EncryptAll' => $baseDir . '/core/Command/Encryption/EncryptAll.php',  | 
                                                        |
| 1247 | - 'OC\\Core\\Command\\Encryption\\ListModules' => $baseDir . '/core/Command/Encryption/ListModules.php',  | 
                                                        |
| 1248 | - 'OC\\Core\\Command\\Encryption\\MigrateKeyStorage' => $baseDir . '/core/Command/Encryption/MigrateKeyStorage.php',  | 
                                                        |
| 1249 | - 'OC\\Core\\Command\\Encryption\\SetDefaultModule' => $baseDir . '/core/Command/Encryption/SetDefaultModule.php',  | 
                                                        |
| 1250 | - 'OC\\Core\\Command\\Encryption\\ShowKeyStorageRoot' => $baseDir . '/core/Command/Encryption/ShowKeyStorageRoot.php',  | 
                                                        |
| 1251 | - 'OC\\Core\\Command\\Encryption\\Status' => $baseDir . '/core/Command/Encryption/Status.php',  | 
                                                        |
| 1252 | - 'OC\\Core\\Command\\FilesMetadata\\Get' => $baseDir . '/core/Command/FilesMetadata/Get.php',  | 
                                                        |
| 1253 | - 'OC\\Core\\Command\\Group\\Add' => $baseDir . '/core/Command/Group/Add.php',  | 
                                                        |
| 1254 | - 'OC\\Core\\Command\\Group\\AddUser' => $baseDir . '/core/Command/Group/AddUser.php',  | 
                                                        |
| 1255 | - 'OC\\Core\\Command\\Group\\Delete' => $baseDir . '/core/Command/Group/Delete.php',  | 
                                                        |
| 1256 | - 'OC\\Core\\Command\\Group\\Info' => $baseDir . '/core/Command/Group/Info.php',  | 
                                                        |
| 1257 | - 'OC\\Core\\Command\\Group\\ListCommand' => $baseDir . '/core/Command/Group/ListCommand.php',  | 
                                                        |
| 1258 | - 'OC\\Core\\Command\\Group\\RemoveUser' => $baseDir . '/core/Command/Group/RemoveUser.php',  | 
                                                        |
| 1259 | - 'OC\\Core\\Command\\Info\\File' => $baseDir . '/core/Command/Info/File.php',  | 
                                                        |
| 1260 | - 'OC\\Core\\Command\\Info\\FileUtils' => $baseDir . '/core/Command/Info/FileUtils.php',  | 
                                                        |
| 1261 | - 'OC\\Core\\Command\\Info\\Space' => $baseDir . '/core/Command/Info/Space.php',  | 
                                                        |
| 1262 | - 'OC\\Core\\Command\\Integrity\\CheckApp' => $baseDir . '/core/Command/Integrity/CheckApp.php',  | 
                                                        |
| 1263 | - 'OC\\Core\\Command\\Integrity\\CheckCore' => $baseDir . '/core/Command/Integrity/CheckCore.php',  | 
                                                        |
| 1264 | - 'OC\\Core\\Command\\Integrity\\SignApp' => $baseDir . '/core/Command/Integrity/SignApp.php',  | 
                                                        |
| 1265 | - 'OC\\Core\\Command\\Integrity\\SignCore' => $baseDir . '/core/Command/Integrity/SignCore.php',  | 
                                                        |
| 1266 | - 'OC\\Core\\Command\\InterruptedException' => $baseDir . '/core/Command/InterruptedException.php',  | 
                                                        |
| 1267 | - 'OC\\Core\\Command\\L10n\\CreateJs' => $baseDir . '/core/Command/L10n/CreateJs.php',  | 
                                                        |
| 1268 | - 'OC\\Core\\Command\\Log\\File' => $baseDir . '/core/Command/Log/File.php',  | 
                                                        |
| 1269 | - 'OC\\Core\\Command\\Log\\Manage' => $baseDir . '/core/Command/Log/Manage.php',  | 
                                                        |
| 1270 | - 'OC\\Core\\Command\\Maintenance\\DataFingerprint' => $baseDir . '/core/Command/Maintenance/DataFingerprint.php',  | 
                                                        |
| 1271 | - 'OC\\Core\\Command\\Maintenance\\Install' => $baseDir . '/core/Command/Maintenance/Install.php',  | 
                                                        |
| 1272 | - 'OC\\Core\\Command\\Maintenance\\Mimetype\\GenerateMimetypeFileBuilder' => $baseDir . '/core/Command/Maintenance/Mimetype/GenerateMimetypeFileBuilder.php',  | 
                                                        |
| 1273 | - 'OC\\Core\\Command\\Maintenance\\Mimetype\\UpdateDB' => $baseDir . '/core/Command/Maintenance/Mimetype/UpdateDB.php',  | 
                                                        |
| 1274 | - 'OC\\Core\\Command\\Maintenance\\Mimetype\\UpdateJS' => $baseDir . '/core/Command/Maintenance/Mimetype/UpdateJS.php',  | 
                                                        |
| 1275 | - 'OC\\Core\\Command\\Maintenance\\Mode' => $baseDir . '/core/Command/Maintenance/Mode.php',  | 
                                                        |
| 1276 | - 'OC\\Core\\Command\\Maintenance\\Repair' => $baseDir . '/core/Command/Maintenance/Repair.php',  | 
                                                        |
| 1277 | - 'OC\\Core\\Command\\Maintenance\\RepairShareOwnership' => $baseDir . '/core/Command/Maintenance/RepairShareOwnership.php',  | 
                                                        |
| 1278 | - 'OC\\Core\\Command\\Maintenance\\UpdateHtaccess' => $baseDir . '/core/Command/Maintenance/UpdateHtaccess.php',  | 
                                                        |
| 1279 | - 'OC\\Core\\Command\\Maintenance\\UpdateTheme' => $baseDir . '/core/Command/Maintenance/UpdateTheme.php',  | 
                                                        |
| 1280 | - 'OC\\Core\\Command\\Memcache\\RedisCommand' => $baseDir . '/core/Command/Memcache/RedisCommand.php',  | 
                                                        |
| 1281 | - 'OC\\Core\\Command\\Preview\\Cleanup' => $baseDir . '/core/Command/Preview/Cleanup.php',  | 
                                                        |
| 1282 | - 'OC\\Core\\Command\\Preview\\Generate' => $baseDir . '/core/Command/Preview/Generate.php',  | 
                                                        |
| 1283 | - 'OC\\Core\\Command\\Preview\\Repair' => $baseDir . '/core/Command/Preview/Repair.php',  | 
                                                        |
| 1284 | - 'OC\\Core\\Command\\Preview\\ResetRenderedTexts' => $baseDir . '/core/Command/Preview/ResetRenderedTexts.php',  | 
                                                        |
| 1285 | - 'OC\\Core\\Command\\Security\\BruteforceAttempts' => $baseDir . '/core/Command/Security/BruteforceAttempts.php',  | 
                                                        |
| 1286 | - 'OC\\Core\\Command\\Security\\BruteforceResetAttempts' => $baseDir . '/core/Command/Security/BruteforceResetAttempts.php',  | 
                                                        |
| 1287 | - 'OC\\Core\\Command\\Security\\ExportCertificates' => $baseDir . '/core/Command/Security/ExportCertificates.php',  | 
                                                        |
| 1288 | - 'OC\\Core\\Command\\Security\\ImportCertificate' => $baseDir . '/core/Command/Security/ImportCertificate.php',  | 
                                                        |
| 1289 | - 'OC\\Core\\Command\\Security\\ListCertificates' => $baseDir . '/core/Command/Security/ListCertificates.php',  | 
                                                        |
| 1290 | - 'OC\\Core\\Command\\Security\\RemoveCertificate' => $baseDir . '/core/Command/Security/RemoveCertificate.php',  | 
                                                        |
| 1291 | - 'OC\\Core\\Command\\SetupChecks' => $baseDir . '/core/Command/SetupChecks.php',  | 
                                                        |
| 1292 | - 'OC\\Core\\Command\\Status' => $baseDir . '/core/Command/Status.php',  | 
                                                        |
| 1293 | - 'OC\\Core\\Command\\SystemTag\\Add' => $baseDir . '/core/Command/SystemTag/Add.php',  | 
                                                        |
| 1294 | - 'OC\\Core\\Command\\SystemTag\\Delete' => $baseDir . '/core/Command/SystemTag/Delete.php',  | 
                                                        |
| 1295 | - 'OC\\Core\\Command\\SystemTag\\Edit' => $baseDir . '/core/Command/SystemTag/Edit.php',  | 
                                                        |
| 1296 | - 'OC\\Core\\Command\\SystemTag\\ListCommand' => $baseDir . '/core/Command/SystemTag/ListCommand.php',  | 
                                                        |
| 1297 | - 'OC\\Core\\Command\\TaskProcessing\\EnabledCommand' => $baseDir . '/core/Command/TaskProcessing/EnabledCommand.php',  | 
                                                        |
| 1298 | - 'OC\\Core\\Command\\TaskProcessing\\GetCommand' => $baseDir . '/core/Command/TaskProcessing/GetCommand.php',  | 
                                                        |
| 1299 | - 'OC\\Core\\Command\\TaskProcessing\\ListCommand' => $baseDir . '/core/Command/TaskProcessing/ListCommand.php',  | 
                                                        |
| 1300 | - 'OC\\Core\\Command\\TaskProcessing\\Statistics' => $baseDir . '/core/Command/TaskProcessing/Statistics.php',  | 
                                                        |
| 1301 | - 'OC\\Core\\Command\\TwoFactorAuth\\Base' => $baseDir . '/core/Command/TwoFactorAuth/Base.php',  | 
                                                        |
| 1302 | - 'OC\\Core\\Command\\TwoFactorAuth\\Cleanup' => $baseDir . '/core/Command/TwoFactorAuth/Cleanup.php',  | 
                                                        |
| 1303 | - 'OC\\Core\\Command\\TwoFactorAuth\\Disable' => $baseDir . '/core/Command/TwoFactorAuth/Disable.php',  | 
                                                        |
| 1304 | - 'OC\\Core\\Command\\TwoFactorAuth\\Enable' => $baseDir . '/core/Command/TwoFactorAuth/Enable.php',  | 
                                                        |
| 1305 | - 'OC\\Core\\Command\\TwoFactorAuth\\Enforce' => $baseDir . '/core/Command/TwoFactorAuth/Enforce.php',  | 
                                                        |
| 1306 | - 'OC\\Core\\Command\\TwoFactorAuth\\State' => $baseDir . '/core/Command/TwoFactorAuth/State.php',  | 
                                                        |
| 1307 | - 'OC\\Core\\Command\\Upgrade' => $baseDir . '/core/Command/Upgrade.php',  | 
                                                        |
| 1308 | - 'OC\\Core\\Command\\User\\Add' => $baseDir . '/core/Command/User/Add.php',  | 
                                                        |
| 1309 | - 'OC\\Core\\Command\\User\\AuthTokens\\Add' => $baseDir . '/core/Command/User/AuthTokens/Add.php',  | 
                                                        |
| 1310 | - 'OC\\Core\\Command\\User\\AuthTokens\\Delete' => $baseDir . '/core/Command/User/AuthTokens/Delete.php',  | 
                                                        |
| 1311 | - 'OC\\Core\\Command\\User\\AuthTokens\\ListCommand' => $baseDir . '/core/Command/User/AuthTokens/ListCommand.php',  | 
                                                        |
| 1312 | - 'OC\\Core\\Command\\User\\ClearGeneratedAvatarCacheCommand' => $baseDir . '/core/Command/User/ClearGeneratedAvatarCacheCommand.php',  | 
                                                        |
| 1313 | - 'OC\\Core\\Command\\User\\Delete' => $baseDir . '/core/Command/User/Delete.php',  | 
                                                        |
| 1314 | - 'OC\\Core\\Command\\User\\Disable' => $baseDir . '/core/Command/User/Disable.php',  | 
                                                        |
| 1315 | - 'OC\\Core\\Command\\User\\Enable' => $baseDir . '/core/Command/User/Enable.php',  | 
                                                        |
| 1316 | - 'OC\\Core\\Command\\User\\Info' => $baseDir . '/core/Command/User/Info.php',  | 
                                                        |
| 1317 | - 'OC\\Core\\Command\\User\\Keys\\Verify' => $baseDir . '/core/Command/User/Keys/Verify.php',  | 
                                                        |
| 1318 | - 'OC\\Core\\Command\\User\\LastSeen' => $baseDir . '/core/Command/User/LastSeen.php',  | 
                                                        |
| 1319 | - 'OC\\Core\\Command\\User\\ListCommand' => $baseDir . '/core/Command/User/ListCommand.php',  | 
                                                        |
| 1320 | - 'OC\\Core\\Command\\User\\Report' => $baseDir . '/core/Command/User/Report.php',  | 
                                                        |
| 1321 | - 'OC\\Core\\Command\\User\\ResetPassword' => $baseDir . '/core/Command/User/ResetPassword.php',  | 
                                                        |
| 1322 | - 'OC\\Core\\Command\\User\\Setting' => $baseDir . '/core/Command/User/Setting.php',  | 
                                                        |
| 1323 | - 'OC\\Core\\Command\\User\\SyncAccountDataCommand' => $baseDir . '/core/Command/User/SyncAccountDataCommand.php',  | 
                                                        |
| 1324 | - 'OC\\Core\\Command\\User\\Welcome' => $baseDir . '/core/Command/User/Welcome.php',  | 
                                                        |
| 1325 | - 'OC\\Core\\Controller\\AppPasswordController' => $baseDir . '/core/Controller/AppPasswordController.php',  | 
                                                        |
| 1326 | - 'OC\\Core\\Controller\\AutoCompleteController' => $baseDir . '/core/Controller/AutoCompleteController.php',  | 
                                                        |
| 1327 | - 'OC\\Core\\Controller\\AvatarController' => $baseDir . '/core/Controller/AvatarController.php',  | 
                                                        |
| 1328 | - 'OC\\Core\\Controller\\CSRFTokenController' => $baseDir . '/core/Controller/CSRFTokenController.php',  | 
                                                        |
| 1329 | - 'OC\\Core\\Controller\\ClientFlowLoginController' => $baseDir . '/core/Controller/ClientFlowLoginController.php',  | 
                                                        |
| 1330 | - 'OC\\Core\\Controller\\ClientFlowLoginV2Controller' => $baseDir . '/core/Controller/ClientFlowLoginV2Controller.php',  | 
                                                        |
| 1331 | - 'OC\\Core\\Controller\\CollaborationResourcesController' => $baseDir . '/core/Controller/CollaborationResourcesController.php',  | 
                                                        |
| 1332 | - 'OC\\Core\\Controller\\ContactsMenuController' => $baseDir . '/core/Controller/ContactsMenuController.php',  | 
                                                        |
| 1333 | - 'OC\\Core\\Controller\\CssController' => $baseDir . '/core/Controller/CssController.php',  | 
                                                        |
| 1334 | - 'OC\\Core\\Controller\\ErrorController' => $baseDir . '/core/Controller/ErrorController.php',  | 
                                                        |
| 1335 | - 'OC\\Core\\Controller\\GuestAvatarController' => $baseDir . '/core/Controller/GuestAvatarController.php',  | 
                                                        |
| 1336 | - 'OC\\Core\\Controller\\HoverCardController' => $baseDir . '/core/Controller/HoverCardController.php',  | 
                                                        |
| 1337 | - 'OC\\Core\\Controller\\JsController' => $baseDir . '/core/Controller/JsController.php',  | 
                                                        |
| 1338 | - 'OC\\Core\\Controller\\LoginController' => $baseDir . '/core/Controller/LoginController.php',  | 
                                                        |
| 1339 | - 'OC\\Core\\Controller\\LostController' => $baseDir . '/core/Controller/LostController.php',  | 
                                                        |
| 1340 | - 'OC\\Core\\Controller\\NavigationController' => $baseDir . '/core/Controller/NavigationController.php',  | 
                                                        |
| 1341 | - 'OC\\Core\\Controller\\OCJSController' => $baseDir . '/core/Controller/OCJSController.php',  | 
                                                        |
| 1342 | - 'OC\\Core\\Controller\\OCMController' => $baseDir . '/core/Controller/OCMController.php',  | 
                                                        |
| 1343 | - 'OC\\Core\\Controller\\OCSController' => $baseDir . '/core/Controller/OCSController.php',  | 
                                                        |
| 1344 | - 'OC\\Core\\Controller\\PreviewController' => $baseDir . '/core/Controller/PreviewController.php',  | 
                                                        |
| 1345 | - 'OC\\Core\\Controller\\ProfileApiController' => $baseDir . '/core/Controller/ProfileApiController.php',  | 
                                                        |
| 1346 | - 'OC\\Core\\Controller\\RecommendedAppsController' => $baseDir . '/core/Controller/RecommendedAppsController.php',  | 
                                                        |
| 1347 | - 'OC\\Core\\Controller\\ReferenceApiController' => $baseDir . '/core/Controller/ReferenceApiController.php',  | 
                                                        |
| 1348 | - 'OC\\Core\\Controller\\ReferenceController' => $baseDir . '/core/Controller/ReferenceController.php',  | 
                                                        |
| 1349 | - 'OC\\Core\\Controller\\SetupController' => $baseDir . '/core/Controller/SetupController.php',  | 
                                                        |
| 1350 | - 'OC\\Core\\Controller\\TaskProcessingApiController' => $baseDir . '/core/Controller/TaskProcessingApiController.php',  | 
                                                        |
| 1351 | - 'OC\\Core\\Controller\\TeamsApiController' => $baseDir . '/core/Controller/TeamsApiController.php',  | 
                                                        |
| 1352 | - 'OC\\Core\\Controller\\TextProcessingApiController' => $baseDir . '/core/Controller/TextProcessingApiController.php',  | 
                                                        |
| 1353 | - 'OC\\Core\\Controller\\TextToImageApiController' => $baseDir . '/core/Controller/TextToImageApiController.php',  | 
                                                        |
| 1354 | - 'OC\\Core\\Controller\\TranslationApiController' => $baseDir . '/core/Controller/TranslationApiController.php',  | 
                                                        |
| 1355 | - 'OC\\Core\\Controller\\TwoFactorApiController' => $baseDir . '/core/Controller/TwoFactorApiController.php',  | 
                                                        |
| 1356 | - 'OC\\Core\\Controller\\TwoFactorChallengeController' => $baseDir . '/core/Controller/TwoFactorChallengeController.php',  | 
                                                        |
| 1357 | - 'OC\\Core\\Controller\\UnifiedSearchController' => $baseDir . '/core/Controller/UnifiedSearchController.php',  | 
                                                        |
| 1358 | - 'OC\\Core\\Controller\\UnsupportedBrowserController' => $baseDir . '/core/Controller/UnsupportedBrowserController.php',  | 
                                                        |
| 1359 | - 'OC\\Core\\Controller\\UserController' => $baseDir . '/core/Controller/UserController.php',  | 
                                                        |
| 1360 | - 'OC\\Core\\Controller\\WalledGardenController' => $baseDir . '/core/Controller/WalledGardenController.php',  | 
                                                        |
| 1361 | - 'OC\\Core\\Controller\\WebAuthnController' => $baseDir . '/core/Controller/WebAuthnController.php',  | 
                                                        |
| 1362 | - 'OC\\Core\\Controller\\WellKnownController' => $baseDir . '/core/Controller/WellKnownController.php',  | 
                                                        |
| 1363 | - 'OC\\Core\\Controller\\WhatsNewController' => $baseDir . '/core/Controller/WhatsNewController.php',  | 
                                                        |
| 1364 | - 'OC\\Core\\Controller\\WipeController' => $baseDir . '/core/Controller/WipeController.php',  | 
                                                        |
| 1365 | - 'OC\\Core\\Data\\LoginFlowV2Credentials' => $baseDir . '/core/Data/LoginFlowV2Credentials.php',  | 
                                                        |
| 1366 | - 'OC\\Core\\Data\\LoginFlowV2Tokens' => $baseDir . '/core/Data/LoginFlowV2Tokens.php',  | 
                                                        |
| 1367 | - 'OC\\Core\\Db\\LoginFlowV2' => $baseDir . '/core/Db/LoginFlowV2.php',  | 
                                                        |
| 1368 | - 'OC\\Core\\Db\\LoginFlowV2Mapper' => $baseDir . '/core/Db/LoginFlowV2Mapper.php',  | 
                                                        |
| 1369 | - 'OC\\Core\\Db\\ProfileConfig' => $baseDir . '/core/Db/ProfileConfig.php',  | 
                                                        |
| 1370 | - 'OC\\Core\\Db\\ProfileConfigMapper' => $baseDir . '/core/Db/ProfileConfigMapper.php',  | 
                                                        |
| 1371 | - 'OC\\Core\\Events\\BeforePasswordResetEvent' => $baseDir . '/core/Events/BeforePasswordResetEvent.php',  | 
                                                        |
| 1372 | - 'OC\\Core\\Events\\PasswordResetEvent' => $baseDir . '/core/Events/PasswordResetEvent.php',  | 
                                                        |
| 1373 | - 'OC\\Core\\Exception\\LoginFlowV2NotFoundException' => $baseDir . '/core/Exception/LoginFlowV2NotFoundException.php',  | 
                                                        |
| 1374 | - 'OC\\Core\\Exception\\ResetPasswordException' => $baseDir . '/core/Exception/ResetPasswordException.php',  | 
                                                        |
| 1375 | - 'OC\\Core\\Listener\\BeforeMessageLoggedEventListener' => $baseDir . '/core/Listener/BeforeMessageLoggedEventListener.php',  | 
                                                        |
| 1376 | - 'OC\\Core\\Listener\\BeforeTemplateRenderedListener' => $baseDir . '/core/Listener/BeforeTemplateRenderedListener.php',  | 
                                                        |
| 1377 | - 'OC\\Core\\Middleware\\TwoFactorMiddleware' => $baseDir . '/core/Middleware/TwoFactorMiddleware.php',  | 
                                                        |
| 1378 | - 'OC\\Core\\Migrations\\Version13000Date20170705121758' => $baseDir . '/core/Migrations/Version13000Date20170705121758.php',  | 
                                                        |
| 1379 | - 'OC\\Core\\Migrations\\Version13000Date20170718121200' => $baseDir . '/core/Migrations/Version13000Date20170718121200.php',  | 
                                                        |
| 1380 | - 'OC\\Core\\Migrations\\Version13000Date20170814074715' => $baseDir . '/core/Migrations/Version13000Date20170814074715.php',  | 
                                                        |
| 1381 | - 'OC\\Core\\Migrations\\Version13000Date20170919121250' => $baseDir . '/core/Migrations/Version13000Date20170919121250.php',  | 
                                                        |
| 1382 | - 'OC\\Core\\Migrations\\Version13000Date20170926101637' => $baseDir . '/core/Migrations/Version13000Date20170926101637.php',  | 
                                                        |
| 1383 | - 'OC\\Core\\Migrations\\Version14000Date20180129121024' => $baseDir . '/core/Migrations/Version14000Date20180129121024.php',  | 
                                                        |
| 1384 | - 'OC\\Core\\Migrations\\Version14000Date20180404140050' => $baseDir . '/core/Migrations/Version14000Date20180404140050.php',  | 
                                                        |
| 1385 | - 'OC\\Core\\Migrations\\Version14000Date20180516101403' => $baseDir . '/core/Migrations/Version14000Date20180516101403.php',  | 
                                                        |
| 1386 | - 'OC\\Core\\Migrations\\Version14000Date20180518120534' => $baseDir . '/core/Migrations/Version14000Date20180518120534.php',  | 
                                                        |
| 1387 | - 'OC\\Core\\Migrations\\Version14000Date20180522074438' => $baseDir . '/core/Migrations/Version14000Date20180522074438.php',  | 
                                                        |
| 1388 | - 'OC\\Core\\Migrations\\Version14000Date20180626223656' => $baseDir . '/core/Migrations/Version14000Date20180626223656.php',  | 
                                                        |
| 1389 | - 'OC\\Core\\Migrations\\Version14000Date20180710092004' => $baseDir . '/core/Migrations/Version14000Date20180710092004.php',  | 
                                                        |
| 1390 | - 'OC\\Core\\Migrations\\Version14000Date20180712153140' => $baseDir . '/core/Migrations/Version14000Date20180712153140.php',  | 
                                                        |
| 1391 | - 'OC\\Core\\Migrations\\Version15000Date20180926101451' => $baseDir . '/core/Migrations/Version15000Date20180926101451.php',  | 
                                                        |
| 1392 | - 'OC\\Core\\Migrations\\Version15000Date20181015062942' => $baseDir . '/core/Migrations/Version15000Date20181015062942.php',  | 
                                                        |
| 1393 | - 'OC\\Core\\Migrations\\Version15000Date20181029084625' => $baseDir . '/core/Migrations/Version15000Date20181029084625.php',  | 
                                                        |
| 1394 | - 'OC\\Core\\Migrations\\Version16000Date20190207141427' => $baseDir . '/core/Migrations/Version16000Date20190207141427.php',  | 
                                                        |
| 1395 | - 'OC\\Core\\Migrations\\Version16000Date20190212081545' => $baseDir . '/core/Migrations/Version16000Date20190212081545.php',  | 
                                                        |
| 1396 | - 'OC\\Core\\Migrations\\Version16000Date20190427105638' => $baseDir . '/core/Migrations/Version16000Date20190427105638.php',  | 
                                                        |
| 1397 | - 'OC\\Core\\Migrations\\Version16000Date20190428150708' => $baseDir . '/core/Migrations/Version16000Date20190428150708.php',  | 
                                                        |
| 1398 | - 'OC\\Core\\Migrations\\Version17000Date20190514105811' => $baseDir . '/core/Migrations/Version17000Date20190514105811.php',  | 
                                                        |
| 1399 | - 'OC\\Core\\Migrations\\Version18000Date20190920085628' => $baseDir . '/core/Migrations/Version18000Date20190920085628.php',  | 
                                                        |
| 1400 | - 'OC\\Core\\Migrations\\Version18000Date20191014105105' => $baseDir . '/core/Migrations/Version18000Date20191014105105.php',  | 
                                                        |
| 1401 | - 'OC\\Core\\Migrations\\Version18000Date20191204114856' => $baseDir . '/core/Migrations/Version18000Date20191204114856.php',  | 
                                                        |
| 1402 | - 'OC\\Core\\Migrations\\Version19000Date20200211083441' => $baseDir . '/core/Migrations/Version19000Date20200211083441.php',  | 
                                                        |
| 1403 | - 'OC\\Core\\Migrations\\Version20000Date20201109081915' => $baseDir . '/core/Migrations/Version20000Date20201109081915.php',  | 
                                                        |
| 1404 | - 'OC\\Core\\Migrations\\Version20000Date20201109081918' => $baseDir . '/core/Migrations/Version20000Date20201109081918.php',  | 
                                                        |
| 1405 | - 'OC\\Core\\Migrations\\Version20000Date20201109081919' => $baseDir . '/core/Migrations/Version20000Date20201109081919.php',  | 
                                                        |
| 1406 | - 'OC\\Core\\Migrations\\Version20000Date20201111081915' => $baseDir . '/core/Migrations/Version20000Date20201111081915.php',  | 
                                                        |
| 1407 | - 'OC\\Core\\Migrations\\Version21000Date20201120141228' => $baseDir . '/core/Migrations/Version21000Date20201120141228.php',  | 
                                                        |
| 1408 | - 'OC\\Core\\Migrations\\Version21000Date20201202095923' => $baseDir . '/core/Migrations/Version21000Date20201202095923.php',  | 
                                                        |
| 1409 | - 'OC\\Core\\Migrations\\Version21000Date20210119195004' => $baseDir . '/core/Migrations/Version21000Date20210119195004.php',  | 
                                                        |
| 1410 | - 'OC\\Core\\Migrations\\Version21000Date20210309185126' => $baseDir . '/core/Migrations/Version21000Date20210309185126.php',  | 
                                                        |
| 1411 | - 'OC\\Core\\Migrations\\Version21000Date20210309185127' => $baseDir . '/core/Migrations/Version21000Date20210309185127.php',  | 
                                                        |
| 1412 | - 'OC\\Core\\Migrations\\Version22000Date20210216080825' => $baseDir . '/core/Migrations/Version22000Date20210216080825.php',  | 
                                                        |
| 1413 | - 'OC\\Core\\Migrations\\Version23000Date20210721100600' => $baseDir . '/core/Migrations/Version23000Date20210721100600.php',  | 
                                                        |
| 1414 | - 'OC\\Core\\Migrations\\Version23000Date20210906132259' => $baseDir . '/core/Migrations/Version23000Date20210906132259.php',  | 
                                                        |
| 1415 | - 'OC\\Core\\Migrations\\Version23000Date20210930122352' => $baseDir . '/core/Migrations/Version23000Date20210930122352.php',  | 
                                                        |
| 1416 | - 'OC\\Core\\Migrations\\Version23000Date20211203110726' => $baseDir . '/core/Migrations/Version23000Date20211203110726.php',  | 
                                                        |
| 1417 | - 'OC\\Core\\Migrations\\Version23000Date20211213203940' => $baseDir . '/core/Migrations/Version23000Date20211213203940.php',  | 
                                                        |
| 1418 | - 'OC\\Core\\Migrations\\Version24000Date20211210141942' => $baseDir . '/core/Migrations/Version24000Date20211210141942.php',  | 
                                                        |
| 1419 | - 'OC\\Core\\Migrations\\Version24000Date20211213081506' => $baseDir . '/core/Migrations/Version24000Date20211213081506.php',  | 
                                                        |
| 1420 | - 'OC\\Core\\Migrations\\Version24000Date20211213081604' => $baseDir . '/core/Migrations/Version24000Date20211213081604.php',  | 
                                                        |
| 1421 | - 'OC\\Core\\Migrations\\Version24000Date20211222112246' => $baseDir . '/core/Migrations/Version24000Date20211222112246.php',  | 
                                                        |
| 1422 | - 'OC\\Core\\Migrations\\Version24000Date20211230140012' => $baseDir . '/core/Migrations/Version24000Date20211230140012.php',  | 
                                                        |
| 1423 | - 'OC\\Core\\Migrations\\Version24000Date20220131153041' => $baseDir . '/core/Migrations/Version24000Date20220131153041.php',  | 
                                                        |
| 1424 | - 'OC\\Core\\Migrations\\Version24000Date20220202150027' => $baseDir . '/core/Migrations/Version24000Date20220202150027.php',  | 
                                                        |
| 1425 | - 'OC\\Core\\Migrations\\Version24000Date20220404230027' => $baseDir . '/core/Migrations/Version24000Date20220404230027.php',  | 
                                                        |
| 1426 | - 'OC\\Core\\Migrations\\Version24000Date20220425072957' => $baseDir . '/core/Migrations/Version24000Date20220425072957.php',  | 
                                                        |
| 1427 | - 'OC\\Core\\Migrations\\Version25000Date20220515204012' => $baseDir . '/core/Migrations/Version25000Date20220515204012.php',  | 
                                                        |
| 1428 | - 'OC\\Core\\Migrations\\Version25000Date20220602190540' => $baseDir . '/core/Migrations/Version25000Date20220602190540.php',  | 
                                                        |
| 1429 | - 'OC\\Core\\Migrations\\Version25000Date20220905140840' => $baseDir . '/core/Migrations/Version25000Date20220905140840.php',  | 
                                                        |
| 1430 | - 'OC\\Core\\Migrations\\Version25000Date20221007010957' => $baseDir . '/core/Migrations/Version25000Date20221007010957.php',  | 
                                                        |
| 1431 | - 'OC\\Core\\Migrations\\Version27000Date20220613163520' => $baseDir . '/core/Migrations/Version27000Date20220613163520.php',  | 
                                                        |
| 1432 | - 'OC\\Core\\Migrations\\Version27000Date20230309104325' => $baseDir . '/core/Migrations/Version27000Date20230309104325.php',  | 
                                                        |
| 1433 | - 'OC\\Core\\Migrations\\Version27000Date20230309104802' => $baseDir . '/core/Migrations/Version27000Date20230309104802.php',  | 
                                                        |
| 1434 | - 'OC\\Core\\Migrations\\Version28000Date20230616104802' => $baseDir . '/core/Migrations/Version28000Date20230616104802.php',  | 
                                                        |
| 1435 | - 'OC\\Core\\Migrations\\Version28000Date20230728104802' => $baseDir . '/core/Migrations/Version28000Date20230728104802.php',  | 
                                                        |
| 1436 | - 'OC\\Core\\Migrations\\Version28000Date20230803221055' => $baseDir . '/core/Migrations/Version28000Date20230803221055.php',  | 
                                                        |
| 1437 | - 'OC\\Core\\Migrations\\Version28000Date20230906104802' => $baseDir . '/core/Migrations/Version28000Date20230906104802.php',  | 
                                                        |
| 1438 | - 'OC\\Core\\Migrations\\Version28000Date20231004103301' => $baseDir . '/core/Migrations/Version28000Date20231004103301.php',  | 
                                                        |
| 1439 | - 'OC\\Core\\Migrations\\Version28000Date20231103104802' => $baseDir . '/core/Migrations/Version28000Date20231103104802.php',  | 
                                                        |
| 1440 | - 'OC\\Core\\Migrations\\Version28000Date20231126110901' => $baseDir . '/core/Migrations/Version28000Date20231126110901.php',  | 
                                                        |
| 1441 | - 'OC\\Core\\Migrations\\Version28000Date20240828142927' => $baseDir . '/core/Migrations/Version28000Date20240828142927.php',  | 
                                                        |
| 1442 | - 'OC\\Core\\Migrations\\Version29000Date20231126110901' => $baseDir . '/core/Migrations/Version29000Date20231126110901.php',  | 
                                                        |
| 1443 | - 'OC\\Core\\Migrations\\Version29000Date20231213104850' => $baseDir . '/core/Migrations/Version29000Date20231213104850.php',  | 
                                                        |
| 1444 | - 'OC\\Core\\Migrations\\Version29000Date20240124132201' => $baseDir . '/core/Migrations/Version29000Date20240124132201.php',  | 
                                                        |
| 1445 | - 'OC\\Core\\Migrations\\Version29000Date20240124132202' => $baseDir . '/core/Migrations/Version29000Date20240124132202.php',  | 
                                                        |
| 1446 | - 'OC\\Core\\Migrations\\Version29000Date20240131122720' => $baseDir . '/core/Migrations/Version29000Date20240131122720.php',  | 
                                                        |
| 1447 | - 'OC\\Core\\Migrations\\Version30000Date20240429122720' => $baseDir . '/core/Migrations/Version30000Date20240429122720.php',  | 
                                                        |
| 1448 | - 'OC\\Core\\Migrations\\Version30000Date20240708160048' => $baseDir . '/core/Migrations/Version30000Date20240708160048.php',  | 
                                                        |
| 1449 | - 'OC\\Core\\Migrations\\Version30000Date20240717111406' => $baseDir . '/core/Migrations/Version30000Date20240717111406.php',  | 
                                                        |
| 1450 | - 'OC\\Core\\Migrations\\Version30000Date20240814180800' => $baseDir . '/core/Migrations/Version30000Date20240814180800.php',  | 
                                                        |
| 1451 | - 'OC\\Core\\Migrations\\Version30000Date20240815080800' => $baseDir . '/core/Migrations/Version30000Date20240815080800.php',  | 
                                                        |
| 1452 | - 'OC\\Core\\Migrations\\Version30000Date20240906095113' => $baseDir . '/core/Migrations/Version30000Date20240906095113.php',  | 
                                                        |
| 1453 | - 'OC\\Core\\Migrations\\Version31000Date20240101084401' => $baseDir . '/core/Migrations/Version31000Date20240101084401.php',  | 
                                                        |
| 1454 | - 'OC\\Core\\Migrations\\Version31000Date20240814184402' => $baseDir . '/core/Migrations/Version31000Date20240814184402.php',  | 
                                                        |
| 1455 | - 'OC\\Core\\Migrations\\Version31000Date20250213102442' => $baseDir . '/core/Migrations/Version31000Date20250213102442.php',  | 
                                                        |
| 1456 | - 'OC\\Core\\Migrations\\Version32000Date20250402182800' => $baseDir . '/core/Migrations/Version32000Date20250402182800.php',  | 
                                                        |
| 1457 | - 'OC\\Core\\Notification\\CoreNotifier' => $baseDir . '/core/Notification/CoreNotifier.php',  | 
                                                        |
| 1458 | - 'OC\\Core\\ResponseDefinitions' => $baseDir . '/core/ResponseDefinitions.php',  | 
                                                        |
| 1459 | - 'OC\\Core\\Service\\LoginFlowV2Service' => $baseDir . '/core/Service/LoginFlowV2Service.php',  | 
                                                        |
| 1460 | - 'OC\\DB\\Adapter' => $baseDir . '/lib/private/DB/Adapter.php',  | 
                                                        |
| 1461 | - 'OC\\DB\\AdapterMySQL' => $baseDir . '/lib/private/DB/AdapterMySQL.php',  | 
                                                        |
| 1462 | - 'OC\\DB\\AdapterOCI8' => $baseDir . '/lib/private/DB/AdapterOCI8.php',  | 
                                                        |
| 1463 | - 'OC\\DB\\AdapterPgSql' => $baseDir . '/lib/private/DB/AdapterPgSql.php',  | 
                                                        |
| 1464 | - 'OC\\DB\\AdapterSqlite' => $baseDir . '/lib/private/DB/AdapterSqlite.php',  | 
                                                        |
| 1465 | - 'OC\\DB\\ArrayResult' => $baseDir . '/lib/private/DB/ArrayResult.php',  | 
                                                        |
| 1466 | - 'OC\\DB\\BacktraceDebugStack' => $baseDir . '/lib/private/DB/BacktraceDebugStack.php',  | 
                                                        |
| 1467 | - 'OC\\DB\\Connection' => $baseDir . '/lib/private/DB/Connection.php',  | 
                                                        |
| 1468 | - 'OC\\DB\\ConnectionAdapter' => $baseDir . '/lib/private/DB/ConnectionAdapter.php',  | 
                                                        |
| 1469 | - 'OC\\DB\\ConnectionFactory' => $baseDir . '/lib/private/DB/ConnectionFactory.php',  | 
                                                        |
| 1470 | - 'OC\\DB\\DbDataCollector' => $baseDir . '/lib/private/DB/DbDataCollector.php',  | 
                                                        |
| 1471 | - 'OC\\DB\\Exceptions\\DbalException' => $baseDir . '/lib/private/DB/Exceptions/DbalException.php',  | 
                                                        |
| 1472 | - 'OC\\DB\\MigrationException' => $baseDir . '/lib/private/DB/MigrationException.php',  | 
                                                        |
| 1473 | - 'OC\\DB\\MigrationService' => $baseDir . '/lib/private/DB/MigrationService.php',  | 
                                                        |
| 1474 | - 'OC\\DB\\Migrator' => $baseDir . '/lib/private/DB/Migrator.php',  | 
                                                        |
| 1475 | - 'OC\\DB\\MigratorExecuteSqlEvent' => $baseDir . '/lib/private/DB/MigratorExecuteSqlEvent.php',  | 
                                                        |
| 1476 | - 'OC\\DB\\MissingColumnInformation' => $baseDir . '/lib/private/DB/MissingColumnInformation.php',  | 
                                                        |
| 1477 | - 'OC\\DB\\MissingIndexInformation' => $baseDir . '/lib/private/DB/MissingIndexInformation.php',  | 
                                                        |
| 1478 | - 'OC\\DB\\MissingPrimaryKeyInformation' => $baseDir . '/lib/private/DB/MissingPrimaryKeyInformation.php',  | 
                                                        |
| 1479 | - 'OC\\DB\\MySqlTools' => $baseDir . '/lib/private/DB/MySqlTools.php',  | 
                                                        |
| 1480 | - 'OC\\DB\\OCSqlitePlatform' => $baseDir . '/lib/private/DB/OCSqlitePlatform.php',  | 
                                                        |
| 1481 | - 'OC\\DB\\ObjectParameter' => $baseDir . '/lib/private/DB/ObjectParameter.php',  | 
                                                        |
| 1482 | - 'OC\\DB\\OracleConnection' => $baseDir . '/lib/private/DB/OracleConnection.php',  | 
                                                        |
| 1483 | - 'OC\\DB\\OracleMigrator' => $baseDir . '/lib/private/DB/OracleMigrator.php',  | 
                                                        |
| 1484 | - 'OC\\DB\\PgSqlTools' => $baseDir . '/lib/private/DB/PgSqlTools.php',  | 
                                                        |
| 1485 | - 'OC\\DB\\PreparedStatement' => $baseDir . '/lib/private/DB/PreparedStatement.php',  | 
                                                        |
| 1486 | - 'OC\\DB\\QueryBuilder\\CompositeExpression' => $baseDir . '/lib/private/DB/QueryBuilder/CompositeExpression.php',  | 
                                                        |
| 1487 | - 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\ExpressionBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/ExpressionBuilder/ExpressionBuilder.php',  | 
                                                        |
| 1488 | - 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\MySqlExpressionBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/ExpressionBuilder/MySqlExpressionBuilder.php',  | 
                                                        |
| 1489 | - 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\OCIExpressionBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/ExpressionBuilder/OCIExpressionBuilder.php',  | 
                                                        |
| 1490 | - 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\PgSqlExpressionBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/ExpressionBuilder/PgSqlExpressionBuilder.php',  | 
                                                        |
| 1491 | - 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\SqliteExpressionBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/ExpressionBuilder/SqliteExpressionBuilder.php',  | 
                                                        |
| 1492 | - 'OC\\DB\\QueryBuilder\\ExtendedQueryBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/ExtendedQueryBuilder.php',  | 
                                                        |
| 1493 | - 'OC\\DB\\QueryBuilder\\FunctionBuilder\\FunctionBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/FunctionBuilder/FunctionBuilder.php',  | 
                                                        |
| 1494 | - 'OC\\DB\\QueryBuilder\\FunctionBuilder\\OCIFunctionBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/FunctionBuilder/OCIFunctionBuilder.php',  | 
                                                        |
| 1495 | - 'OC\\DB\\QueryBuilder\\FunctionBuilder\\PgSqlFunctionBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/FunctionBuilder/PgSqlFunctionBuilder.php',  | 
                                                        |
| 1496 | - 'OC\\DB\\QueryBuilder\\FunctionBuilder\\SqliteFunctionBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/FunctionBuilder/SqliteFunctionBuilder.php',  | 
                                                        |
| 1497 | - 'OC\\DB\\QueryBuilder\\Literal' => $baseDir . '/lib/private/DB/QueryBuilder/Literal.php',  | 
                                                        |
| 1498 | - 'OC\\DB\\QueryBuilder\\Parameter' => $baseDir . '/lib/private/DB/QueryBuilder/Parameter.php',  | 
                                                        |
| 1499 | - 'OC\\DB\\QueryBuilder\\Partitioned\\InvalidPartitionedQueryException' => $baseDir . '/lib/private/DB/QueryBuilder/Partitioned/InvalidPartitionedQueryException.php',  | 
                                                        |
| 1500 | - 'OC\\DB\\QueryBuilder\\Partitioned\\JoinCondition' => $baseDir . '/lib/private/DB/QueryBuilder/Partitioned/JoinCondition.php',  | 
                                                        |
| 1501 | - 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionQuery' => $baseDir . '/lib/private/DB/QueryBuilder/Partitioned/PartitionQuery.php',  | 
                                                        |
| 1502 | - 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionSplit' => $baseDir . '/lib/private/DB/QueryBuilder/Partitioned/PartitionSplit.php',  | 
                                                        |
| 1503 | - 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionedQueryBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/Partitioned/PartitionedQueryBuilder.php',  | 
                                                        |
| 1504 | - 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionedResult' => $baseDir . '/lib/private/DB/QueryBuilder/Partitioned/PartitionedResult.php',  | 
                                                        |
| 1505 | - 'OC\\DB\\QueryBuilder\\QueryBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/QueryBuilder.php',  | 
                                                        |
| 1506 | - 'OC\\DB\\QueryBuilder\\QueryFunction' => $baseDir . '/lib/private/DB/QueryBuilder/QueryFunction.php',  | 
                                                        |
| 1507 | - 'OC\\DB\\QueryBuilder\\QuoteHelper' => $baseDir . '/lib/private/DB/QueryBuilder/QuoteHelper.php',  | 
                                                        |
| 1508 | - 'OC\\DB\\QueryBuilder\\Sharded\\AutoIncrementHandler' => $baseDir . '/lib/private/DB/QueryBuilder/Sharded/AutoIncrementHandler.php',  | 
                                                        |
| 1509 | - 'OC\\DB\\QueryBuilder\\Sharded\\CrossShardMoveHelper' => $baseDir . '/lib/private/DB/QueryBuilder/Sharded/CrossShardMoveHelper.php',  | 
                                                        |
| 1510 | - 'OC\\DB\\QueryBuilder\\Sharded\\HashShardMapper' => $baseDir . '/lib/private/DB/QueryBuilder/Sharded/HashShardMapper.php',  | 
                                                        |
| 1511 | - 'OC\\DB\\QueryBuilder\\Sharded\\InvalidShardedQueryException' => $baseDir . '/lib/private/DB/QueryBuilder/Sharded/InvalidShardedQueryException.php',  | 
                                                        |
| 1512 | - 'OC\\DB\\QueryBuilder\\Sharded\\RoundRobinShardMapper' => $baseDir . '/lib/private/DB/QueryBuilder/Sharded/RoundRobinShardMapper.php',  | 
                                                        |
| 1513 | - 'OC\\DB\\QueryBuilder\\Sharded\\ShardConnectionManager' => $baseDir . '/lib/private/DB/QueryBuilder/Sharded/ShardConnectionManager.php',  | 
                                                        |
| 1514 | - 'OC\\DB\\QueryBuilder\\Sharded\\ShardDefinition' => $baseDir . '/lib/private/DB/QueryBuilder/Sharded/ShardDefinition.php',  | 
                                                        |
| 1515 | - 'OC\\DB\\QueryBuilder\\Sharded\\ShardQueryRunner' => $baseDir . '/lib/private/DB/QueryBuilder/Sharded/ShardQueryRunner.php',  | 
                                                        |
| 1516 | - 'OC\\DB\\QueryBuilder\\Sharded\\ShardedQueryBuilder' => $baseDir . '/lib/private/DB/QueryBuilder/Sharded/ShardedQueryBuilder.php',  | 
                                                        |
| 1517 | - 'OC\\DB\\ResultAdapter' => $baseDir . '/lib/private/DB/ResultAdapter.php',  | 
                                                        |
| 1518 | - 'OC\\DB\\SQLiteMigrator' => $baseDir . '/lib/private/DB/SQLiteMigrator.php',  | 
                                                        |
| 1519 | - 'OC\\DB\\SQLiteSessionInit' => $baseDir . '/lib/private/DB/SQLiteSessionInit.php',  | 
                                                        |
| 1520 | - 'OC\\DB\\SchemaWrapper' => $baseDir . '/lib/private/DB/SchemaWrapper.php',  | 
                                                        |
| 1521 | - 'OC\\DB\\SetTransactionIsolationLevel' => $baseDir . '/lib/private/DB/SetTransactionIsolationLevel.php',  | 
                                                        |
| 1522 | - 'OC\\Dashboard\\Manager' => $baseDir . '/lib/private/Dashboard/Manager.php',  | 
                                                        |
| 1523 | - 'OC\\DatabaseException' => $baseDir . '/lib/private/DatabaseException.php',  | 
                                                        |
| 1524 | - 'OC\\DatabaseSetupException' => $baseDir . '/lib/private/DatabaseSetupException.php',  | 
                                                        |
| 1525 | - 'OC\\DateTimeFormatter' => $baseDir . '/lib/private/DateTimeFormatter.php',  | 
                                                        |
| 1526 | - 'OC\\DateTimeZone' => $baseDir . '/lib/private/DateTimeZone.php',  | 
                                                        |
| 1527 | - 'OC\\Diagnostics\\Event' => $baseDir . '/lib/private/Diagnostics/Event.php',  | 
                                                        |
| 1528 | - 'OC\\Diagnostics\\EventLogger' => $baseDir . '/lib/private/Diagnostics/EventLogger.php',  | 
                                                        |
| 1529 | - 'OC\\Diagnostics\\Query' => $baseDir . '/lib/private/Diagnostics/Query.php',  | 
                                                        |
| 1530 | - 'OC\\Diagnostics\\QueryLogger' => $baseDir . '/lib/private/Diagnostics/QueryLogger.php',  | 
                                                        |
| 1531 | - 'OC\\DirectEditing\\Manager' => $baseDir . '/lib/private/DirectEditing/Manager.php',  | 
                                                        |
| 1532 | - 'OC\\DirectEditing\\Token' => $baseDir . '/lib/private/DirectEditing/Token.php',  | 
                                                        |
| 1533 | - 'OC\\EmojiHelper' => $baseDir . '/lib/private/EmojiHelper.php',  | 
                                                        |
| 1534 | - 'OC\\Encryption\\DecryptAll' => $baseDir . '/lib/private/Encryption/DecryptAll.php',  | 
                                                        |
| 1535 | - 'OC\\Encryption\\EncryptionWrapper' => $baseDir . '/lib/private/Encryption/EncryptionWrapper.php',  | 
                                                        |
| 1536 | - 'OC\\Encryption\\Exceptions\\DecryptionFailedException' => $baseDir . '/lib/private/Encryption/Exceptions/DecryptionFailedException.php',  | 
                                                        |
| 1537 | - 'OC\\Encryption\\Exceptions\\EmptyEncryptionDataException' => $baseDir . '/lib/private/Encryption/Exceptions/EmptyEncryptionDataException.php',  | 
                                                        |
| 1538 | - 'OC\\Encryption\\Exceptions\\EncryptionFailedException' => $baseDir . '/lib/private/Encryption/Exceptions/EncryptionFailedException.php',  | 
                                                        |
| 1539 | - 'OC\\Encryption\\Exceptions\\EncryptionHeaderKeyExistsException' => $baseDir . '/lib/private/Encryption/Exceptions/EncryptionHeaderKeyExistsException.php',  | 
                                                        |
| 1540 | - 'OC\\Encryption\\Exceptions\\EncryptionHeaderToLargeException' => $baseDir . '/lib/private/Encryption/Exceptions/EncryptionHeaderToLargeException.php',  | 
                                                        |
| 1541 | - 'OC\\Encryption\\Exceptions\\ModuleAlreadyExistsException' => $baseDir . '/lib/private/Encryption/Exceptions/ModuleAlreadyExistsException.php',  | 
                                                        |
| 1542 | - 'OC\\Encryption\\Exceptions\\ModuleDoesNotExistsException' => $baseDir . '/lib/private/Encryption/Exceptions/ModuleDoesNotExistsException.php',  | 
                                                        |
| 1543 | - 'OC\\Encryption\\Exceptions\\UnknownCipherException' => $baseDir . '/lib/private/Encryption/Exceptions/UnknownCipherException.php',  | 
                                                        |
| 1544 | - 'OC\\Encryption\\File' => $baseDir . '/lib/private/Encryption/File.php',  | 
                                                        |
| 1545 | - 'OC\\Encryption\\HookManager' => $baseDir . '/lib/private/Encryption/HookManager.php',  | 
                                                        |
| 1546 | - 'OC\\Encryption\\Keys\\Storage' => $baseDir . '/lib/private/Encryption/Keys/Storage.php',  | 
                                                        |
| 1547 | - 'OC\\Encryption\\Manager' => $baseDir . '/lib/private/Encryption/Manager.php',  | 
                                                        |
| 1548 | - 'OC\\Encryption\\Update' => $baseDir . '/lib/private/Encryption/Update.php',  | 
                                                        |
| 1549 | - 'OC\\Encryption\\Util' => $baseDir . '/lib/private/Encryption/Util.php',  | 
                                                        |
| 1550 | - 'OC\\EventDispatcher\\EventDispatcher' => $baseDir . '/lib/private/EventDispatcher/EventDispatcher.php',  | 
                                                        |
| 1551 | - 'OC\\EventDispatcher\\ServiceEventListener' => $baseDir . '/lib/private/EventDispatcher/ServiceEventListener.php',  | 
                                                        |
| 1552 | - 'OC\\EventSource' => $baseDir . '/lib/private/EventSource.php',  | 
                                                        |
| 1553 | - 'OC\\EventSourceFactory' => $baseDir . '/lib/private/EventSourceFactory.php',  | 
                                                        |
| 1554 | - 'OC\\Federation\\CloudFederationFactory' => $baseDir . '/lib/private/Federation/CloudFederationFactory.php',  | 
                                                        |
| 1555 | - 'OC\\Federation\\CloudFederationNotification' => $baseDir . '/lib/private/Federation/CloudFederationNotification.php',  | 
                                                        |
| 1556 | - 'OC\\Federation\\CloudFederationProviderManager' => $baseDir . '/lib/private/Federation/CloudFederationProviderManager.php',  | 
                                                        |
| 1557 | - 'OC\\Federation\\CloudFederationShare' => $baseDir . '/lib/private/Federation/CloudFederationShare.php',  | 
                                                        |
| 1558 | - 'OC\\Federation\\CloudId' => $baseDir . '/lib/private/Federation/CloudId.php',  | 
                                                        |
| 1559 | - 'OC\\Federation\\CloudIdManager' => $baseDir . '/lib/private/Federation/CloudIdManager.php',  | 
                                                        |
| 1560 | - 'OC\\FilesMetadata\\FilesMetadataManager' => $baseDir . '/lib/private/FilesMetadata/FilesMetadataManager.php',  | 
                                                        |
| 1561 | - 'OC\\FilesMetadata\\Job\\UpdateSingleMetadata' => $baseDir . '/lib/private/FilesMetadata/Job/UpdateSingleMetadata.php',  | 
                                                        |
| 1562 | - 'OC\\FilesMetadata\\Listener\\MetadataDelete' => $baseDir . '/lib/private/FilesMetadata/Listener/MetadataDelete.php',  | 
                                                        |
| 1563 | - 'OC\\FilesMetadata\\Listener\\MetadataUpdate' => $baseDir . '/lib/private/FilesMetadata/Listener/MetadataUpdate.php',  | 
                                                        |
| 1564 | - 'OC\\FilesMetadata\\MetadataQuery' => $baseDir . '/lib/private/FilesMetadata/MetadataQuery.php',  | 
                                                        |
| 1565 | - 'OC\\FilesMetadata\\Model\\FilesMetadata' => $baseDir . '/lib/private/FilesMetadata/Model/FilesMetadata.php',  | 
                                                        |
| 1566 | - 'OC\\FilesMetadata\\Model\\MetadataValueWrapper' => $baseDir . '/lib/private/FilesMetadata/Model/MetadataValueWrapper.php',  | 
                                                        |
| 1567 | - 'OC\\FilesMetadata\\Service\\IndexRequestService' => $baseDir . '/lib/private/FilesMetadata/Service/IndexRequestService.php',  | 
                                                        |
| 1568 | - 'OC\\FilesMetadata\\Service\\MetadataRequestService' => $baseDir . '/lib/private/FilesMetadata/Service/MetadataRequestService.php',  | 
                                                        |
| 1569 | - 'OC\\Files\\AppData\\AppData' => $baseDir . '/lib/private/Files/AppData/AppData.php',  | 
                                                        |
| 1570 | - 'OC\\Files\\AppData\\Factory' => $baseDir . '/lib/private/Files/AppData/Factory.php',  | 
                                                        |
| 1571 | - 'OC\\Files\\Cache\\Cache' => $baseDir . '/lib/private/Files/Cache/Cache.php',  | 
                                                        |
| 1572 | - 'OC\\Files\\Cache\\CacheDependencies' => $baseDir . '/lib/private/Files/Cache/CacheDependencies.php',  | 
                                                        |
| 1573 | - 'OC\\Files\\Cache\\CacheEntry' => $baseDir . '/lib/private/Files/Cache/CacheEntry.php',  | 
                                                        |
| 1574 | - 'OC\\Files\\Cache\\CacheQueryBuilder' => $baseDir . '/lib/private/Files/Cache/CacheQueryBuilder.php',  | 
                                                        |
| 1575 | - 'OC\\Files\\Cache\\FailedCache' => $baseDir . '/lib/private/Files/Cache/FailedCache.php',  | 
                                                        |
| 1576 | - 'OC\\Files\\Cache\\FileAccess' => $baseDir . '/lib/private/Files/Cache/FileAccess.php',  | 
                                                        |
| 1577 | - 'OC\\Files\\Cache\\HomeCache' => $baseDir . '/lib/private/Files/Cache/HomeCache.php',  | 
                                                        |
| 1578 | - 'OC\\Files\\Cache\\HomePropagator' => $baseDir . '/lib/private/Files/Cache/HomePropagator.php',  | 
                                                        |
| 1579 | - 'OC\\Files\\Cache\\LocalRootScanner' => $baseDir . '/lib/private/Files/Cache/LocalRootScanner.php',  | 
                                                        |
| 1580 | - 'OC\\Files\\Cache\\MoveFromCacheTrait' => $baseDir . '/lib/private/Files/Cache/MoveFromCacheTrait.php',  | 
                                                        |
| 1581 | - 'OC\\Files\\Cache\\NullWatcher' => $baseDir . '/lib/private/Files/Cache/NullWatcher.php',  | 
                                                        |
| 1582 | - 'OC\\Files\\Cache\\Propagator' => $baseDir . '/lib/private/Files/Cache/Propagator.php',  | 
                                                        |
| 1583 | - 'OC\\Files\\Cache\\QuerySearchHelper' => $baseDir . '/lib/private/Files/Cache/QuerySearchHelper.php',  | 
                                                        |
| 1584 | - 'OC\\Files\\Cache\\Scanner' => $baseDir . '/lib/private/Files/Cache/Scanner.php',  | 
                                                        |
| 1585 | - 'OC\\Files\\Cache\\SearchBuilder' => $baseDir . '/lib/private/Files/Cache/SearchBuilder.php',  | 
                                                        |
| 1586 | - 'OC\\Files\\Cache\\Storage' => $baseDir . '/lib/private/Files/Cache/Storage.php',  | 
                                                        |
| 1587 | - 'OC\\Files\\Cache\\StorageGlobal' => $baseDir . '/lib/private/Files/Cache/StorageGlobal.php',  | 
                                                        |
| 1588 | - 'OC\\Files\\Cache\\Updater' => $baseDir . '/lib/private/Files/Cache/Updater.php',  | 
                                                        |
| 1589 | - 'OC\\Files\\Cache\\Watcher' => $baseDir . '/lib/private/Files/Cache/Watcher.php',  | 
                                                        |
| 1590 | - 'OC\\Files\\Cache\\Wrapper\\CacheJail' => $baseDir . '/lib/private/Files/Cache/Wrapper/CacheJail.php',  | 
                                                        |
| 1591 | - 'OC\\Files\\Cache\\Wrapper\\CachePermissionsMask' => $baseDir . '/lib/private/Files/Cache/Wrapper/CachePermissionsMask.php',  | 
                                                        |
| 1592 | - 'OC\\Files\\Cache\\Wrapper\\CacheWrapper' => $baseDir . '/lib/private/Files/Cache/Wrapper/CacheWrapper.php',  | 
                                                        |
| 1593 | - 'OC\\Files\\Cache\\Wrapper\\JailPropagator' => $baseDir . '/lib/private/Files/Cache/Wrapper/JailPropagator.php',  | 
                                                        |
| 1594 | - 'OC\\Files\\Cache\\Wrapper\\JailWatcher' => $baseDir . '/lib/private/Files/Cache/Wrapper/JailWatcher.php',  | 
                                                        |
| 1595 | - 'OC\\Files\\Config\\CachedMountFileInfo' => $baseDir . '/lib/private/Files/Config/CachedMountFileInfo.php',  | 
                                                        |
| 1596 | - 'OC\\Files\\Config\\CachedMountInfo' => $baseDir . '/lib/private/Files/Config/CachedMountInfo.php',  | 
                                                        |
| 1597 | - 'OC\\Files\\Config\\LazyPathCachedMountInfo' => $baseDir . '/lib/private/Files/Config/LazyPathCachedMountInfo.php',  | 
                                                        |
| 1598 | - 'OC\\Files\\Config\\LazyStorageMountInfo' => $baseDir . '/lib/private/Files/Config/LazyStorageMountInfo.php',  | 
                                                        |
| 1599 | - 'OC\\Files\\Config\\MountProviderCollection' => $baseDir . '/lib/private/Files/Config/MountProviderCollection.php',  | 
                                                        |
| 1600 | - 'OC\\Files\\Config\\UserMountCache' => $baseDir . '/lib/private/Files/Config/UserMountCache.php',  | 
                                                        |
| 1601 | - 'OC\\Files\\Config\\UserMountCacheListener' => $baseDir . '/lib/private/Files/Config/UserMountCacheListener.php',  | 
                                                        |
| 1602 | - 'OC\\Files\\Conversion\\ConversionManager' => $baseDir . '/lib/private/Files/Conversion/ConversionManager.php',  | 
                                                        |
| 1603 | - 'OC\\Files\\FileInfo' => $baseDir . '/lib/private/Files/FileInfo.php',  | 
                                                        |
| 1604 | - 'OC\\Files\\FilenameValidator' => $baseDir . '/lib/private/Files/FilenameValidator.php',  | 
                                                        |
| 1605 | - 'OC\\Files\\Filesystem' => $baseDir . '/lib/private/Files/Filesystem.php',  | 
                                                        |
| 1606 | - 'OC\\Files\\Lock\\LockManager' => $baseDir . '/lib/private/Files/Lock/LockManager.php',  | 
                                                        |
| 1607 | - 'OC\\Files\\Mount\\CacheMountProvider' => $baseDir . '/lib/private/Files/Mount/CacheMountProvider.php',  | 
                                                        |
| 1608 | - 'OC\\Files\\Mount\\HomeMountPoint' => $baseDir . '/lib/private/Files/Mount/HomeMountPoint.php',  | 
                                                        |
| 1609 | - 'OC\\Files\\Mount\\LocalHomeMountProvider' => $baseDir . '/lib/private/Files/Mount/LocalHomeMountProvider.php',  | 
                                                        |
| 1610 | - 'OC\\Files\\Mount\\Manager' => $baseDir . '/lib/private/Files/Mount/Manager.php',  | 
                                                        |
| 1611 | - 'OC\\Files\\Mount\\MountPoint' => $baseDir . '/lib/private/Files/Mount/MountPoint.php',  | 
                                                        |
| 1612 | - 'OC\\Files\\Mount\\MoveableMount' => $baseDir . '/lib/private/Files/Mount/MoveableMount.php',  | 
                                                        |
| 1613 | - 'OC\\Files\\Mount\\ObjectHomeMountProvider' => $baseDir . '/lib/private/Files/Mount/ObjectHomeMountProvider.php',  | 
                                                        |
| 1614 | - 'OC\\Files\\Mount\\ObjectStorePreviewCacheMountProvider' => $baseDir . '/lib/private/Files/Mount/ObjectStorePreviewCacheMountProvider.php',  | 
                                                        |
| 1615 | - 'OC\\Files\\Mount\\RootMountProvider' => $baseDir . '/lib/private/Files/Mount/RootMountProvider.php',  | 
                                                        |
| 1616 | - 'OC\\Files\\Node\\File' => $baseDir . '/lib/private/Files/Node/File.php',  | 
                                                        |
| 1617 | - 'OC\\Files\\Node\\Folder' => $baseDir . '/lib/private/Files/Node/Folder.php',  | 
                                                        |
| 1618 | - 'OC\\Files\\Node\\HookConnector' => $baseDir . '/lib/private/Files/Node/HookConnector.php',  | 
                                                        |
| 1619 | - 'OC\\Files\\Node\\LazyFolder' => $baseDir . '/lib/private/Files/Node/LazyFolder.php',  | 
                                                        |
| 1620 | - 'OC\\Files\\Node\\LazyRoot' => $baseDir . '/lib/private/Files/Node/LazyRoot.php',  | 
                                                        |
| 1621 | - 'OC\\Files\\Node\\LazyUserFolder' => $baseDir . '/lib/private/Files/Node/LazyUserFolder.php',  | 
                                                        |
| 1622 | - 'OC\\Files\\Node\\Node' => $baseDir . '/lib/private/Files/Node/Node.php',  | 
                                                        |
| 1623 | - 'OC\\Files\\Node\\NonExistingFile' => $baseDir . '/lib/private/Files/Node/NonExistingFile.php',  | 
                                                        |
| 1624 | - 'OC\\Files\\Node\\NonExistingFolder' => $baseDir . '/lib/private/Files/Node/NonExistingFolder.php',  | 
                                                        |
| 1625 | - 'OC\\Files\\Node\\Root' => $baseDir . '/lib/private/Files/Node/Root.php',  | 
                                                        |
| 1626 | - 'OC\\Files\\Notify\\Change' => $baseDir . '/lib/private/Files/Notify/Change.php',  | 
                                                        |
| 1627 | - 'OC\\Files\\Notify\\RenameChange' => $baseDir . '/lib/private/Files/Notify/RenameChange.php',  | 
                                                        |
| 1628 | - 'OC\\Files\\ObjectStore\\AppdataPreviewObjectStoreStorage' => $baseDir . '/lib/private/Files/ObjectStore/AppdataPreviewObjectStoreStorage.php',  | 
                                                        |
| 1629 | - 'OC\\Files\\ObjectStore\\Azure' => $baseDir . '/lib/private/Files/ObjectStore/Azure.php',  | 
                                                        |
| 1630 | - 'OC\\Files\\ObjectStore\\HomeObjectStoreStorage' => $baseDir . '/lib/private/Files/ObjectStore/HomeObjectStoreStorage.php',  | 
                                                        |
| 1631 | - 'OC\\Files\\ObjectStore\\Mapper' => $baseDir . '/lib/private/Files/ObjectStore/Mapper.php',  | 
                                                        |
| 1632 | - 'OC\\Files\\ObjectStore\\ObjectStoreScanner' => $baseDir . '/lib/private/Files/ObjectStore/ObjectStoreScanner.php',  | 
                                                        |
| 1633 | - 'OC\\Files\\ObjectStore\\ObjectStoreStorage' => $baseDir . '/lib/private/Files/ObjectStore/ObjectStoreStorage.php',  | 
                                                        |
| 1634 | - 'OC\\Files\\ObjectStore\\S3' => $baseDir . '/lib/private/Files/ObjectStore/S3.php',  | 
                                                        |
| 1635 | - 'OC\\Files\\ObjectStore\\S3ConfigTrait' => $baseDir . '/lib/private/Files/ObjectStore/S3ConfigTrait.php',  | 
                                                        |
| 1636 | - 'OC\\Files\\ObjectStore\\S3ConnectionTrait' => $baseDir . '/lib/private/Files/ObjectStore/S3ConnectionTrait.php',  | 
                                                        |
| 1637 | - 'OC\\Files\\ObjectStore\\S3ObjectTrait' => $baseDir . '/lib/private/Files/ObjectStore/S3ObjectTrait.php',  | 
                                                        |
| 1638 | - 'OC\\Files\\ObjectStore\\S3Signature' => $baseDir . '/lib/private/Files/ObjectStore/S3Signature.php',  | 
                                                        |
| 1639 | - 'OC\\Files\\ObjectStore\\StorageObjectStore' => $baseDir . '/lib/private/Files/ObjectStore/StorageObjectStore.php',  | 
                                                        |
| 1640 | - 'OC\\Files\\ObjectStore\\Swift' => $baseDir . '/lib/private/Files/ObjectStore/Swift.php',  | 
                                                        |
| 1641 | - 'OC\\Files\\ObjectStore\\SwiftFactory' => $baseDir . '/lib/private/Files/ObjectStore/SwiftFactory.php',  | 
                                                        |
| 1642 | - 'OC\\Files\\ObjectStore\\SwiftV2CachingAuthService' => $baseDir . '/lib/private/Files/ObjectStore/SwiftV2CachingAuthService.php',  | 
                                                        |
| 1643 | - 'OC\\Files\\Search\\QueryOptimizer\\FlattenNestedBool' => $baseDir . '/lib/private/Files/Search/QueryOptimizer/FlattenNestedBool.php',  | 
                                                        |
| 1644 | - 'OC\\Files\\Search\\QueryOptimizer\\FlattenSingleArgumentBinaryOperation' => $baseDir . '/lib/private/Files/Search/QueryOptimizer/FlattenSingleArgumentBinaryOperation.php',  | 
                                                        |
| 1645 | - 'OC\\Files\\Search\\QueryOptimizer\\MergeDistributiveOperations' => $baseDir . '/lib/private/Files/Search/QueryOptimizer/MergeDistributiveOperations.php',  | 
                                                        |
| 1646 | - 'OC\\Files\\Search\\QueryOptimizer\\OrEqualsToIn' => $baseDir . '/lib/private/Files/Search/QueryOptimizer/OrEqualsToIn.php',  | 
                                                        |
| 1647 | - 'OC\\Files\\Search\\QueryOptimizer\\PathPrefixOptimizer' => $baseDir . '/lib/private/Files/Search/QueryOptimizer/PathPrefixOptimizer.php',  | 
                                                        |
| 1648 | - 'OC\\Files\\Search\\QueryOptimizer\\QueryOptimizer' => $baseDir . '/lib/private/Files/Search/QueryOptimizer/QueryOptimizer.php',  | 
                                                        |
| 1649 | - 'OC\\Files\\Search\\QueryOptimizer\\QueryOptimizerStep' => $baseDir . '/lib/private/Files/Search/QueryOptimizer/QueryOptimizerStep.php',  | 
                                                        |
| 1650 | - 'OC\\Files\\Search\\QueryOptimizer\\ReplacingOptimizerStep' => $baseDir . '/lib/private/Files/Search/QueryOptimizer/ReplacingOptimizerStep.php',  | 
                                                        |
| 1651 | - 'OC\\Files\\Search\\QueryOptimizer\\SplitLargeIn' => $baseDir . '/lib/private/Files/Search/QueryOptimizer/SplitLargeIn.php',  | 
                                                        |
| 1652 | - 'OC\\Files\\Search\\SearchBinaryOperator' => $baseDir . '/lib/private/Files/Search/SearchBinaryOperator.php',  | 
                                                        |
| 1653 | - 'OC\\Files\\Search\\SearchComparison' => $baseDir . '/lib/private/Files/Search/SearchComparison.php',  | 
                                                        |
| 1654 | - 'OC\\Files\\Search\\SearchOrder' => $baseDir . '/lib/private/Files/Search/SearchOrder.php',  | 
                                                        |
| 1655 | - 'OC\\Files\\Search\\SearchQuery' => $baseDir . '/lib/private/Files/Search/SearchQuery.php',  | 
                                                        |
| 1656 | - 'OC\\Files\\SetupManager' => $baseDir . '/lib/private/Files/SetupManager.php',  | 
                                                        |
| 1657 | - 'OC\\Files\\SetupManagerFactory' => $baseDir . '/lib/private/Files/SetupManagerFactory.php',  | 
                                                        |
| 1658 | - 'OC\\Files\\SimpleFS\\NewSimpleFile' => $baseDir . '/lib/private/Files/SimpleFS/NewSimpleFile.php',  | 
                                                        |
| 1659 | - 'OC\\Files\\SimpleFS\\SimpleFile' => $baseDir . '/lib/private/Files/SimpleFS/SimpleFile.php',  | 
                                                        |
| 1660 | - 'OC\\Files\\SimpleFS\\SimpleFolder' => $baseDir . '/lib/private/Files/SimpleFS/SimpleFolder.php',  | 
                                                        |
| 1661 | - 'OC\\Files\\Storage\\Common' => $baseDir . '/lib/private/Files/Storage/Common.php',  | 
                                                        |
| 1662 | - 'OC\\Files\\Storage\\CommonTest' => $baseDir . '/lib/private/Files/Storage/CommonTest.php',  | 
                                                        |
| 1663 | - 'OC\\Files\\Storage\\DAV' => $baseDir . '/lib/private/Files/Storage/DAV.php',  | 
                                                        |
| 1664 | - 'OC\\Files\\Storage\\FailedStorage' => $baseDir . '/lib/private/Files/Storage/FailedStorage.php',  | 
                                                        |
| 1665 | - 'OC\\Files\\Storage\\Home' => $baseDir . '/lib/private/Files/Storage/Home.php',  | 
                                                        |
| 1666 | - 'OC\\Files\\Storage\\Local' => $baseDir . '/lib/private/Files/Storage/Local.php',  | 
                                                        |
| 1667 | - 'OC\\Files\\Storage\\LocalRootStorage' => $baseDir . '/lib/private/Files/Storage/LocalRootStorage.php',  | 
                                                        |
| 1668 | - 'OC\\Files\\Storage\\LocalTempFileTrait' => $baseDir . '/lib/private/Files/Storage/LocalTempFileTrait.php',  | 
                                                        |
| 1669 | - 'OC\\Files\\Storage\\PolyFill\\CopyDirectory' => $baseDir . '/lib/private/Files/Storage/PolyFill/CopyDirectory.php',  | 
                                                        |
| 1670 | - 'OC\\Files\\Storage\\Storage' => $baseDir . '/lib/private/Files/Storage/Storage.php',  | 
                                                        |
| 1671 | - 'OC\\Files\\Storage\\StorageFactory' => $baseDir . '/lib/private/Files/Storage/StorageFactory.php',  | 
                                                        |
| 1672 | - 'OC\\Files\\Storage\\Temporary' => $baseDir . '/lib/private/Files/Storage/Temporary.php',  | 
                                                        |
| 1673 | - 'OC\\Files\\Storage\\Wrapper\\Availability' => $baseDir . '/lib/private/Files/Storage/Wrapper/Availability.php',  | 
                                                        |
| 1674 | - 'OC\\Files\\Storage\\Wrapper\\Encoding' => $baseDir . '/lib/private/Files/Storage/Wrapper/Encoding.php',  | 
                                                        |
| 1675 | - 'OC\\Files\\Storage\\Wrapper\\EncodingDirectoryWrapper' => $baseDir . '/lib/private/Files/Storage/Wrapper/EncodingDirectoryWrapper.php',  | 
                                                        |
| 1676 | - 'OC\\Files\\Storage\\Wrapper\\Encryption' => $baseDir . '/lib/private/Files/Storage/Wrapper/Encryption.php',  | 
                                                        |
| 1677 | - 'OC\\Files\\Storage\\Wrapper\\Jail' => $baseDir . '/lib/private/Files/Storage/Wrapper/Jail.php',  | 
                                                        |
| 1678 | - 'OC\\Files\\Storage\\Wrapper\\KnownMtime' => $baseDir . '/lib/private/Files/Storage/Wrapper/KnownMtime.php',  | 
                                                        |
| 1679 | - 'OC\\Files\\Storage\\Wrapper\\PermissionsMask' => $baseDir . '/lib/private/Files/Storage/Wrapper/PermissionsMask.php',  | 
                                                        |
| 1680 | - 'OC\\Files\\Storage\\Wrapper\\Quota' => $baseDir . '/lib/private/Files/Storage/Wrapper/Quota.php',  | 
                                                        |
| 1681 | - 'OC\\Files\\Storage\\Wrapper\\Wrapper' => $baseDir . '/lib/private/Files/Storage/Wrapper/Wrapper.php',  | 
                                                        |
| 1682 | - 'OC\\Files\\Stream\\Encryption' => $baseDir . '/lib/private/Files/Stream/Encryption.php',  | 
                                                        |
| 1683 | - 'OC\\Files\\Stream\\HashWrapper' => $baseDir . '/lib/private/Files/Stream/HashWrapper.php',  | 
                                                        |
| 1684 | - 'OC\\Files\\Stream\\Quota' => $baseDir . '/lib/private/Files/Stream/Quota.php',  | 
                                                        |
| 1685 | - 'OC\\Files\\Stream\\SeekableHttpStream' => $baseDir . '/lib/private/Files/Stream/SeekableHttpStream.php',  | 
                                                        |
| 1686 | - 'OC\\Files\\Template\\TemplateManager' => $baseDir . '/lib/private/Files/Template/TemplateManager.php',  | 
                                                        |
| 1687 | - 'OC\\Files\\Type\\Detection' => $baseDir . '/lib/private/Files/Type/Detection.php',  | 
                                                        |
| 1688 | - 'OC\\Files\\Type\\Loader' => $baseDir . '/lib/private/Files/Type/Loader.php',  | 
                                                        |
| 1689 | - 'OC\\Files\\Type\\TemplateManager' => $baseDir . '/lib/private/Files/Type/TemplateManager.php',  | 
                                                        |
| 1690 | - 'OC\\Files\\Utils\\PathHelper' => $baseDir . '/lib/private/Files/Utils/PathHelper.php',  | 
                                                        |
| 1691 | - 'OC\\Files\\Utils\\Scanner' => $baseDir . '/lib/private/Files/Utils/Scanner.php',  | 
                                                        |
| 1692 | - 'OC\\Files\\View' => $baseDir . '/lib/private/Files/View.php',  | 
                                                        |
| 1693 | - 'OC\\ForbiddenException' => $baseDir . '/lib/private/ForbiddenException.php',  | 
                                                        |
| 1694 | - 'OC\\FullTextSearch\\FullTextSearchManager' => $baseDir . '/lib/private/FullTextSearch/FullTextSearchManager.php',  | 
                                                        |
| 1695 | - 'OC\\FullTextSearch\\Model\\DocumentAccess' => $baseDir . '/lib/private/FullTextSearch/Model/DocumentAccess.php',  | 
                                                        |
| 1696 | - 'OC\\FullTextSearch\\Model\\IndexDocument' => $baseDir . '/lib/private/FullTextSearch/Model/IndexDocument.php',  | 
                                                        |
| 1697 | - 'OC\\FullTextSearch\\Model\\SearchOption' => $baseDir . '/lib/private/FullTextSearch/Model/SearchOption.php',  | 
                                                        |
| 1698 | - 'OC\\FullTextSearch\\Model\\SearchRequestSimpleQuery' => $baseDir . '/lib/private/FullTextSearch/Model/SearchRequestSimpleQuery.php',  | 
                                                        |
| 1699 | - 'OC\\FullTextSearch\\Model\\SearchTemplate' => $baseDir . '/lib/private/FullTextSearch/Model/SearchTemplate.php',  | 
                                                        |
| 1700 | - 'OC\\GlobalScale\\Config' => $baseDir . '/lib/private/GlobalScale/Config.php',  | 
                                                        |
| 1701 | - 'OC\\Group\\Backend' => $baseDir . '/lib/private/Group/Backend.php',  | 
                                                        |
| 1702 | - 'OC\\Group\\Database' => $baseDir . '/lib/private/Group/Database.php',  | 
                                                        |
| 1703 | - 'OC\\Group\\DisplayNameCache' => $baseDir . '/lib/private/Group/DisplayNameCache.php',  | 
                                                        |
| 1704 | - 'OC\\Group\\Group' => $baseDir . '/lib/private/Group/Group.php',  | 
                                                        |
| 1705 | - 'OC\\Group\\Manager' => $baseDir . '/lib/private/Group/Manager.php',  | 
                                                        |
| 1706 | - 'OC\\Group\\MetaData' => $baseDir . '/lib/private/Group/MetaData.php',  | 
                                                        |
| 1707 | - 'OC\\HintException' => $baseDir . '/lib/private/HintException.php',  | 
                                                        |
| 1708 | - 'OC\\Hooks\\BasicEmitter' => $baseDir . '/lib/private/Hooks/BasicEmitter.php',  | 
                                                        |
| 1709 | - 'OC\\Hooks\\Emitter' => $baseDir . '/lib/private/Hooks/Emitter.php',  | 
                                                        |
| 1710 | - 'OC\\Hooks\\EmitterTrait' => $baseDir . '/lib/private/Hooks/EmitterTrait.php',  | 
                                                        |
| 1711 | - 'OC\\Hooks\\PublicEmitter' => $baseDir . '/lib/private/Hooks/PublicEmitter.php',  | 
                                                        |
| 1712 | - 'OC\\Http\\Client\\Client' => $baseDir . '/lib/private/Http/Client/Client.php',  | 
                                                        |
| 1713 | - 'OC\\Http\\Client\\ClientService' => $baseDir . '/lib/private/Http/Client/ClientService.php',  | 
                                                        |
| 1714 | - 'OC\\Http\\Client\\DnsPinMiddleware' => $baseDir . '/lib/private/Http/Client/DnsPinMiddleware.php',  | 
                                                        |
| 1715 | - 'OC\\Http\\Client\\GuzzlePromiseAdapter' => $baseDir . '/lib/private/Http/Client/GuzzlePromiseAdapter.php',  | 
                                                        |
| 1716 | - 'OC\\Http\\Client\\NegativeDnsCache' => $baseDir . '/lib/private/Http/Client/NegativeDnsCache.php',  | 
                                                        |
| 1717 | - 'OC\\Http\\Client\\Response' => $baseDir . '/lib/private/Http/Client/Response.php',  | 
                                                        |
| 1718 | - 'OC\\Http\\CookieHelper' => $baseDir . '/lib/private/Http/CookieHelper.php',  | 
                                                        |
| 1719 | - 'OC\\Http\\WellKnown\\RequestManager' => $baseDir . '/lib/private/Http/WellKnown/RequestManager.php',  | 
                                                        |
| 1720 | - 'OC\\Image' => $baseDir . '/lib/private/Image.php',  | 
                                                        |
| 1721 | - 'OC\\InitialStateService' => $baseDir . '/lib/private/InitialStateService.php',  | 
                                                        |
| 1722 | - 'OC\\Installer' => $baseDir . '/lib/private/Installer.php',  | 
                                                        |
| 1723 | - 'OC\\IntegrityCheck\\Checker' => $baseDir . '/lib/private/IntegrityCheck/Checker.php',  | 
                                                        |
| 1724 | - 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException' => $baseDir . '/lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php',  | 
                                                        |
| 1725 | - 'OC\\IntegrityCheck\\Helpers\\AppLocator' => $baseDir . '/lib/private/IntegrityCheck/Helpers/AppLocator.php',  | 
                                                        |
| 1726 | - 'OC\\IntegrityCheck\\Helpers\\EnvironmentHelper' => $baseDir . '/lib/private/IntegrityCheck/Helpers/EnvironmentHelper.php',  | 
                                                        |
| 1727 | - 'OC\\IntegrityCheck\\Helpers\\FileAccessHelper' => $baseDir . '/lib/private/IntegrityCheck/Helpers/FileAccessHelper.php',  | 
                                                        |
| 1728 | - 'OC\\IntegrityCheck\\Iterator\\ExcludeFileByNameFilterIterator' => $baseDir . '/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php',  | 
                                                        |
| 1729 | - 'OC\\IntegrityCheck\\Iterator\\ExcludeFoldersByPathFilterIterator' => $baseDir . '/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php',  | 
                                                        |
| 1730 | - 'OC\\KnownUser\\KnownUser' => $baseDir . '/lib/private/KnownUser/KnownUser.php',  | 
                                                        |
| 1731 | - 'OC\\KnownUser\\KnownUserMapper' => $baseDir . '/lib/private/KnownUser/KnownUserMapper.php',  | 
                                                        |
| 1732 | - 'OC\\KnownUser\\KnownUserService' => $baseDir . '/lib/private/KnownUser/KnownUserService.php',  | 
                                                        |
| 1733 | - 'OC\\L10N\\Factory' => $baseDir . '/lib/private/L10N/Factory.php',  | 
                                                        |
| 1734 | - 'OC\\L10N\\L10N' => $baseDir . '/lib/private/L10N/L10N.php',  | 
                                                        |
| 1735 | - 'OC\\L10N\\L10NString' => $baseDir . '/lib/private/L10N/L10NString.php',  | 
                                                        |
| 1736 | - 'OC\\L10N\\LanguageIterator' => $baseDir . '/lib/private/L10N/LanguageIterator.php',  | 
                                                        |
| 1737 | - 'OC\\L10N\\LanguageNotFoundException' => $baseDir . '/lib/private/L10N/LanguageNotFoundException.php',  | 
                                                        |
| 1738 | - 'OC\\L10N\\LazyL10N' => $baseDir . '/lib/private/L10N/LazyL10N.php',  | 
                                                        |
| 1739 | - 'OC\\LDAP\\NullLDAPProviderFactory' => $baseDir . '/lib/private/LDAP/NullLDAPProviderFactory.php',  | 
                                                        |
| 1740 | - 'OC\\LargeFileHelper' => $baseDir . '/lib/private/LargeFileHelper.php',  | 
                                                        |
| 1741 | - 'OC\\Lock\\AbstractLockingProvider' => $baseDir . '/lib/private/Lock/AbstractLockingProvider.php',  | 
                                                        |
| 1742 | - 'OC\\Lock\\DBLockingProvider' => $baseDir . '/lib/private/Lock/DBLockingProvider.php',  | 
                                                        |
| 1743 | - 'OC\\Lock\\MemcacheLockingProvider' => $baseDir . '/lib/private/Lock/MemcacheLockingProvider.php',  | 
                                                        |
| 1744 | - 'OC\\Lock\\NoopLockingProvider' => $baseDir . '/lib/private/Lock/NoopLockingProvider.php',  | 
                                                        |
| 1745 | - 'OC\\Lockdown\\Filesystem\\NullCache' => $baseDir . '/lib/private/Lockdown/Filesystem/NullCache.php',  | 
                                                        |
| 1746 | - 'OC\\Lockdown\\Filesystem\\NullStorage' => $baseDir . '/lib/private/Lockdown/Filesystem/NullStorage.php',  | 
                                                        |
| 1747 | - 'OC\\Lockdown\\LockdownManager' => $baseDir . '/lib/private/Lockdown/LockdownManager.php',  | 
                                                        |
| 1748 | - 'OC\\Log' => $baseDir . '/lib/private/Log.php',  | 
                                                        |
| 1749 | - 'OC\\Log\\ErrorHandler' => $baseDir . '/lib/private/Log/ErrorHandler.php',  | 
                                                        |
| 1750 | - 'OC\\Log\\Errorlog' => $baseDir . '/lib/private/Log/Errorlog.php',  | 
                                                        |
| 1751 | - 'OC\\Log\\ExceptionSerializer' => $baseDir . '/lib/private/Log/ExceptionSerializer.php',  | 
                                                        |
| 1752 | - 'OC\\Log\\File' => $baseDir . '/lib/private/Log/File.php',  | 
                                                        |
| 1753 | - 'OC\\Log\\LogDetails' => $baseDir . '/lib/private/Log/LogDetails.php',  | 
                                                        |
| 1754 | - 'OC\\Log\\LogFactory' => $baseDir . '/lib/private/Log/LogFactory.php',  | 
                                                        |
| 1755 | - 'OC\\Log\\PsrLoggerAdapter' => $baseDir . '/lib/private/Log/PsrLoggerAdapter.php',  | 
                                                        |
| 1756 | - 'OC\\Log\\Rotate' => $baseDir . '/lib/private/Log/Rotate.php',  | 
                                                        |
| 1757 | - 'OC\\Log\\Syslog' => $baseDir . '/lib/private/Log/Syslog.php',  | 
                                                        |
| 1758 | - 'OC\\Log\\Systemdlog' => $baseDir . '/lib/private/Log/Systemdlog.php',  | 
                                                        |
| 1759 | - 'OC\\Mail\\Attachment' => $baseDir . '/lib/private/Mail/Attachment.php',  | 
                                                        |
| 1760 | - 'OC\\Mail\\EMailTemplate' => $baseDir . '/lib/private/Mail/EMailTemplate.php',  | 
                                                        |
| 1761 | - 'OC\\Mail\\Mailer' => $baseDir . '/lib/private/Mail/Mailer.php',  | 
                                                        |
| 1762 | - 'OC\\Mail\\Message' => $baseDir . '/lib/private/Mail/Message.php',  | 
                                                        |
| 1763 | - 'OC\\Mail\\Provider\\Manager' => $baseDir . '/lib/private/Mail/Provider/Manager.php',  | 
                                                        |
| 1764 | - 'OC\\Memcache\\APCu' => $baseDir . '/lib/private/Memcache/APCu.php',  | 
                                                        |
| 1765 | - 'OC\\Memcache\\ArrayCache' => $baseDir . '/lib/private/Memcache/ArrayCache.php',  | 
                                                        |
| 1766 | - 'OC\\Memcache\\CADTrait' => $baseDir . '/lib/private/Memcache/CADTrait.php',  | 
                                                        |
| 1767 | - 'OC\\Memcache\\CASTrait' => $baseDir . '/lib/private/Memcache/CASTrait.php',  | 
                                                        |
| 1768 | - 'OC\\Memcache\\Cache' => $baseDir . '/lib/private/Memcache/Cache.php',  | 
                                                        |
| 1769 | - 'OC\\Memcache\\Factory' => $baseDir . '/lib/private/Memcache/Factory.php',  | 
                                                        |
| 1770 | - 'OC\\Memcache\\LoggerWrapperCache' => $baseDir . '/lib/private/Memcache/LoggerWrapperCache.php',  | 
                                                        |
| 1771 | - 'OC\\Memcache\\Memcached' => $baseDir . '/lib/private/Memcache/Memcached.php',  | 
                                                        |
| 1772 | - 'OC\\Memcache\\NullCache' => $baseDir . '/lib/private/Memcache/NullCache.php',  | 
                                                        |
| 1773 | - 'OC\\Memcache\\ProfilerWrapperCache' => $baseDir . '/lib/private/Memcache/ProfilerWrapperCache.php',  | 
                                                        |
| 1774 | - 'OC\\Memcache\\Redis' => $baseDir . '/lib/private/Memcache/Redis.php',  | 
                                                        |
| 1775 | - 'OC\\Memcache\\WithLocalCache' => $baseDir . '/lib/private/Memcache/WithLocalCache.php',  | 
                                                        |
| 1776 | - 'OC\\MemoryInfo' => $baseDir . '/lib/private/MemoryInfo.php',  | 
                                                        |
| 1777 | - 'OC\\Migration\\BackgroundRepair' => $baseDir . '/lib/private/Migration/BackgroundRepair.php',  | 
                                                        |
| 1778 | - 'OC\\Migration\\ConsoleOutput' => $baseDir . '/lib/private/Migration/ConsoleOutput.php',  | 
                                                        |
| 1779 | - 'OC\\Migration\\Exceptions\\AttributeException' => $baseDir . '/lib/private/Migration/Exceptions/AttributeException.php',  | 
                                                        |
| 1780 | - 'OC\\Migration\\MetadataManager' => $baseDir . '/lib/private/Migration/MetadataManager.php',  | 
                                                        |
| 1781 | - 'OC\\Migration\\NullOutput' => $baseDir . '/lib/private/Migration/NullOutput.php',  | 
                                                        |
| 1782 | - 'OC\\Migration\\SimpleOutput' => $baseDir . '/lib/private/Migration/SimpleOutput.php',  | 
                                                        |
| 1783 | - 'OC\\NaturalSort' => $baseDir . '/lib/private/NaturalSort.php',  | 
                                                        |
| 1784 | - 'OC\\NaturalSort_DefaultCollator' => $baseDir . '/lib/private/NaturalSort_DefaultCollator.php',  | 
                                                        |
| 1785 | - 'OC\\NavigationManager' => $baseDir . '/lib/private/NavigationManager.php',  | 
                                                        |
| 1786 | - 'OC\\NeedsUpdateException' => $baseDir . '/lib/private/NeedsUpdateException.php',  | 
                                                        |
| 1787 | - 'OC\\Net\\HostnameClassifier' => $baseDir . '/lib/private/Net/HostnameClassifier.php',  | 
                                                        |
| 1788 | - 'OC\\Net\\IpAddressClassifier' => $baseDir . '/lib/private/Net/IpAddressClassifier.php',  | 
                                                        |
| 1789 | - 'OC\\NotSquareException' => $baseDir . '/lib/private/NotSquareException.php',  | 
                                                        |
| 1790 | - 'OC\\Notification\\Action' => $baseDir . '/lib/private/Notification/Action.php',  | 
                                                        |
| 1791 | - 'OC\\Notification\\Manager' => $baseDir . '/lib/private/Notification/Manager.php',  | 
                                                        |
| 1792 | - 'OC\\Notification\\Notification' => $baseDir . '/lib/private/Notification/Notification.php',  | 
                                                        |
| 1793 | - 'OC\\OCM\\Model\\OCMProvider' => $baseDir . '/lib/private/OCM/Model/OCMProvider.php',  | 
                                                        |
| 1794 | - 'OC\\OCM\\Model\\OCMResource' => $baseDir . '/lib/private/OCM/Model/OCMResource.php',  | 
                                                        |
| 1795 | - 'OC\\OCM\\OCMDiscoveryService' => $baseDir . '/lib/private/OCM/OCMDiscoveryService.php',  | 
                                                        |
| 1796 | - 'OC\\OCM\\OCMSignatoryManager' => $baseDir . '/lib/private/OCM/OCMSignatoryManager.php',  | 
                                                        |
| 1797 | - 'OC\\OCS\\ApiHelper' => $baseDir . '/lib/private/OCS/ApiHelper.php',  | 
                                                        |
| 1798 | - 'OC\\OCS\\CoreCapabilities' => $baseDir . '/lib/private/OCS/CoreCapabilities.php',  | 
                                                        |
| 1799 | - 'OC\\OCS\\DiscoveryService' => $baseDir . '/lib/private/OCS/DiscoveryService.php',  | 
                                                        |
| 1800 | - 'OC\\OCS\\Provider' => $baseDir . '/lib/private/OCS/Provider.php',  | 
                                                        |
| 1801 | - 'OC\\PhoneNumberUtil' => $baseDir . '/lib/private/PhoneNumberUtil.php',  | 
                                                        |
| 1802 | - 'OC\\PreviewManager' => $baseDir . '/lib/private/PreviewManager.php',  | 
                                                        |
| 1803 | - 'OC\\PreviewNotAvailableException' => $baseDir . '/lib/private/PreviewNotAvailableException.php',  | 
                                                        |
| 1804 | - 'OC\\Preview\\BMP' => $baseDir . '/lib/private/Preview/BMP.php',  | 
                                                        |
| 1805 | - 'OC\\Preview\\BackgroundCleanupJob' => $baseDir . '/lib/private/Preview/BackgroundCleanupJob.php',  | 
                                                        |
| 1806 | - 'OC\\Preview\\Bitmap' => $baseDir . '/lib/private/Preview/Bitmap.php',  | 
                                                        |
| 1807 | - 'OC\\Preview\\Bundled' => $baseDir . '/lib/private/Preview/Bundled.php',  | 
                                                        |
| 1808 | - 'OC\\Preview\\EMF' => $baseDir . '/lib/private/Preview/EMF.php',  | 
                                                        |
| 1809 | - 'OC\\Preview\\Font' => $baseDir . '/lib/private/Preview/Font.php',  | 
                                                        |
| 1810 | - 'OC\\Preview\\GIF' => $baseDir . '/lib/private/Preview/GIF.php',  | 
                                                        |
| 1811 | - 'OC\\Preview\\Generator' => $baseDir . '/lib/private/Preview/Generator.php',  | 
                                                        |
| 1812 | - 'OC\\Preview\\GeneratorHelper' => $baseDir . '/lib/private/Preview/GeneratorHelper.php',  | 
                                                        |
| 1813 | - 'OC\\Preview\\HEIC' => $baseDir . '/lib/private/Preview/HEIC.php',  | 
                                                        |
| 1814 | - 'OC\\Preview\\IMagickSupport' => $baseDir . '/lib/private/Preview/IMagickSupport.php',  | 
                                                        |
| 1815 | - 'OC\\Preview\\Illustrator' => $baseDir . '/lib/private/Preview/Illustrator.php',  | 
                                                        |
| 1816 | - 'OC\\Preview\\Image' => $baseDir . '/lib/private/Preview/Image.php',  | 
                                                        |
| 1817 | - 'OC\\Preview\\Imaginary' => $baseDir . '/lib/private/Preview/Imaginary.php',  | 
                                                        |
| 1818 | - 'OC\\Preview\\ImaginaryPDF' => $baseDir . '/lib/private/Preview/ImaginaryPDF.php',  | 
                                                        |
| 1819 | - 'OC\\Preview\\JPEG' => $baseDir . '/lib/private/Preview/JPEG.php',  | 
                                                        |
| 1820 | - 'OC\\Preview\\Krita' => $baseDir . '/lib/private/Preview/Krita.php',  | 
                                                        |
| 1821 | - 'OC\\Preview\\MP3' => $baseDir . '/lib/private/Preview/MP3.php',  | 
                                                        |
| 1822 | - 'OC\\Preview\\MSOffice2003' => $baseDir . '/lib/private/Preview/MSOffice2003.php',  | 
                                                        |
| 1823 | - 'OC\\Preview\\MSOffice2007' => $baseDir . '/lib/private/Preview/MSOffice2007.php',  | 
                                                        |
| 1824 | - 'OC\\Preview\\MSOfficeDoc' => $baseDir . '/lib/private/Preview/MSOfficeDoc.php',  | 
                                                        |
| 1825 | - 'OC\\Preview\\MarkDown' => $baseDir . '/lib/private/Preview/MarkDown.php',  | 
                                                        |
| 1826 | - 'OC\\Preview\\MimeIconProvider' => $baseDir . '/lib/private/Preview/MimeIconProvider.php',  | 
                                                        |
| 1827 | - 'OC\\Preview\\Movie' => $baseDir . '/lib/private/Preview/Movie.php',  | 
                                                        |
| 1828 | - 'OC\\Preview\\Office' => $baseDir . '/lib/private/Preview/Office.php',  | 
                                                        |
| 1829 | - 'OC\\Preview\\OpenDocument' => $baseDir . '/lib/private/Preview/OpenDocument.php',  | 
                                                        |
| 1830 | - 'OC\\Preview\\PDF' => $baseDir . '/lib/private/Preview/PDF.php',  | 
                                                        |
| 1831 | - 'OC\\Preview\\PNG' => $baseDir . '/lib/private/Preview/PNG.php',  | 
                                                        |
| 1832 | - 'OC\\Preview\\Photoshop' => $baseDir . '/lib/private/Preview/Photoshop.php',  | 
                                                        |
| 1833 | - 'OC\\Preview\\Postscript' => $baseDir . '/lib/private/Preview/Postscript.php',  | 
                                                        |
| 1834 | - 'OC\\Preview\\Provider' => $baseDir . '/lib/private/Preview/Provider.php',  | 
                                                        |
| 1835 | - 'OC\\Preview\\ProviderV1Adapter' => $baseDir . '/lib/private/Preview/ProviderV1Adapter.php',  | 
                                                        |
| 1836 | - 'OC\\Preview\\ProviderV2' => $baseDir . '/lib/private/Preview/ProviderV2.php',  | 
                                                        |
| 1837 | - 'OC\\Preview\\SGI' => $baseDir . '/lib/private/Preview/SGI.php',  | 
                                                        |
| 1838 | - 'OC\\Preview\\SVG' => $baseDir . '/lib/private/Preview/SVG.php',  | 
                                                        |
| 1839 | - 'OC\\Preview\\StarOffice' => $baseDir . '/lib/private/Preview/StarOffice.php',  | 
                                                        |
| 1840 | - 'OC\\Preview\\Storage\\Root' => $baseDir . '/lib/private/Preview/Storage/Root.php',  | 
                                                        |
| 1841 | - 'OC\\Preview\\TGA' => $baseDir . '/lib/private/Preview/TGA.php',  | 
                                                        |
| 1842 | - 'OC\\Preview\\TIFF' => $baseDir . '/lib/private/Preview/TIFF.php',  | 
                                                        |
| 1843 | - 'OC\\Preview\\TXT' => $baseDir . '/lib/private/Preview/TXT.php',  | 
                                                        |
| 1844 | - 'OC\\Preview\\Watcher' => $baseDir . '/lib/private/Preview/Watcher.php',  | 
                                                        |
| 1845 | - 'OC\\Preview\\WatcherConnector' => $baseDir . '/lib/private/Preview/WatcherConnector.php',  | 
                                                        |
| 1846 | - 'OC\\Preview\\WebP' => $baseDir . '/lib/private/Preview/WebP.php',  | 
                                                        |
| 1847 | - 'OC\\Preview\\XBitmap' => $baseDir . '/lib/private/Preview/XBitmap.php',  | 
                                                        |
| 1848 | - 'OC\\Profile\\Actions\\EmailAction' => $baseDir . '/lib/private/Profile/Actions/EmailAction.php',  | 
                                                        |
| 1849 | - 'OC\\Profile\\Actions\\FediverseAction' => $baseDir . '/lib/private/Profile/Actions/FediverseAction.php',  | 
                                                        |
| 1850 | - 'OC\\Profile\\Actions\\PhoneAction' => $baseDir . '/lib/private/Profile/Actions/PhoneAction.php',  | 
                                                        |
| 1851 | - 'OC\\Profile\\Actions\\TwitterAction' => $baseDir . '/lib/private/Profile/Actions/TwitterAction.php',  | 
                                                        |
| 1852 | - 'OC\\Profile\\Actions\\WebsiteAction' => $baseDir . '/lib/private/Profile/Actions/WebsiteAction.php',  | 
                                                        |
| 1853 | - 'OC\\Profile\\ProfileManager' => $baseDir . '/lib/private/Profile/ProfileManager.php',  | 
                                                        |
| 1854 | - 'OC\\Profile\\TProfileHelper' => $baseDir . '/lib/private/Profile/TProfileHelper.php',  | 
                                                        |
| 1855 | - 'OC\\Profiler\\FileProfilerStorage' => $baseDir . '/lib/private/Profiler/FileProfilerStorage.php',  | 
                                                        |
| 1856 | - 'OC\\Profiler\\Profile' => $baseDir . '/lib/private/Profiler/Profile.php',  | 
                                                        |
| 1857 | - 'OC\\Profiler\\Profiler' => $baseDir . '/lib/private/Profiler/Profiler.php',  | 
                                                        |
| 1858 | - 'OC\\Profiler\\RoutingDataCollector' => $baseDir . '/lib/private/Profiler/RoutingDataCollector.php',  | 
                                                        |
| 1859 | - 'OC\\RedisFactory' => $baseDir . '/lib/private/RedisFactory.php',  | 
                                                        |
| 1860 | - 'OC\\Remote\\Api\\ApiBase' => $baseDir . '/lib/private/Remote/Api/ApiBase.php',  | 
                                                        |
| 1861 | - 'OC\\Remote\\Api\\ApiCollection' => $baseDir . '/lib/private/Remote/Api/ApiCollection.php',  | 
                                                        |
| 1862 | - 'OC\\Remote\\Api\\ApiFactory' => $baseDir . '/lib/private/Remote/Api/ApiFactory.php',  | 
                                                        |
| 1863 | - 'OC\\Remote\\Api\\NotFoundException' => $baseDir . '/lib/private/Remote/Api/NotFoundException.php',  | 
                                                        |
| 1864 | - 'OC\\Remote\\Api\\OCS' => $baseDir . '/lib/private/Remote/Api/OCS.php',  | 
                                                        |
| 1865 | - 'OC\\Remote\\Credentials' => $baseDir . '/lib/private/Remote/Credentials.php',  | 
                                                        |
| 1866 | - 'OC\\Remote\\Instance' => $baseDir . '/lib/private/Remote/Instance.php',  | 
                                                        |
| 1867 | - 'OC\\Remote\\InstanceFactory' => $baseDir . '/lib/private/Remote/InstanceFactory.php',  | 
                                                        |
| 1868 | - 'OC\\Remote\\User' => $baseDir . '/lib/private/Remote/User.php',  | 
                                                        |
| 1869 | - 'OC\\Repair' => $baseDir . '/lib/private/Repair.php',  | 
                                                        |
| 1870 | - 'OC\\RepairException' => $baseDir . '/lib/private/RepairException.php',  | 
                                                        |
| 1871 | - 'OC\\Repair\\AddAppConfigLazyMigration' => $baseDir . '/lib/private/Repair/AddAppConfigLazyMigration.php',  | 
                                                        |
| 1872 | - 'OC\\Repair\\AddBruteForceCleanupJob' => $baseDir . '/lib/private/Repair/AddBruteForceCleanupJob.php',  | 
                                                        |
| 1873 | - 'OC\\Repair\\AddCleanupDeletedUsersBackgroundJob' => $baseDir . '/lib/private/Repair/AddCleanupDeletedUsersBackgroundJob.php',  | 
                                                        |
| 1874 | - 'OC\\Repair\\AddCleanupUpdaterBackupsJob' => $baseDir . '/lib/private/Repair/AddCleanupUpdaterBackupsJob.php',  | 
                                                        |
| 1875 | - 'OC\\Repair\\AddMetadataGenerationJob' => $baseDir . '/lib/private/Repair/AddMetadataGenerationJob.php',  | 
                                                        |
| 1876 | - 'OC\\Repair\\AddRemoveOldTasksBackgroundJob' => $baseDir . '/lib/private/Repair/AddRemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 1877 | - 'OC\\Repair\\CleanTags' => $baseDir . '/lib/private/Repair/CleanTags.php',  | 
                                                        |
| 1878 | - 'OC\\Repair\\CleanUpAbandonedApps' => $baseDir . '/lib/private/Repair/CleanUpAbandonedApps.php',  | 
                                                        |
| 1879 | - 'OC\\Repair\\ClearFrontendCaches' => $baseDir . '/lib/private/Repair/ClearFrontendCaches.php',  | 
                                                        |
| 1880 | - 'OC\\Repair\\ClearGeneratedAvatarCache' => $baseDir . '/lib/private/Repair/ClearGeneratedAvatarCache.php',  | 
                                                        |
| 1881 | - 'OC\\Repair\\ClearGeneratedAvatarCacheJob' => $baseDir . '/lib/private/Repair/ClearGeneratedAvatarCacheJob.php',  | 
                                                        |
| 1882 | - 'OC\\Repair\\Collation' => $baseDir . '/lib/private/Repair/Collation.php',  | 
                                                        |
| 1883 | - 'OC\\Repair\\Events\\RepairAdvanceEvent' => $baseDir . '/lib/private/Repair/Events/RepairAdvanceEvent.php',  | 
                                                        |
| 1884 | - 'OC\\Repair\\Events\\RepairErrorEvent' => $baseDir . '/lib/private/Repair/Events/RepairErrorEvent.php',  | 
                                                        |
| 1885 | - 'OC\\Repair\\Events\\RepairFinishEvent' => $baseDir . '/lib/private/Repair/Events/RepairFinishEvent.php',  | 
                                                        |
| 1886 | - 'OC\\Repair\\Events\\RepairInfoEvent' => $baseDir . '/lib/private/Repair/Events/RepairInfoEvent.php',  | 
                                                        |
| 1887 | - 'OC\\Repair\\Events\\RepairStartEvent' => $baseDir . '/lib/private/Repair/Events/RepairStartEvent.php',  | 
                                                        |
| 1888 | - 'OC\\Repair\\Events\\RepairStepEvent' => $baseDir . '/lib/private/Repair/Events/RepairStepEvent.php',  | 
                                                        |
| 1889 | - 'OC\\Repair\\Events\\RepairWarningEvent' => $baseDir . '/lib/private/Repair/Events/RepairWarningEvent.php',  | 
                                                        |
| 1890 | - 'OC\\Repair\\MoveUpdaterStepFile' => $baseDir . '/lib/private/Repair/MoveUpdaterStepFile.php',  | 
                                                        |
| 1891 | - 'OC\\Repair\\NC13\\AddLogRotateJob' => $baseDir . '/lib/private/Repair/NC13/AddLogRotateJob.php',  | 
                                                        |
| 1892 | - 'OC\\Repair\\NC14\\AddPreviewBackgroundCleanupJob' => $baseDir . '/lib/private/Repair/NC14/AddPreviewBackgroundCleanupJob.php',  | 
                                                        |
| 1893 | - 'OC\\Repair\\NC16\\AddClenupLoginFlowV2BackgroundJob' => $baseDir . '/lib/private/Repair/NC16/AddClenupLoginFlowV2BackgroundJob.php',  | 
                                                        |
| 1894 | - 'OC\\Repair\\NC16\\CleanupCardDAVPhotoCache' => $baseDir . '/lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php',  | 
                                                        |
| 1895 | - 'OC\\Repair\\NC16\\ClearCollectionsAccessCache' => $baseDir . '/lib/private/Repair/NC16/ClearCollectionsAccessCache.php',  | 
                                                        |
| 1896 | - 'OC\\Repair\\NC18\\ResetGeneratedAvatarFlag' => $baseDir . '/lib/private/Repair/NC18/ResetGeneratedAvatarFlag.php',  | 
                                                        |
| 1897 | - 'OC\\Repair\\NC20\\EncryptionLegacyCipher' => $baseDir . '/lib/private/Repair/NC20/EncryptionLegacyCipher.php',  | 
                                                        |
| 1898 | - 'OC\\Repair\\NC20\\EncryptionMigration' => $baseDir . '/lib/private/Repair/NC20/EncryptionMigration.php',  | 
                                                        |
| 1899 | - 'OC\\Repair\\NC20\\ShippedDashboardEnable' => $baseDir . '/lib/private/Repair/NC20/ShippedDashboardEnable.php',  | 
                                                        |
| 1900 | - 'OC\\Repair\\NC21\\AddCheckForUserCertificatesJob' => $baseDir . '/lib/private/Repair/NC21/AddCheckForUserCertificatesJob.php',  | 
                                                        |
| 1901 | - 'OC\\Repair\\NC22\\LookupServerSendCheck' => $baseDir . '/lib/private/Repair/NC22/LookupServerSendCheck.php',  | 
                                                        |
| 1902 | - 'OC\\Repair\\NC24\\AddTokenCleanupJob' => $baseDir . '/lib/private/Repair/NC24/AddTokenCleanupJob.php',  | 
                                                        |
| 1903 | - 'OC\\Repair\\NC25\\AddMissingSecretJob' => $baseDir . '/lib/private/Repair/NC25/AddMissingSecretJob.php',  | 
                                                        |
| 1904 | - 'OC\\Repair\\NC29\\SanitizeAccountProperties' => $baseDir . '/lib/private/Repair/NC29/SanitizeAccountProperties.php',  | 
                                                        |
| 1905 | - 'OC\\Repair\\NC29\\SanitizeAccountPropertiesJob' => $baseDir . '/lib/private/Repair/NC29/SanitizeAccountPropertiesJob.php',  | 
                                                        |
| 1906 | - 'OC\\Repair\\NC30\\RemoveLegacyDatadirFile' => $baseDir . '/lib/private/Repair/NC30/RemoveLegacyDatadirFile.php',  | 
                                                        |
| 1907 | - 'OC\\Repair\\OldGroupMembershipShares' => $baseDir . '/lib/private/Repair/OldGroupMembershipShares.php',  | 
                                                        |
| 1908 | - 'OC\\Repair\\Owncloud\\CleanPreviews' => $baseDir . '/lib/private/Repair/Owncloud/CleanPreviews.php',  | 
                                                        |
| 1909 | - 'OC\\Repair\\Owncloud\\CleanPreviewsBackgroundJob' => $baseDir . '/lib/private/Repair/Owncloud/CleanPreviewsBackgroundJob.php',  | 
                                                        |
| 1910 | - 'OC\\Repair\\Owncloud\\DropAccountTermsTable' => $baseDir . '/lib/private/Repair/Owncloud/DropAccountTermsTable.php',  | 
                                                        |
| 1911 | - 'OC\\Repair\\Owncloud\\MigrateOauthTables' => $baseDir . '/lib/private/Repair/Owncloud/MigrateOauthTables.php',  | 
                                                        |
| 1912 | - 'OC\\Repair\\Owncloud\\MoveAvatars' => $baseDir . '/lib/private/Repair/Owncloud/MoveAvatars.php',  | 
                                                        |
| 1913 | - 'OC\\Repair\\Owncloud\\MoveAvatarsBackgroundJob' => $baseDir . '/lib/private/Repair/Owncloud/MoveAvatarsBackgroundJob.php',  | 
                                                        |
| 1914 | - 'OC\\Repair\\Owncloud\\SaveAccountsTableData' => $baseDir . '/lib/private/Repair/Owncloud/SaveAccountsTableData.php',  | 
                                                        |
| 1915 | - 'OC\\Repair\\Owncloud\\UpdateLanguageCodes' => $baseDir . '/lib/private/Repair/Owncloud/UpdateLanguageCodes.php',  | 
                                                        |
| 1916 | - 'OC\\Repair\\RemoveBrokenProperties' => $baseDir . '/lib/private/Repair/RemoveBrokenProperties.php',  | 
                                                        |
| 1917 | - 'OC\\Repair\\RemoveLinkShares' => $baseDir . '/lib/private/Repair/RemoveLinkShares.php',  | 
                                                        |
| 1918 | - 'OC\\Repair\\RepairDavShares' => $baseDir . '/lib/private/Repair/RepairDavShares.php',  | 
                                                        |
| 1919 | - 'OC\\Repair\\RepairInvalidShares' => $baseDir . '/lib/private/Repair/RepairInvalidShares.php',  | 
                                                        |
| 1920 | - 'OC\\Repair\\RepairLogoDimension' => $baseDir . '/lib/private/Repair/RepairLogoDimension.php',  | 
                                                        |
| 1921 | - 'OC\\Repair\\RepairMimeTypes' => $baseDir . '/lib/private/Repair/RepairMimeTypes.php',  | 
                                                        |
| 1922 | - 'OC\\RichObjectStrings\\RichTextFormatter' => $baseDir . '/lib/private/RichObjectStrings/RichTextFormatter.php',  | 
                                                        |
| 1923 | - 'OC\\RichObjectStrings\\Validator' => $baseDir . '/lib/private/RichObjectStrings/Validator.php',  | 
                                                        |
| 1924 | - 'OC\\Route\\CachingRouter' => $baseDir . '/lib/private/Route/CachingRouter.php',  | 
                                                        |
| 1925 | - 'OC\\Route\\Route' => $baseDir . '/lib/private/Route/Route.php',  | 
                                                        |
| 1926 | - 'OC\\Route\\Router' => $baseDir . '/lib/private/Route/Router.php',  | 
                                                        |
| 1927 | - 'OC\\Search\\FilterCollection' => $baseDir . '/lib/private/Search/FilterCollection.php',  | 
                                                        |
| 1928 | - 'OC\\Search\\FilterFactory' => $baseDir . '/lib/private/Search/FilterFactory.php',  | 
                                                        |
| 1929 | - 'OC\\Search\\Filter\\BooleanFilter' => $baseDir . '/lib/private/Search/Filter/BooleanFilter.php',  | 
                                                        |
| 1930 | - 'OC\\Search\\Filter\\DateTimeFilter' => $baseDir . '/lib/private/Search/Filter/DateTimeFilter.php',  | 
                                                        |
| 1931 | - 'OC\\Search\\Filter\\FloatFilter' => $baseDir . '/lib/private/Search/Filter/FloatFilter.php',  | 
                                                        |
| 1932 | - 'OC\\Search\\Filter\\GroupFilter' => $baseDir . '/lib/private/Search/Filter/GroupFilter.php',  | 
                                                        |
| 1933 | - 'OC\\Search\\Filter\\IntegerFilter' => $baseDir . '/lib/private/Search/Filter/IntegerFilter.php',  | 
                                                        |
| 1934 | - 'OC\\Search\\Filter\\StringFilter' => $baseDir . '/lib/private/Search/Filter/StringFilter.php',  | 
                                                        |
| 1935 | - 'OC\\Search\\Filter\\StringsFilter' => $baseDir . '/lib/private/Search/Filter/StringsFilter.php',  | 
                                                        |
| 1936 | - 'OC\\Search\\Filter\\UserFilter' => $baseDir . '/lib/private/Search/Filter/UserFilter.php',  | 
                                                        |
| 1937 | - 'OC\\Search\\SearchComposer' => $baseDir . '/lib/private/Search/SearchComposer.php',  | 
                                                        |
| 1938 | - 'OC\\Search\\SearchQuery' => $baseDir . '/lib/private/Search/SearchQuery.php',  | 
                                                        |
| 1939 | - 'OC\\Search\\UnsupportedFilter' => $baseDir . '/lib/private/Search/UnsupportedFilter.php',  | 
                                                        |
| 1940 | - 'OC\\Security\\Bruteforce\\Backend\\DatabaseBackend' => $baseDir . '/lib/private/Security/Bruteforce/Backend/DatabaseBackend.php',  | 
                                                        |
| 1941 | - 'OC\\Security\\Bruteforce\\Backend\\IBackend' => $baseDir . '/lib/private/Security/Bruteforce/Backend/IBackend.php',  | 
                                                        |
| 1942 | - 'OC\\Security\\Bruteforce\\Backend\\MemoryCacheBackend' => $baseDir . '/lib/private/Security/Bruteforce/Backend/MemoryCacheBackend.php',  | 
                                                        |
| 1943 | - 'OC\\Security\\Bruteforce\\Capabilities' => $baseDir . '/lib/private/Security/Bruteforce/Capabilities.php',  | 
                                                        |
| 1944 | - 'OC\\Security\\Bruteforce\\CleanupJob' => $baseDir . '/lib/private/Security/Bruteforce/CleanupJob.php',  | 
                                                        |
| 1945 | - 'OC\\Security\\Bruteforce\\Throttler' => $baseDir . '/lib/private/Security/Bruteforce/Throttler.php',  | 
                                                        |
| 1946 | - 'OC\\Security\\CSP\\ContentSecurityPolicy' => $baseDir . '/lib/private/Security/CSP/ContentSecurityPolicy.php',  | 
                                                        |
| 1947 | - 'OC\\Security\\CSP\\ContentSecurityPolicyManager' => $baseDir . '/lib/private/Security/CSP/ContentSecurityPolicyManager.php',  | 
                                                        |
| 1948 | - 'OC\\Security\\CSP\\ContentSecurityPolicyNonceManager' => $baseDir . '/lib/private/Security/CSP/ContentSecurityPolicyNonceManager.php',  | 
                                                        |
| 1949 | - 'OC\\Security\\CSRF\\CsrfToken' => $baseDir . '/lib/private/Security/CSRF/CsrfToken.php',  | 
                                                        |
| 1950 | - 'OC\\Security\\CSRF\\CsrfTokenGenerator' => $baseDir . '/lib/private/Security/CSRF/CsrfTokenGenerator.php',  | 
                                                        |
| 1951 | - 'OC\\Security\\CSRF\\CsrfTokenManager' => $baseDir . '/lib/private/Security/CSRF/CsrfTokenManager.php',  | 
                                                        |
| 1952 | - 'OC\\Security\\CSRF\\TokenStorage\\SessionStorage' => $baseDir . '/lib/private/Security/CSRF/TokenStorage/SessionStorage.php',  | 
                                                        |
| 1953 | - 'OC\\Security\\Certificate' => $baseDir . '/lib/private/Security/Certificate.php',  | 
                                                        |
| 1954 | - 'OC\\Security\\CertificateManager' => $baseDir . '/lib/private/Security/CertificateManager.php',  | 
                                                        |
| 1955 | - 'OC\\Security\\CredentialsManager' => $baseDir . '/lib/private/Security/CredentialsManager.php',  | 
                                                        |
| 1956 | - 'OC\\Security\\Crypto' => $baseDir . '/lib/private/Security/Crypto.php',  | 
                                                        |
| 1957 | - 'OC\\Security\\FeaturePolicy\\FeaturePolicy' => $baseDir . '/lib/private/Security/FeaturePolicy/FeaturePolicy.php',  | 
                                                        |
| 1958 | - 'OC\\Security\\FeaturePolicy\\FeaturePolicyManager' => $baseDir . '/lib/private/Security/FeaturePolicy/FeaturePolicyManager.php',  | 
                                                        |
| 1959 | - 'OC\\Security\\Hasher' => $baseDir . '/lib/private/Security/Hasher.php',  | 
                                                        |
| 1960 | - 'OC\\Security\\IdentityProof\\Key' => $baseDir . '/lib/private/Security/IdentityProof/Key.php',  | 
                                                        |
| 1961 | - 'OC\\Security\\IdentityProof\\Manager' => $baseDir . '/lib/private/Security/IdentityProof/Manager.php',  | 
                                                        |
| 1962 | - 'OC\\Security\\IdentityProof\\Signer' => $baseDir . '/lib/private/Security/IdentityProof/Signer.php',  | 
                                                        |
| 1963 | - 'OC\\Security\\Ip\\Address' => $baseDir . '/lib/private/Security/Ip/Address.php',  | 
                                                        |
| 1964 | - 'OC\\Security\\Ip\\BruteforceAllowList' => $baseDir . '/lib/private/Security/Ip/BruteforceAllowList.php',  | 
                                                        |
| 1965 | - 'OC\\Security\\Ip\\Factory' => $baseDir . '/lib/private/Security/Ip/Factory.php',  | 
                                                        |
| 1966 | - 'OC\\Security\\Ip\\Range' => $baseDir . '/lib/private/Security/Ip/Range.php',  | 
                                                        |
| 1967 | - 'OC\\Security\\Ip\\RemoteAddress' => $baseDir . '/lib/private/Security/Ip/RemoteAddress.php',  | 
                                                        |
| 1968 | - 'OC\\Security\\Normalizer\\IpAddress' => $baseDir . '/lib/private/Security/Normalizer/IpAddress.php',  | 
                                                        |
| 1969 | - 'OC\\Security\\RateLimiting\\Backend\\DatabaseBackend' => $baseDir . '/lib/private/Security/RateLimiting/Backend/DatabaseBackend.php',  | 
                                                        |
| 1970 | - 'OC\\Security\\RateLimiting\\Backend\\IBackend' => $baseDir . '/lib/private/Security/RateLimiting/Backend/IBackend.php',  | 
                                                        |
| 1971 | - 'OC\\Security\\RateLimiting\\Backend\\MemoryCacheBackend' => $baseDir . '/lib/private/Security/RateLimiting/Backend/MemoryCacheBackend.php',  | 
                                                        |
| 1972 | - 'OC\\Security\\RateLimiting\\Exception\\RateLimitExceededException' => $baseDir . '/lib/private/Security/RateLimiting/Exception/RateLimitExceededException.php',  | 
                                                        |
| 1973 | - 'OC\\Security\\RateLimiting\\Limiter' => $baseDir . '/lib/private/Security/RateLimiting/Limiter.php',  | 
                                                        |
| 1974 | - 'OC\\Security\\RemoteHostValidator' => $baseDir . '/lib/private/Security/RemoteHostValidator.php',  | 
                                                        |
| 1975 | - 'OC\\Security\\SecureRandom' => $baseDir . '/lib/private/Security/SecureRandom.php',  | 
                                                        |
| 1976 | - 'OC\\Security\\Signature\\Db\\SignatoryMapper' => $baseDir . '/lib/private/Security/Signature/Db/SignatoryMapper.php',  | 
                                                        |
| 1977 | - 'OC\\Security\\Signature\\Model\\IncomingSignedRequest' => $baseDir . '/lib/private/Security/Signature/Model/IncomingSignedRequest.php',  | 
                                                        |
| 1978 | - 'OC\\Security\\Signature\\Model\\OutgoingSignedRequest' => $baseDir . '/lib/private/Security/Signature/Model/OutgoingSignedRequest.php',  | 
                                                        |
| 1979 | - 'OC\\Security\\Signature\\Model\\SignedRequest' => $baseDir . '/lib/private/Security/Signature/Model/SignedRequest.php',  | 
                                                        |
| 1980 | - 'OC\\Security\\Signature\\SignatureManager' => $baseDir . '/lib/private/Security/Signature/SignatureManager.php',  | 
                                                        |
| 1981 | - 'OC\\Security\\TrustedDomainHelper' => $baseDir . '/lib/private/Security/TrustedDomainHelper.php',  | 
                                                        |
| 1982 | - 'OC\\Security\\VerificationToken\\CleanUpJob' => $baseDir . '/lib/private/Security/VerificationToken/CleanUpJob.php',  | 
                                                        |
| 1983 | - 'OC\\Security\\VerificationToken\\VerificationToken' => $baseDir . '/lib/private/Security/VerificationToken/VerificationToken.php',  | 
                                                        |
| 1984 | - 'OC\\Server' => $baseDir . '/lib/private/Server.php',  | 
                                                        |
| 1985 | - 'OC\\ServerContainer' => $baseDir . '/lib/private/ServerContainer.php',  | 
                                                        |
| 1986 | - 'OC\\ServerNotAvailableException' => $baseDir . '/lib/private/ServerNotAvailableException.php',  | 
                                                        |
| 1987 | - 'OC\\ServiceUnavailableException' => $baseDir . '/lib/private/ServiceUnavailableException.php',  | 
                                                        |
| 1988 | - 'OC\\Session\\CryptoSessionData' => $baseDir . '/lib/private/Session/CryptoSessionData.php',  | 
                                                        |
| 1989 | - 'OC\\Session\\CryptoWrapper' => $baseDir . '/lib/private/Session/CryptoWrapper.php',  | 
                                                        |
| 1990 | - 'OC\\Session\\Internal' => $baseDir . '/lib/private/Session/Internal.php',  | 
                                                        |
| 1991 | - 'OC\\Session\\Memory' => $baseDir . '/lib/private/Session/Memory.php',  | 
                                                        |
| 1992 | - 'OC\\Session\\Session' => $baseDir . '/lib/private/Session/Session.php',  | 
                                                        |
| 1993 | - 'OC\\Settings\\AuthorizedGroup' => $baseDir . '/lib/private/Settings/AuthorizedGroup.php',  | 
                                                        |
| 1994 | - 'OC\\Settings\\AuthorizedGroupMapper' => $baseDir . '/lib/private/Settings/AuthorizedGroupMapper.php',  | 
                                                        |
| 1995 | - 'OC\\Settings\\DeclarativeManager' => $baseDir . '/lib/private/Settings/DeclarativeManager.php',  | 
                                                        |
| 1996 | - 'OC\\Settings\\Manager' => $baseDir . '/lib/private/Settings/Manager.php',  | 
                                                        |
| 1997 | - 'OC\\Settings\\Section' => $baseDir . '/lib/private/Settings/Section.php',  | 
                                                        |
| 1998 | - 'OC\\Setup' => $baseDir . '/lib/private/Setup.php',  | 
                                                        |
| 1999 | - 'OC\\SetupCheck\\SetupCheckManager' => $baseDir . '/lib/private/SetupCheck/SetupCheckManager.php',  | 
                                                        |
| 2000 | - 'OC\\Setup\\AbstractDatabase' => $baseDir . '/lib/private/Setup/AbstractDatabase.php',  | 
                                                        |
| 2001 | - 'OC\\Setup\\MySQL' => $baseDir . '/lib/private/Setup/MySQL.php',  | 
                                                        |
| 2002 | - 'OC\\Setup\\OCI' => $baseDir . '/lib/private/Setup/OCI.php',  | 
                                                        |
| 2003 | - 'OC\\Setup\\PostgreSQL' => $baseDir . '/lib/private/Setup/PostgreSQL.php',  | 
                                                        |
| 2004 | - 'OC\\Setup\\Sqlite' => $baseDir . '/lib/private/Setup/Sqlite.php',  | 
                                                        |
| 2005 | - 'OC\\Share20\\DefaultShareProvider' => $baseDir . '/lib/private/Share20/DefaultShareProvider.php',  | 
                                                        |
| 2006 | - 'OC\\Share20\\Exception\\BackendError' => $baseDir . '/lib/private/Share20/Exception/BackendError.php',  | 
                                                        |
| 2007 | - 'OC\\Share20\\Exception\\InvalidShare' => $baseDir . '/lib/private/Share20/Exception/InvalidShare.php',  | 
                                                        |
| 2008 | - 'OC\\Share20\\Exception\\ProviderException' => $baseDir . '/lib/private/Share20/Exception/ProviderException.php',  | 
                                                        |
| 2009 | - 'OC\\Share20\\GroupDeletedListener' => $baseDir . '/lib/private/Share20/GroupDeletedListener.php',  | 
                                                        |
| 2010 | - 'OC\\Share20\\LegacyHooks' => $baseDir . '/lib/private/Share20/LegacyHooks.php',  | 
                                                        |
| 2011 | - 'OC\\Share20\\Manager' => $baseDir . '/lib/private/Share20/Manager.php',  | 
                                                        |
| 2012 | - 'OC\\Share20\\ProviderFactory' => $baseDir . '/lib/private/Share20/ProviderFactory.php',  | 
                                                        |
| 2013 | - 'OC\\Share20\\PublicShareTemplateFactory' => $baseDir . '/lib/private/Share20/PublicShareTemplateFactory.php',  | 
                                                        |
| 2014 | - 'OC\\Share20\\Share' => $baseDir . '/lib/private/Share20/Share.php',  | 
                                                        |
| 2015 | - 'OC\\Share20\\ShareAttributes' => $baseDir . '/lib/private/Share20/ShareAttributes.php',  | 
                                                        |
| 2016 | - 'OC\\Share20\\ShareDisableChecker' => $baseDir . '/lib/private/Share20/ShareDisableChecker.php',  | 
                                                        |
| 2017 | - 'OC\\Share20\\ShareHelper' => $baseDir . '/lib/private/Share20/ShareHelper.php',  | 
                                                        |
| 2018 | - 'OC\\Share20\\UserDeletedListener' => $baseDir . '/lib/private/Share20/UserDeletedListener.php',  | 
                                                        |
| 2019 | - 'OC\\Share20\\UserRemovedListener' => $baseDir . '/lib/private/Share20/UserRemovedListener.php',  | 
                                                        |
| 2020 | - 'OC\\Share\\Constants' => $baseDir . '/lib/private/Share/Constants.php',  | 
                                                        |
| 2021 | - 'OC\\Share\\Helper' => $baseDir . '/lib/private/Share/Helper.php',  | 
                                                        |
| 2022 | - 'OC\\Share\\Share' => $baseDir . '/lib/private/Share/Share.php',  | 
                                                        |
| 2023 | - 'OC\\SpeechToText\\SpeechToTextManager' => $baseDir . '/lib/private/SpeechToText/SpeechToTextManager.php',  | 
                                                        |
| 2024 | - 'OC\\SpeechToText\\TranscriptionJob' => $baseDir . '/lib/private/SpeechToText/TranscriptionJob.php',  | 
                                                        |
| 2025 | - 'OC\\StreamImage' => $baseDir . '/lib/private/StreamImage.php',  | 
                                                        |
| 2026 | - 'OC\\Streamer' => $baseDir . '/lib/private/Streamer.php',  | 
                                                        |
| 2027 | - 'OC\\SubAdmin' => $baseDir . '/lib/private/SubAdmin.php',  | 
                                                        |
| 2028 | - 'OC\\Support\\CrashReport\\Registry' => $baseDir . '/lib/private/Support/CrashReport/Registry.php',  | 
                                                        |
| 2029 | - 'OC\\Support\\Subscription\\Assertion' => $baseDir . '/lib/private/Support/Subscription/Assertion.php',  | 
                                                        |
| 2030 | - 'OC\\Support\\Subscription\\Registry' => $baseDir . '/lib/private/Support/Subscription/Registry.php',  | 
                                                        |
| 2031 | - 'OC\\SystemConfig' => $baseDir . '/lib/private/SystemConfig.php',  | 
                                                        |
| 2032 | - 'OC\\SystemTag\\ManagerFactory' => $baseDir . '/lib/private/SystemTag/ManagerFactory.php',  | 
                                                        |
| 2033 | - 'OC\\SystemTag\\SystemTag' => $baseDir . '/lib/private/SystemTag/SystemTag.php',  | 
                                                        |
| 2034 | - 'OC\\SystemTag\\SystemTagManager' => $baseDir . '/lib/private/SystemTag/SystemTagManager.php',  | 
                                                        |
| 2035 | - 'OC\\SystemTag\\SystemTagObjectMapper' => $baseDir . '/lib/private/SystemTag/SystemTagObjectMapper.php',  | 
                                                        |
| 2036 | - 'OC\\SystemTag\\SystemTagsInFilesDetector' => $baseDir . '/lib/private/SystemTag/SystemTagsInFilesDetector.php',  | 
                                                        |
| 2037 | - 'OC\\TagManager' => $baseDir . '/lib/private/TagManager.php',  | 
                                                        |
| 2038 | - 'OC\\Tagging\\Tag' => $baseDir . '/lib/private/Tagging/Tag.php',  | 
                                                        |
| 2039 | - 'OC\\Tagging\\TagMapper' => $baseDir . '/lib/private/Tagging/TagMapper.php',  | 
                                                        |
| 2040 | - 'OC\\Tags' => $baseDir . '/lib/private/Tags.php',  | 
                                                        |
| 2041 | - 'OC\\Talk\\Broker' => $baseDir . '/lib/private/Talk/Broker.php',  | 
                                                        |
| 2042 | - 'OC\\Talk\\ConversationOptions' => $baseDir . '/lib/private/Talk/ConversationOptions.php',  | 
                                                        |
| 2043 | - 'OC\\TaskProcessing\\Db\\Task' => $baseDir . '/lib/private/TaskProcessing/Db/Task.php',  | 
                                                        |
| 2044 | - 'OC\\TaskProcessing\\Db\\TaskMapper' => $baseDir . '/lib/private/TaskProcessing/Db/TaskMapper.php',  | 
                                                        |
| 2045 | - 'OC\\TaskProcessing\\Manager' => $baseDir . '/lib/private/TaskProcessing/Manager.php',  | 
                                                        |
| 2046 | - 'OC\\TaskProcessing\\RemoveOldTasksBackgroundJob' => $baseDir . '/lib/private/TaskProcessing/RemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 2047 | - 'OC\\TaskProcessing\\SynchronousBackgroundJob' => $baseDir . '/lib/private/TaskProcessing/SynchronousBackgroundJob.php',  | 
                                                        |
| 2048 | - 'OC\\Teams\\TeamManager' => $baseDir . '/lib/private/Teams/TeamManager.php',  | 
                                                        |
| 2049 | - 'OC\\TempManager' => $baseDir . '/lib/private/TempManager.php',  | 
                                                        |
| 2050 | - 'OC\\TemplateLayout' => $baseDir . '/lib/private/TemplateLayout.php',  | 
                                                        |
| 2051 | - 'OC\\Template\\Base' => $baseDir . '/lib/private/Template/Base.php',  | 
                                                        |
| 2052 | - 'OC\\Template\\CSSResourceLocator' => $baseDir . '/lib/private/Template/CSSResourceLocator.php',  | 
                                                        |
| 2053 | - 'OC\\Template\\JSCombiner' => $baseDir . '/lib/private/Template/JSCombiner.php',  | 
                                                        |
| 2054 | - 'OC\\Template\\JSConfigHelper' => $baseDir . '/lib/private/Template/JSConfigHelper.php',  | 
                                                        |
| 2055 | - 'OC\\Template\\JSResourceLocator' => $baseDir . '/lib/private/Template/JSResourceLocator.php',  | 
                                                        |
| 2056 | - 'OC\\Template\\ResourceLocator' => $baseDir . '/lib/private/Template/ResourceLocator.php',  | 
                                                        |
| 2057 | - 'OC\\Template\\ResourceNotFoundException' => $baseDir . '/lib/private/Template/ResourceNotFoundException.php',  | 
                                                        |
| 2058 | - 'OC\\Template\\Template' => $baseDir . '/lib/private/Template/Template.php',  | 
                                                        |
| 2059 | - 'OC\\Template\\TemplateFileLocator' => $baseDir . '/lib/private/Template/TemplateFileLocator.php',  | 
                                                        |
| 2060 | - 'OC\\Template\\TemplateManager' => $baseDir . '/lib/private/Template/TemplateManager.php',  | 
                                                        |
| 2061 | - 'OC\\TextProcessing\\Db\\Task' => $baseDir . '/lib/private/TextProcessing/Db/Task.php',  | 
                                                        |
| 2062 | - 'OC\\TextProcessing\\Db\\TaskMapper' => $baseDir . '/lib/private/TextProcessing/Db/TaskMapper.php',  | 
                                                        |
| 2063 | - 'OC\\TextProcessing\\Manager' => $baseDir . '/lib/private/TextProcessing/Manager.php',  | 
                                                        |
| 2064 | - 'OC\\TextProcessing\\RemoveOldTasksBackgroundJob' => $baseDir . '/lib/private/TextProcessing/RemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 2065 | - 'OC\\TextProcessing\\TaskBackgroundJob' => $baseDir . '/lib/private/TextProcessing/TaskBackgroundJob.php',  | 
                                                        |
| 2066 | - 'OC\\TextToImage\\Db\\Task' => $baseDir . '/lib/private/TextToImage/Db/Task.php',  | 
                                                        |
| 2067 | - 'OC\\TextToImage\\Db\\TaskMapper' => $baseDir . '/lib/private/TextToImage/Db/TaskMapper.php',  | 
                                                        |
| 2068 | - 'OC\\TextToImage\\Manager' => $baseDir . '/lib/private/TextToImage/Manager.php',  | 
                                                        |
| 2069 | - 'OC\\TextToImage\\RemoveOldTasksBackgroundJob' => $baseDir . '/lib/private/TextToImage/RemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 2070 | - 'OC\\TextToImage\\TaskBackgroundJob' => $baseDir . '/lib/private/TextToImage/TaskBackgroundJob.php',  | 
                                                        |
| 2071 | - 'OC\\Translation\\TranslationManager' => $baseDir . '/lib/private/Translation/TranslationManager.php',  | 
                                                        |
| 2072 | - 'OC\\URLGenerator' => $baseDir . '/lib/private/URLGenerator.php',  | 
                                                        |
| 2073 | - 'OC\\Updater' => $baseDir . '/lib/private/Updater.php',  | 
                                                        |
| 2074 | - 'OC\\Updater\\Changes' => $baseDir . '/lib/private/Updater/Changes.php',  | 
                                                        |
| 2075 | - 'OC\\Updater\\ChangesCheck' => $baseDir . '/lib/private/Updater/ChangesCheck.php',  | 
                                                        |
| 2076 | - 'OC\\Updater\\ChangesMapper' => $baseDir . '/lib/private/Updater/ChangesMapper.php',  | 
                                                        |
| 2077 | - 'OC\\Updater\\Exceptions\\ReleaseMetadataException' => $baseDir . '/lib/private/Updater/Exceptions/ReleaseMetadataException.php',  | 
                                                        |
| 2078 | - 'OC\\Updater\\ReleaseMetadata' => $baseDir . '/lib/private/Updater/ReleaseMetadata.php',  | 
                                                        |
| 2079 | - 'OC\\Updater\\VersionCheck' => $baseDir . '/lib/private/Updater/VersionCheck.php',  | 
                                                        |
| 2080 | - 'OC\\UserStatus\\ISettableProvider' => $baseDir . '/lib/private/UserStatus/ISettableProvider.php',  | 
                                                        |
| 2081 | - 'OC\\UserStatus\\Manager' => $baseDir . '/lib/private/UserStatus/Manager.php',  | 
                                                        |
| 2082 | - 'OC\\User\\AvailabilityCoordinator' => $baseDir . '/lib/private/User/AvailabilityCoordinator.php',  | 
                                                        |
| 2083 | - 'OC\\User\\Backend' => $baseDir . '/lib/private/User/Backend.php',  | 
                                                        |
| 2084 | - 'OC\\User\\BackgroundJobs\\CleanupDeletedUsers' => $baseDir . '/lib/private/User/BackgroundJobs/CleanupDeletedUsers.php',  | 
                                                        |
| 2085 | - 'OC\\User\\Database' => $baseDir . '/lib/private/User/Database.php',  | 
                                                        |
| 2086 | - 'OC\\User\\DisplayNameCache' => $baseDir . '/lib/private/User/DisplayNameCache.php',  | 
                                                        |
| 2087 | - 'OC\\User\\LazyUser' => $baseDir . '/lib/private/User/LazyUser.php',  | 
                                                        |
| 2088 | - 'OC\\User\\Listeners\\BeforeUserDeletedListener' => $baseDir . '/lib/private/User/Listeners/BeforeUserDeletedListener.php',  | 
                                                        |
| 2089 | - 'OC\\User\\Listeners\\UserChangedListener' => $baseDir . '/lib/private/User/Listeners/UserChangedListener.php',  | 
                                                        |
| 2090 | - 'OC\\User\\LoginException' => $baseDir . '/lib/private/User/LoginException.php',  | 
                                                        |
| 2091 | - 'OC\\User\\Manager' => $baseDir . '/lib/private/User/Manager.php',  | 
                                                        |
| 2092 | - 'OC\\User\\NoUserException' => $baseDir . '/lib/private/User/NoUserException.php',  | 
                                                        |
| 2093 | - 'OC\\User\\OutOfOfficeData' => $baseDir . '/lib/private/User/OutOfOfficeData.php',  | 
                                                        |
| 2094 | - 'OC\\User\\PartiallyDeletedUsersBackend' => $baseDir . '/lib/private/User/PartiallyDeletedUsersBackend.php',  | 
                                                        |
| 2095 | - 'OC\\User\\Session' => $baseDir . '/lib/private/User/Session.php',  | 
                                                        |
| 2096 | - 'OC\\User\\User' => $baseDir . '/lib/private/User/User.php',  | 
                                                        |
| 2097 | - 'OC_App' => $baseDir . '/lib/private/legacy/OC_App.php',  | 
                                                        |
| 2098 | - 'OC_Defaults' => $baseDir . '/lib/private/legacy/OC_Defaults.php',  | 
                                                        |
| 2099 | - 'OC_Helper' => $baseDir . '/lib/private/legacy/OC_Helper.php',  | 
                                                        |
| 2100 | - 'OC_Hook' => $baseDir . '/lib/private/legacy/OC_Hook.php',  | 
                                                        |
| 2101 | - 'OC_JSON' => $baseDir . '/lib/private/legacy/OC_JSON.php',  | 
                                                        |
| 2102 | - 'OC_Response' => $baseDir . '/lib/private/legacy/OC_Response.php',  | 
                                                        |
| 2103 | - 'OC_Template' => $baseDir . '/lib/private/legacy/OC_Template.php',  | 
                                                        |
| 2104 | - 'OC_User' => $baseDir . '/lib/private/legacy/OC_User.php',  | 
                                                        |
| 2105 | - 'OC_Util' => $baseDir . '/lib/private/legacy/OC_Util.php',  | 
                                                        |
| 9 | + 'Composer\\InstalledVersions' => $vendorDir.'/composer/InstalledVersions.php',  | 
                                                        |
| 10 | + 'NCU\\Config\\Exceptions\\IncorrectTypeException' => $baseDir.'/lib/unstable/Config/Exceptions/IncorrectTypeException.php',  | 
                                                        |
| 11 | + 'NCU\\Config\\Exceptions\\TypeConflictException' => $baseDir.'/lib/unstable/Config/Exceptions/TypeConflictException.php',  | 
                                                        |
| 12 | + 'NCU\\Config\\Exceptions\\UnknownKeyException' => $baseDir.'/lib/unstable/Config/Exceptions/UnknownKeyException.php',  | 
                                                        |
| 13 | + 'NCU\\Config\\IUserConfig' => $baseDir.'/lib/unstable/Config/IUserConfig.php',  | 
                                                        |
| 14 | + 'NCU\\Config\\Lexicon\\ConfigLexiconEntry' => $baseDir.'/lib/unstable/Config/Lexicon/ConfigLexiconEntry.php',  | 
                                                        |
| 15 | + 'NCU\\Config\\Lexicon\\ConfigLexiconStrictness' => $baseDir.'/lib/unstable/Config/Lexicon/ConfigLexiconStrictness.php',  | 
                                                        |
| 16 | + 'NCU\\Config\\Lexicon\\IConfigLexicon' => $baseDir.'/lib/unstable/Config/Lexicon/IConfigLexicon.php',  | 
                                                        |
| 17 | + 'NCU\\Config\\ValueType' => $baseDir.'/lib/unstable/Config/ValueType.php',  | 
                                                        |
| 18 | + 'NCU\\Federation\\ISignedCloudFederationProvider' => $baseDir.'/lib/unstable/Federation/ISignedCloudFederationProvider.php',  | 
                                                        |
| 19 | + 'NCU\\Security\\Signature\\Enum\\DigestAlgorithm' => $baseDir.'/lib/unstable/Security/Signature/Enum/DigestAlgorithm.php',  | 
                                                        |
| 20 | + 'NCU\\Security\\Signature\\Enum\\SignatoryStatus' => $baseDir.'/lib/unstable/Security/Signature/Enum/SignatoryStatus.php',  | 
                                                        |
| 21 | + 'NCU\\Security\\Signature\\Enum\\SignatoryType' => $baseDir.'/lib/unstable/Security/Signature/Enum/SignatoryType.php',  | 
                                                        |
| 22 | + 'NCU\\Security\\Signature\\Enum\\SignatureAlgorithm' => $baseDir.'/lib/unstable/Security/Signature/Enum/SignatureAlgorithm.php',  | 
                                                        |
| 23 | + 'NCU\\Security\\Signature\\Exceptions\\IdentityNotFoundException' => $baseDir.'/lib/unstable/Security/Signature/Exceptions/IdentityNotFoundException.php',  | 
                                                        |
| 24 | + 'NCU\\Security\\Signature\\Exceptions\\IncomingRequestException' => $baseDir.'/lib/unstable/Security/Signature/Exceptions/IncomingRequestException.php',  | 
                                                        |
| 25 | + 'NCU\\Security\\Signature\\Exceptions\\InvalidKeyOriginException' => $baseDir.'/lib/unstable/Security/Signature/Exceptions/InvalidKeyOriginException.php',  | 
                                                        |
| 26 | + 'NCU\\Security\\Signature\\Exceptions\\InvalidSignatureException' => $baseDir.'/lib/unstable/Security/Signature/Exceptions/InvalidSignatureException.php',  | 
                                                        |
| 27 | + 'NCU\\Security\\Signature\\Exceptions\\SignatoryConflictException' => $baseDir.'/lib/unstable/Security/Signature/Exceptions/SignatoryConflictException.php',  | 
                                                        |
| 28 | + 'NCU\\Security\\Signature\\Exceptions\\SignatoryException' => $baseDir.'/lib/unstable/Security/Signature/Exceptions/SignatoryException.php',  | 
                                                        |
| 29 | + 'NCU\\Security\\Signature\\Exceptions\\SignatoryNotFoundException' => $baseDir.'/lib/unstable/Security/Signature/Exceptions/SignatoryNotFoundException.php',  | 
                                                        |
| 30 | + 'NCU\\Security\\Signature\\Exceptions\\SignatureElementNotFoundException' => $baseDir.'/lib/unstable/Security/Signature/Exceptions/SignatureElementNotFoundException.php',  | 
                                                        |
| 31 | + 'NCU\\Security\\Signature\\Exceptions\\SignatureException' => $baseDir.'/lib/unstable/Security/Signature/Exceptions/SignatureException.php',  | 
                                                        |
| 32 | + 'NCU\\Security\\Signature\\Exceptions\\SignatureNotFoundException' => $baseDir.'/lib/unstable/Security/Signature/Exceptions/SignatureNotFoundException.php',  | 
                                                        |
| 33 | + 'NCU\\Security\\Signature\\IIncomingSignedRequest' => $baseDir.'/lib/unstable/Security/Signature/IIncomingSignedRequest.php',  | 
                                                        |
| 34 | + 'NCU\\Security\\Signature\\IOutgoingSignedRequest' => $baseDir.'/lib/unstable/Security/Signature/IOutgoingSignedRequest.php',  | 
                                                        |
| 35 | + 'NCU\\Security\\Signature\\ISignatoryManager' => $baseDir.'/lib/unstable/Security/Signature/ISignatoryManager.php',  | 
                                                        |
| 36 | + 'NCU\\Security\\Signature\\ISignatureManager' => $baseDir.'/lib/unstable/Security/Signature/ISignatureManager.php',  | 
                                                        |
| 37 | + 'NCU\\Security\\Signature\\ISignedRequest' => $baseDir.'/lib/unstable/Security/Signature/ISignedRequest.php',  | 
                                                        |
| 38 | + 'NCU\\Security\\Signature\\Model\\Signatory' => $baseDir.'/lib/unstable/Security/Signature/Model/Signatory.php',  | 
                                                        |
| 39 | + 'OCP\\Accounts\\IAccount' => $baseDir.'/lib/public/Accounts/IAccount.php',  | 
                                                        |
| 40 | + 'OCP\\Accounts\\IAccountManager' => $baseDir.'/lib/public/Accounts/IAccountManager.php',  | 
                                                        |
| 41 | + 'OCP\\Accounts\\IAccountProperty' => $baseDir.'/lib/public/Accounts/IAccountProperty.php',  | 
                                                        |
| 42 | + 'OCP\\Accounts\\IAccountPropertyCollection' => $baseDir.'/lib/public/Accounts/IAccountPropertyCollection.php',  | 
                                                        |
| 43 | + 'OCP\\Accounts\\PropertyDoesNotExistException' => $baseDir.'/lib/public/Accounts/PropertyDoesNotExistException.php',  | 
                                                        |
| 44 | + 'OCP\\Accounts\\UserUpdatedEvent' => $baseDir.'/lib/public/Accounts/UserUpdatedEvent.php',  | 
                                                        |
| 45 | + 'OCP\\Activity\\ActivitySettings' => $baseDir.'/lib/public/Activity/ActivitySettings.php',  | 
                                                        |
| 46 | + 'OCP\\Activity\\Exceptions\\FilterNotFoundException' => $baseDir.'/lib/public/Activity/Exceptions/FilterNotFoundException.php',  | 
                                                        |
| 47 | + 'OCP\\Activity\\Exceptions\\IncompleteActivityException' => $baseDir.'/lib/public/Activity/Exceptions/IncompleteActivityException.php',  | 
                                                        |
| 48 | + 'OCP\\Activity\\Exceptions\\InvalidValueException' => $baseDir.'/lib/public/Activity/Exceptions/InvalidValueException.php',  | 
                                                        |
| 49 | + 'OCP\\Activity\\Exceptions\\SettingNotFoundException' => $baseDir.'/lib/public/Activity/Exceptions/SettingNotFoundException.php',  | 
                                                        |
| 50 | + 'OCP\\Activity\\Exceptions\\UnknownActivityException' => $baseDir.'/lib/public/Activity/Exceptions/UnknownActivityException.php',  | 
                                                        |
| 51 | + 'OCP\\Activity\\IConsumer' => $baseDir.'/lib/public/Activity/IConsumer.php',  | 
                                                        |
| 52 | + 'OCP\\Activity\\IEvent' => $baseDir.'/lib/public/Activity/IEvent.php',  | 
                                                        |
| 53 | + 'OCP\\Activity\\IEventMerger' => $baseDir.'/lib/public/Activity/IEventMerger.php',  | 
                                                        |
| 54 | + 'OCP\\Activity\\IExtension' => $baseDir.'/lib/public/Activity/IExtension.php',  | 
                                                        |
| 55 | + 'OCP\\Activity\\IFilter' => $baseDir.'/lib/public/Activity/IFilter.php',  | 
                                                        |
| 56 | + 'OCP\\Activity\\IManager' => $baseDir.'/lib/public/Activity/IManager.php',  | 
                                                        |
| 57 | + 'OCP\\Activity\\IProvider' => $baseDir.'/lib/public/Activity/IProvider.php',  | 
                                                        |
| 58 | + 'OCP\\Activity\\ISetting' => $baseDir.'/lib/public/Activity/ISetting.php',  | 
                                                        |
| 59 | + 'OCP\\AppFramework\\ApiController' => $baseDir.'/lib/public/AppFramework/ApiController.php',  | 
                                                        |
| 60 | + 'OCP\\AppFramework\\App' => $baseDir.'/lib/public/AppFramework/App.php',  | 
                                                        |
| 61 | + 'OCP\\AppFramework\\AuthPublicShareController' => $baseDir.'/lib/public/AppFramework/AuthPublicShareController.php',  | 
                                                        |
| 62 | + 'OCP\\AppFramework\\Bootstrap\\IBootContext' => $baseDir.'/lib/public/AppFramework/Bootstrap/IBootContext.php',  | 
                                                        |
| 63 | + 'OCP\\AppFramework\\Bootstrap\\IBootstrap' => $baseDir.'/lib/public/AppFramework/Bootstrap/IBootstrap.php',  | 
                                                        |
| 64 | + 'OCP\\AppFramework\\Bootstrap\\IRegistrationContext' => $baseDir.'/lib/public/AppFramework/Bootstrap/IRegistrationContext.php',  | 
                                                        |
| 65 | + 'OCP\\AppFramework\\Controller' => $baseDir.'/lib/public/AppFramework/Controller.php',  | 
                                                        |
| 66 | + 'OCP\\AppFramework\\Db\\DoesNotExistException' => $baseDir.'/lib/public/AppFramework/Db/DoesNotExistException.php',  | 
                                                        |
| 67 | + 'OCP\\AppFramework\\Db\\Entity' => $baseDir.'/lib/public/AppFramework/Db/Entity.php',  | 
                                                        |
| 68 | + 'OCP\\AppFramework\\Db\\IMapperException' => $baseDir.'/lib/public/AppFramework/Db/IMapperException.php',  | 
                                                        |
| 69 | + 'OCP\\AppFramework\\Db\\MultipleObjectsReturnedException' => $baseDir.'/lib/public/AppFramework/Db/MultipleObjectsReturnedException.php',  | 
                                                        |
| 70 | + 'OCP\\AppFramework\\Db\\QBMapper' => $baseDir.'/lib/public/AppFramework/Db/QBMapper.php',  | 
                                                        |
| 71 | + 'OCP\\AppFramework\\Db\\TTransactional' => $baseDir.'/lib/public/AppFramework/Db/TTransactional.php',  | 
                                                        |
| 72 | + 'OCP\\AppFramework\\Http' => $baseDir.'/lib/public/AppFramework/Http.php',  | 
                                                        |
| 73 | + 'OCP\\AppFramework\\Http\\Attribute\\ARateLimit' => $baseDir.'/lib/public/AppFramework/Http/Attribute/ARateLimit.php',  | 
                                                        |
| 74 | + 'OCP\\AppFramework\\Http\\Attribute\\AnonRateLimit' => $baseDir.'/lib/public/AppFramework/Http/Attribute/AnonRateLimit.php',  | 
                                                        |
| 75 | + 'OCP\\AppFramework\\Http\\Attribute\\ApiRoute' => $baseDir.'/lib/public/AppFramework/Http/Attribute/ApiRoute.php',  | 
                                                        |
| 76 | + 'OCP\\AppFramework\\Http\\Attribute\\AppApiAdminAccessWithoutUser' => $baseDir.'/lib/public/AppFramework/Http/Attribute/AppApiAdminAccessWithoutUser.php',  | 
                                                        |
| 77 | + 'OCP\\AppFramework\\Http\\Attribute\\AuthorizedAdminSetting' => $baseDir.'/lib/public/AppFramework/Http/Attribute/AuthorizedAdminSetting.php',  | 
                                                        |
| 78 | + 'OCP\\AppFramework\\Http\\Attribute\\BruteForceProtection' => $baseDir.'/lib/public/AppFramework/Http/Attribute/BruteForceProtection.php',  | 
                                                        |
| 79 | + 'OCP\\AppFramework\\Http\\Attribute\\CORS' => $baseDir.'/lib/public/AppFramework/Http/Attribute/CORS.php',  | 
                                                        |
| 80 | + 'OCP\\AppFramework\\Http\\Attribute\\ExAppRequired' => $baseDir.'/lib/public/AppFramework/Http/Attribute/ExAppRequired.php',  | 
                                                        |
| 81 | + 'OCP\\AppFramework\\Http\\Attribute\\FrontpageRoute' => $baseDir.'/lib/public/AppFramework/Http/Attribute/FrontpageRoute.php',  | 
                                                        |
| 82 | + 'OCP\\AppFramework\\Http\\Attribute\\IgnoreOpenAPI' => $baseDir.'/lib/public/AppFramework/Http/Attribute/IgnoreOpenAPI.php',  | 
                                                        |
| 83 | + 'OCP\\AppFramework\\Http\\Attribute\\NoAdminRequired' => $baseDir.'/lib/public/AppFramework/Http/Attribute/NoAdminRequired.php',  | 
                                                        |
| 84 | + 'OCP\\AppFramework\\Http\\Attribute\\NoCSRFRequired' => $baseDir.'/lib/public/AppFramework/Http/Attribute/NoCSRFRequired.php',  | 
                                                        |
| 85 | + 'OCP\\AppFramework\\Http\\Attribute\\OpenAPI' => $baseDir.'/lib/public/AppFramework/Http/Attribute/OpenAPI.php',  | 
                                                        |
| 86 | + 'OCP\\AppFramework\\Http\\Attribute\\PasswordConfirmationRequired' => $baseDir.'/lib/public/AppFramework/Http/Attribute/PasswordConfirmationRequired.php',  | 
                                                        |
| 87 | + 'OCP\\AppFramework\\Http\\Attribute\\PublicPage' => $baseDir.'/lib/public/AppFramework/Http/Attribute/PublicPage.php',  | 
                                                        |
| 88 | + 'OCP\\AppFramework\\Http\\Attribute\\Route' => $baseDir.'/lib/public/AppFramework/Http/Attribute/Route.php',  | 
                                                        |
| 89 | + 'OCP\\AppFramework\\Http\\Attribute\\StrictCookiesRequired' => $baseDir.'/lib/public/AppFramework/Http/Attribute/StrictCookiesRequired.php',  | 
                                                        |
| 90 | + 'OCP\\AppFramework\\Http\\Attribute\\SubAdminRequired' => $baseDir.'/lib/public/AppFramework/Http/Attribute/SubAdminRequired.php',  | 
                                                        |
| 91 | + 'OCP\\AppFramework\\Http\\Attribute\\UseSession' => $baseDir.'/lib/public/AppFramework/Http/Attribute/UseSession.php',  | 
                                                        |
| 92 | + 'OCP\\AppFramework\\Http\\Attribute\\UserRateLimit' => $baseDir.'/lib/public/AppFramework/Http/Attribute/UserRateLimit.php',  | 
                                                        |
| 93 | + 'OCP\\AppFramework\\Http\\ContentSecurityPolicy' => $baseDir.'/lib/public/AppFramework/Http/ContentSecurityPolicy.php',  | 
                                                        |
| 94 | + 'OCP\\AppFramework\\Http\\DataDisplayResponse' => $baseDir.'/lib/public/AppFramework/Http/DataDisplayResponse.php',  | 
                                                        |
| 95 | + 'OCP\\AppFramework\\Http\\DataDownloadResponse' => $baseDir.'/lib/public/AppFramework/Http/DataDownloadResponse.php',  | 
                                                        |
| 96 | + 'OCP\\AppFramework\\Http\\DataResponse' => $baseDir.'/lib/public/AppFramework/Http/DataResponse.php',  | 
                                                        |
| 97 | + 'OCP\\AppFramework\\Http\\DownloadResponse' => $baseDir.'/lib/public/AppFramework/Http/DownloadResponse.php',  | 
                                                        |
| 98 | + 'OCP\\AppFramework\\Http\\EmptyContentSecurityPolicy' => $baseDir.'/lib/public/AppFramework/Http/EmptyContentSecurityPolicy.php',  | 
                                                        |
| 99 | + 'OCP\\AppFramework\\Http\\EmptyFeaturePolicy' => $baseDir.'/lib/public/AppFramework/Http/EmptyFeaturePolicy.php',  | 
                                                        |
| 100 | + 'OCP\\AppFramework\\Http\\Events\\BeforeLoginTemplateRenderedEvent' => $baseDir.'/lib/public/AppFramework/Http/Events/BeforeLoginTemplateRenderedEvent.php',  | 
                                                        |
| 101 | + 'OCP\\AppFramework\\Http\\Events\\BeforeTemplateRenderedEvent' => $baseDir.'/lib/public/AppFramework/Http/Events/BeforeTemplateRenderedEvent.php',  | 
                                                        |
| 102 | + 'OCP\\AppFramework\\Http\\FeaturePolicy' => $baseDir.'/lib/public/AppFramework/Http/FeaturePolicy.php',  | 
                                                        |
| 103 | + 'OCP\\AppFramework\\Http\\FileDisplayResponse' => $baseDir.'/lib/public/AppFramework/Http/FileDisplayResponse.php',  | 
                                                        |
| 104 | + 'OCP\\AppFramework\\Http\\ICallbackResponse' => $baseDir.'/lib/public/AppFramework/Http/ICallbackResponse.php',  | 
                                                        |
| 105 | + 'OCP\\AppFramework\\Http\\IOutput' => $baseDir.'/lib/public/AppFramework/Http/IOutput.php',  | 
                                                        |
| 106 | + 'OCP\\AppFramework\\Http\\JSONResponse' => $baseDir.'/lib/public/AppFramework/Http/JSONResponse.php',  | 
                                                        |
| 107 | + 'OCP\\AppFramework\\Http\\NotFoundResponse' => $baseDir.'/lib/public/AppFramework/Http/NotFoundResponse.php',  | 
                                                        |
| 108 | + 'OCP\\AppFramework\\Http\\ParameterOutOfRangeException' => $baseDir.'/lib/public/AppFramework/Http/ParameterOutOfRangeException.php',  | 
                                                        |
| 109 | + 'OCP\\AppFramework\\Http\\RedirectResponse' => $baseDir.'/lib/public/AppFramework/Http/RedirectResponse.php',  | 
                                                        |
| 110 | + 'OCP\\AppFramework\\Http\\RedirectToDefaultAppResponse' => $baseDir.'/lib/public/AppFramework/Http/RedirectToDefaultAppResponse.php',  | 
                                                        |
| 111 | + 'OCP\\AppFramework\\Http\\Response' => $baseDir.'/lib/public/AppFramework/Http/Response.php',  | 
                                                        |
| 112 | + 'OCP\\AppFramework\\Http\\StandaloneTemplateResponse' => $baseDir.'/lib/public/AppFramework/Http/StandaloneTemplateResponse.php',  | 
                                                        |
| 113 | + 'OCP\\AppFramework\\Http\\StreamResponse' => $baseDir.'/lib/public/AppFramework/Http/StreamResponse.php',  | 
                                                        |
| 114 | + 'OCP\\AppFramework\\Http\\StrictContentSecurityPolicy' => $baseDir.'/lib/public/AppFramework/Http/StrictContentSecurityPolicy.php',  | 
                                                        |
| 115 | + 'OCP\\AppFramework\\Http\\StrictEvalContentSecurityPolicy' => $baseDir.'/lib/public/AppFramework/Http/StrictEvalContentSecurityPolicy.php',  | 
                                                        |
| 116 | + 'OCP\\AppFramework\\Http\\StrictInlineContentSecurityPolicy' => $baseDir.'/lib/public/AppFramework/Http/StrictInlineContentSecurityPolicy.php',  | 
                                                        |
| 117 | + 'OCP\\AppFramework\\Http\\TemplateResponse' => $baseDir.'/lib/public/AppFramework/Http/TemplateResponse.php',  | 
                                                        |
| 118 | + 'OCP\\AppFramework\\Http\\Template\\ExternalShareMenuAction' => $baseDir.'/lib/public/AppFramework/Http/Template/ExternalShareMenuAction.php',  | 
                                                        |
| 119 | + 'OCP\\AppFramework\\Http\\Template\\IMenuAction' => $baseDir.'/lib/public/AppFramework/Http/Template/IMenuAction.php',  | 
                                                        |
| 120 | + 'OCP\\AppFramework\\Http\\Template\\LinkMenuAction' => $baseDir.'/lib/public/AppFramework/Http/Template/LinkMenuAction.php',  | 
                                                        |
| 121 | + 'OCP\\AppFramework\\Http\\Template\\PublicTemplateResponse' => $baseDir.'/lib/public/AppFramework/Http/Template/PublicTemplateResponse.php',  | 
                                                        |
| 122 | + 'OCP\\AppFramework\\Http\\Template\\SimpleMenuAction' => $baseDir.'/lib/public/AppFramework/Http/Template/SimpleMenuAction.php',  | 
                                                        |
| 123 | + 'OCP\\AppFramework\\Http\\TextPlainResponse' => $baseDir.'/lib/public/AppFramework/Http/TextPlainResponse.php',  | 
                                                        |
| 124 | + 'OCP\\AppFramework\\Http\\TooManyRequestsResponse' => $baseDir.'/lib/public/AppFramework/Http/TooManyRequestsResponse.php',  | 
                                                        |
| 125 | + 'OCP\\AppFramework\\Http\\ZipResponse' => $baseDir.'/lib/public/AppFramework/Http/ZipResponse.php',  | 
                                                        |
| 126 | + 'OCP\\AppFramework\\IAppContainer' => $baseDir.'/lib/public/AppFramework/IAppContainer.php',  | 
                                                        |
| 127 | + 'OCP\\AppFramework\\Middleware' => $baseDir.'/lib/public/AppFramework/Middleware.php',  | 
                                                        |
| 128 | + 'OCP\\AppFramework\\OCSController' => $baseDir.'/lib/public/AppFramework/OCSController.php',  | 
                                                        |
| 129 | + 'OCP\\AppFramework\\OCS\\OCSBadRequestException' => $baseDir.'/lib/public/AppFramework/OCS/OCSBadRequestException.php',  | 
                                                        |
| 130 | + 'OCP\\AppFramework\\OCS\\OCSException' => $baseDir.'/lib/public/AppFramework/OCS/OCSException.php',  | 
                                                        |
| 131 | + 'OCP\\AppFramework\\OCS\\OCSForbiddenException' => $baseDir.'/lib/public/AppFramework/OCS/OCSForbiddenException.php',  | 
                                                        |
| 132 | + 'OCP\\AppFramework\\OCS\\OCSNotFoundException' => $baseDir.'/lib/public/AppFramework/OCS/OCSNotFoundException.php',  | 
                                                        |
| 133 | + 'OCP\\AppFramework\\OCS\\OCSPreconditionFailedException' => $baseDir.'/lib/public/AppFramework/OCS/OCSPreconditionFailedException.php',  | 
                                                        |
| 134 | + 'OCP\\AppFramework\\PublicShareController' => $baseDir.'/lib/public/AppFramework/PublicShareController.php',  | 
                                                        |
| 135 | + 'OCP\\AppFramework\\QueryException' => $baseDir.'/lib/public/AppFramework/QueryException.php',  | 
                                                        |
| 136 | + 'OCP\\AppFramework\\Services\\IAppConfig' => $baseDir.'/lib/public/AppFramework/Services/IAppConfig.php',  | 
                                                        |
| 137 | + 'OCP\\AppFramework\\Services\\IInitialState' => $baseDir.'/lib/public/AppFramework/Services/IInitialState.php',  | 
                                                        |
| 138 | + 'OCP\\AppFramework\\Services\\InitialStateProvider' => $baseDir.'/lib/public/AppFramework/Services/InitialStateProvider.php',  | 
                                                        |
| 139 | + 'OCP\\AppFramework\\Utility\\IControllerMethodReflector' => $baseDir.'/lib/public/AppFramework/Utility/IControllerMethodReflector.php',  | 
                                                        |
| 140 | + 'OCP\\AppFramework\\Utility\\ITimeFactory' => $baseDir.'/lib/public/AppFramework/Utility/ITimeFactory.php',  | 
                                                        |
| 141 | + 'OCP\\App\\AppPathNotFoundException' => $baseDir.'/lib/public/App/AppPathNotFoundException.php',  | 
                                                        |
| 142 | + 'OCP\\App\\Events\\AppDisableEvent' => $baseDir.'/lib/public/App/Events/AppDisableEvent.php',  | 
                                                        |
| 143 | + 'OCP\\App\\Events\\AppEnableEvent' => $baseDir.'/lib/public/App/Events/AppEnableEvent.php',  | 
                                                        |
| 144 | + 'OCP\\App\\Events\\AppUpdateEvent' => $baseDir.'/lib/public/App/Events/AppUpdateEvent.php',  | 
                                                        |
| 145 | + 'OCP\\App\\IAppManager' => $baseDir.'/lib/public/App/IAppManager.php',  | 
                                                        |
| 146 | + 'OCP\\App\\ManagerEvent' => $baseDir.'/lib/public/App/ManagerEvent.php',  | 
                                                        |
| 147 | + 'OCP\\Authentication\\Events\\AnyLoginFailedEvent' => $baseDir.'/lib/public/Authentication/Events/AnyLoginFailedEvent.php',  | 
                                                        |
| 148 | + 'OCP\\Authentication\\Events\\LoginFailedEvent' => $baseDir.'/lib/public/Authentication/Events/LoginFailedEvent.php',  | 
                                                        |
| 149 | + 'OCP\\Authentication\\Exceptions\\CredentialsUnavailableException' => $baseDir.'/lib/public/Authentication/Exceptions/CredentialsUnavailableException.php',  | 
                                                        |
| 150 | + 'OCP\\Authentication\\Exceptions\\ExpiredTokenException' => $baseDir.'/lib/public/Authentication/Exceptions/ExpiredTokenException.php',  | 
                                                        |
| 151 | + 'OCP\\Authentication\\Exceptions\\InvalidTokenException' => $baseDir.'/lib/public/Authentication/Exceptions/InvalidTokenException.php',  | 
                                                        |
| 152 | + 'OCP\\Authentication\\Exceptions\\PasswordUnavailableException' => $baseDir.'/lib/public/Authentication/Exceptions/PasswordUnavailableException.php',  | 
                                                        |
| 153 | + 'OCP\\Authentication\\Exceptions\\WipeTokenException' => $baseDir.'/lib/public/Authentication/Exceptions/WipeTokenException.php',  | 
                                                        |
| 154 | + 'OCP\\Authentication\\IAlternativeLogin' => $baseDir.'/lib/public/Authentication/IAlternativeLogin.php',  | 
                                                        |
| 155 | + 'OCP\\Authentication\\IApacheBackend' => $baseDir.'/lib/public/Authentication/IApacheBackend.php',  | 
                                                        |
| 156 | + 'OCP\\Authentication\\IProvideUserSecretBackend' => $baseDir.'/lib/public/Authentication/IProvideUserSecretBackend.php',  | 
                                                        |
| 157 | + 'OCP\\Authentication\\LoginCredentials\\ICredentials' => $baseDir.'/lib/public/Authentication/LoginCredentials/ICredentials.php',  | 
                                                        |
| 158 | + 'OCP\\Authentication\\LoginCredentials\\IStore' => $baseDir.'/lib/public/Authentication/LoginCredentials/IStore.php',  | 
                                                        |
| 159 | + 'OCP\\Authentication\\Token\\IProvider' => $baseDir.'/lib/public/Authentication/Token/IProvider.php',  | 
                                                        |
| 160 | + 'OCP\\Authentication\\Token\\IToken' => $baseDir.'/lib/public/Authentication/Token/IToken.php',  | 
                                                        |
| 161 | + 'OCP\\Authentication\\TwoFactorAuth\\ALoginSetupController' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/ALoginSetupController.php',  | 
                                                        |
| 162 | + 'OCP\\Authentication\\TwoFactorAuth\\IActivatableAtLogin' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/IActivatableAtLogin.php',  | 
                                                        |
| 163 | + 'OCP\\Authentication\\TwoFactorAuth\\IActivatableByAdmin' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/IActivatableByAdmin.php',  | 
                                                        |
| 164 | + 'OCP\\Authentication\\TwoFactorAuth\\IDeactivatableByAdmin' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/IDeactivatableByAdmin.php',  | 
                                                        |
| 165 | + 'OCP\\Authentication\\TwoFactorAuth\\ILoginSetupProvider' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/ILoginSetupProvider.php',  | 
                                                        |
| 166 | + 'OCP\\Authentication\\TwoFactorAuth\\IPersonalProviderSettings' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/IPersonalProviderSettings.php',  | 
                                                        |
| 167 | + 'OCP\\Authentication\\TwoFactorAuth\\IProvider' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/IProvider.php',  | 
                                                        |
| 168 | + 'OCP\\Authentication\\TwoFactorAuth\\IProvidesCustomCSP' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/IProvidesCustomCSP.php',  | 
                                                        |
| 169 | + 'OCP\\Authentication\\TwoFactorAuth\\IProvidesIcons' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/IProvidesIcons.php',  | 
                                                        |
| 170 | + 'OCP\\Authentication\\TwoFactorAuth\\IProvidesPersonalSettings' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/IProvidesPersonalSettings.php',  | 
                                                        |
| 171 | + 'OCP\\Authentication\\TwoFactorAuth\\IRegistry' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/IRegistry.php',  | 
                                                        |
| 172 | + 'OCP\\Authentication\\TwoFactorAuth\\RegistryEvent' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/RegistryEvent.php',  | 
                                                        |
| 173 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorException' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/TwoFactorException.php',  | 
                                                        |
| 174 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderChallengeFailed' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderChallengeFailed.php',  | 
                                                        |
| 175 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderChallengePassed' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderChallengePassed.php',  | 
                                                        |
| 176 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderDisabled' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderDisabled.php',  | 
                                                        |
| 177 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserDisabled' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserDisabled.php',  | 
                                                        |
| 178 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserEnabled' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserEnabled.php',  | 
                                                        |
| 179 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserRegistered' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserRegistered.php',  | 
                                                        |
| 180 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderForUserUnregistered' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderForUserUnregistered.php',  | 
                                                        |
| 181 | + 'OCP\\Authentication\\TwoFactorAuth\\TwoFactorProviderUserDeleted' => $baseDir.'/lib/public/Authentication/TwoFactorAuth/TwoFactorProviderUserDeleted.php',  | 
                                                        |
| 182 | + 'OCP\\AutoloadNotAllowedException' => $baseDir.'/lib/public/AutoloadNotAllowedException.php',  | 
                                                        |
| 183 | + 'OCP\\BackgroundJob\\IJob' => $baseDir.'/lib/public/BackgroundJob/IJob.php',  | 
                                                        |
| 184 | + 'OCP\\BackgroundJob\\IJobList' => $baseDir.'/lib/public/BackgroundJob/IJobList.php',  | 
                                                        |
| 185 | + 'OCP\\BackgroundJob\\IParallelAwareJob' => $baseDir.'/lib/public/BackgroundJob/IParallelAwareJob.php',  | 
                                                        |
| 186 | + 'OCP\\BackgroundJob\\Job' => $baseDir.'/lib/public/BackgroundJob/Job.php',  | 
                                                        |
| 187 | + 'OCP\\BackgroundJob\\QueuedJob' => $baseDir.'/lib/public/BackgroundJob/QueuedJob.php',  | 
                                                        |
| 188 | + 'OCP\\BackgroundJob\\TimedJob' => $baseDir.'/lib/public/BackgroundJob/TimedJob.php',  | 
                                                        |
| 189 | + 'OCP\\BeforeSabrePubliclyLoadedEvent' => $baseDir.'/lib/public/BeforeSabrePubliclyLoadedEvent.php',  | 
                                                        |
| 190 | + 'OCP\\Broadcast\\Events\\IBroadcastEvent' => $baseDir.'/lib/public/Broadcast/Events/IBroadcastEvent.php',  | 
                                                        |
| 191 | + 'OCP\\Cache\\CappedMemoryCache' => $baseDir.'/lib/public/Cache/CappedMemoryCache.php',  | 
                                                        |
| 192 | + 'OCP\\Calendar\\BackendTemporarilyUnavailableException' => $baseDir.'/lib/public/Calendar/BackendTemporarilyUnavailableException.php',  | 
                                                        |
| 193 | + 'OCP\\Calendar\\CalendarEventStatus' => $baseDir.'/lib/public/Calendar/CalendarEventStatus.php',  | 
                                                        |
| 194 | + 'OCP\\Calendar\\Events\\AbstractCalendarObjectEvent' => $baseDir.'/lib/public/Calendar/Events/AbstractCalendarObjectEvent.php',  | 
                                                        |
| 195 | + 'OCP\\Calendar\\Events\\CalendarObjectCreatedEvent' => $baseDir.'/lib/public/Calendar/Events/CalendarObjectCreatedEvent.php',  | 
                                                        |
| 196 | + 'OCP\\Calendar\\Events\\CalendarObjectDeletedEvent' => $baseDir.'/lib/public/Calendar/Events/CalendarObjectDeletedEvent.php',  | 
                                                        |
| 197 | + 'OCP\\Calendar\\Events\\CalendarObjectMovedEvent' => $baseDir.'/lib/public/Calendar/Events/CalendarObjectMovedEvent.php',  | 
                                                        |
| 198 | + 'OCP\\Calendar\\Events\\CalendarObjectMovedToTrashEvent' => $baseDir.'/lib/public/Calendar/Events/CalendarObjectMovedToTrashEvent.php',  | 
                                                        |
| 199 | + 'OCP\\Calendar\\Events\\CalendarObjectRestoredEvent' => $baseDir.'/lib/public/Calendar/Events/CalendarObjectRestoredEvent.php',  | 
                                                        |
| 200 | + 'OCP\\Calendar\\Events\\CalendarObjectUpdatedEvent' => $baseDir.'/lib/public/Calendar/Events/CalendarObjectUpdatedEvent.php',  | 
                                                        |
| 201 | + 'OCP\\Calendar\\Exceptions\\CalendarException' => $baseDir.'/lib/public/Calendar/Exceptions/CalendarException.php',  | 
                                                        |
| 202 | + 'OCP\\Calendar\\IAvailabilityResult' => $baseDir.'/lib/public/Calendar/IAvailabilityResult.php',  | 
                                                        |
| 203 | + 'OCP\\Calendar\\ICalendar' => $baseDir.'/lib/public/Calendar/ICalendar.php',  | 
                                                        |
| 204 | + 'OCP\\Calendar\\ICalendarEventBuilder' => $baseDir.'/lib/public/Calendar/ICalendarEventBuilder.php',  | 
                                                        |
| 205 | + 'OCP\\Calendar\\ICalendarIsShared' => $baseDir.'/lib/public/Calendar/ICalendarIsShared.php',  | 
                                                        |
| 206 | + 'OCP\\Calendar\\ICalendarIsWritable' => $baseDir.'/lib/public/Calendar/ICalendarIsWritable.php',  | 
                                                        |
| 207 | + 'OCP\\Calendar\\ICalendarProvider' => $baseDir.'/lib/public/Calendar/ICalendarProvider.php',  | 
                                                        |
| 208 | + 'OCP\\Calendar\\ICalendarQuery' => $baseDir.'/lib/public/Calendar/ICalendarQuery.php',  | 
                                                        |
| 209 | + 'OCP\\Calendar\\ICreateFromString' => $baseDir.'/lib/public/Calendar/ICreateFromString.php',  | 
                                                        |
| 210 | + 'OCP\\Calendar\\IHandleImipMessage' => $baseDir.'/lib/public/Calendar/IHandleImipMessage.php',  | 
                                                        |
| 211 | + 'OCP\\Calendar\\IManager' => $baseDir.'/lib/public/Calendar/IManager.php',  | 
                                                        |
| 212 | + 'OCP\\Calendar\\IMetadataProvider' => $baseDir.'/lib/public/Calendar/IMetadataProvider.php',  | 
                                                        |
| 213 | + 'OCP\\Calendar\\Resource\\IBackend' => $baseDir.'/lib/public/Calendar/Resource/IBackend.php',  | 
                                                        |
| 214 | + 'OCP\\Calendar\\Resource\\IManager' => $baseDir.'/lib/public/Calendar/Resource/IManager.php',  | 
                                                        |
| 215 | + 'OCP\\Calendar\\Resource\\IResource' => $baseDir.'/lib/public/Calendar/Resource/IResource.php',  | 
                                                        |
| 216 | + 'OCP\\Calendar\\Resource\\IResourceMetadata' => $baseDir.'/lib/public/Calendar/Resource/IResourceMetadata.php',  | 
                                                        |
| 217 | + 'OCP\\Calendar\\Room\\IBackend' => $baseDir.'/lib/public/Calendar/Room/IBackend.php',  | 
                                                        |
| 218 | + 'OCP\\Calendar\\Room\\IManager' => $baseDir.'/lib/public/Calendar/Room/IManager.php',  | 
                                                        |
| 219 | + 'OCP\\Calendar\\Room\\IRoom' => $baseDir.'/lib/public/Calendar/Room/IRoom.php',  | 
                                                        |
| 220 | + 'OCP\\Calendar\\Room\\IRoomMetadata' => $baseDir.'/lib/public/Calendar/Room/IRoomMetadata.php',  | 
                                                        |
| 221 | + 'OCP\\Capabilities\\ICapability' => $baseDir.'/lib/public/Capabilities/ICapability.php',  | 
                                                        |
| 222 | + 'OCP\\Capabilities\\IInitialStateExcludedCapability' => $baseDir.'/lib/public/Capabilities/IInitialStateExcludedCapability.php',  | 
                                                        |
| 223 | + 'OCP\\Capabilities\\IPublicCapability' => $baseDir.'/lib/public/Capabilities/IPublicCapability.php',  | 
                                                        |
| 224 | + 'OCP\\Collaboration\\AutoComplete\\AutoCompleteEvent' => $baseDir.'/lib/public/Collaboration/AutoComplete/AutoCompleteEvent.php',  | 
                                                        |
| 225 | + 'OCP\\Collaboration\\AutoComplete\\AutoCompleteFilterEvent' => $baseDir.'/lib/public/Collaboration/AutoComplete/AutoCompleteFilterEvent.php',  | 
                                                        |
| 226 | + 'OCP\\Collaboration\\AutoComplete\\IManager' => $baseDir.'/lib/public/Collaboration/AutoComplete/IManager.php',  | 
                                                        |
| 227 | + 'OCP\\Collaboration\\AutoComplete\\ISorter' => $baseDir.'/lib/public/Collaboration/AutoComplete/ISorter.php',  | 
                                                        |
| 228 | + 'OCP\\Collaboration\\Collaborators\\ISearch' => $baseDir.'/lib/public/Collaboration/Collaborators/ISearch.php',  | 
                                                        |
| 229 | + 'OCP\\Collaboration\\Collaborators\\ISearchPlugin' => $baseDir.'/lib/public/Collaboration/Collaborators/ISearchPlugin.php',  | 
                                                        |
| 230 | + 'OCP\\Collaboration\\Collaborators\\ISearchResult' => $baseDir.'/lib/public/Collaboration/Collaborators/ISearchResult.php',  | 
                                                        |
| 231 | + 'OCP\\Collaboration\\Collaborators\\SearchResultType' => $baseDir.'/lib/public/Collaboration/Collaborators/SearchResultType.php',  | 
                                                        |
| 232 | + 'OCP\\Collaboration\\Reference\\ADiscoverableReferenceProvider' => $baseDir.'/lib/public/Collaboration/Reference/ADiscoverableReferenceProvider.php',  | 
                                                        |
| 233 | + 'OCP\\Collaboration\\Reference\\IDiscoverableReferenceProvider' => $baseDir.'/lib/public/Collaboration/Reference/IDiscoverableReferenceProvider.php',  | 
                                                        |
| 234 | + 'OCP\\Collaboration\\Reference\\IPublicReferenceProvider' => $baseDir.'/lib/public/Collaboration/Reference/IPublicReferenceProvider.php',  | 
                                                        |
| 235 | + 'OCP\\Collaboration\\Reference\\IReference' => $baseDir.'/lib/public/Collaboration/Reference/IReference.php',  | 
                                                        |
| 236 | + 'OCP\\Collaboration\\Reference\\IReferenceManager' => $baseDir.'/lib/public/Collaboration/Reference/IReferenceManager.php',  | 
                                                        |
| 237 | + 'OCP\\Collaboration\\Reference\\IReferenceProvider' => $baseDir.'/lib/public/Collaboration/Reference/IReferenceProvider.php',  | 
                                                        |
| 238 | + 'OCP\\Collaboration\\Reference\\ISearchableReferenceProvider' => $baseDir.'/lib/public/Collaboration/Reference/ISearchableReferenceProvider.php',  | 
                                                        |
| 239 | + 'OCP\\Collaboration\\Reference\\LinkReferenceProvider' => $baseDir.'/lib/public/Collaboration/Reference/LinkReferenceProvider.php',  | 
                                                        |
| 240 | + 'OCP\\Collaboration\\Reference\\Reference' => $baseDir.'/lib/public/Collaboration/Reference/Reference.php',  | 
                                                        |
| 241 | + 'OCP\\Collaboration\\Reference\\RenderReferenceEvent' => $baseDir.'/lib/public/Collaboration/Reference/RenderReferenceEvent.php',  | 
                                                        |
| 242 | + 'OCP\\Collaboration\\Resources\\CollectionException' => $baseDir.'/lib/public/Collaboration/Resources/CollectionException.php',  | 
                                                        |
| 243 | + 'OCP\\Collaboration\\Resources\\ICollection' => $baseDir.'/lib/public/Collaboration/Resources/ICollection.php',  | 
                                                        |
| 244 | + 'OCP\\Collaboration\\Resources\\IManager' => $baseDir.'/lib/public/Collaboration/Resources/IManager.php',  | 
                                                        |
| 245 | + 'OCP\\Collaboration\\Resources\\IProvider' => $baseDir.'/lib/public/Collaboration/Resources/IProvider.php',  | 
                                                        |
| 246 | + 'OCP\\Collaboration\\Resources\\IProviderManager' => $baseDir.'/lib/public/Collaboration/Resources/IProviderManager.php',  | 
                                                        |
| 247 | + 'OCP\\Collaboration\\Resources\\IResource' => $baseDir.'/lib/public/Collaboration/Resources/IResource.php',  | 
                                                        |
| 248 | + 'OCP\\Collaboration\\Resources\\LoadAdditionalScriptsEvent' => $baseDir.'/lib/public/Collaboration/Resources/LoadAdditionalScriptsEvent.php',  | 
                                                        |
| 249 | + 'OCP\\Collaboration\\Resources\\ResourceException' => $baseDir.'/lib/public/Collaboration/Resources/ResourceException.php',  | 
                                                        |
| 250 | + 'OCP\\Color' => $baseDir.'/lib/public/Color.php',  | 
                                                        |
| 251 | + 'OCP\\Command\\IBus' => $baseDir.'/lib/public/Command/IBus.php',  | 
                                                        |
| 252 | + 'OCP\\Command\\ICommand' => $baseDir.'/lib/public/Command/ICommand.php',  | 
                                                        |
| 253 | + 'OCP\\Comments\\CommentsEntityEvent' => $baseDir.'/lib/public/Comments/CommentsEntityEvent.php',  | 
                                                        |
| 254 | + 'OCP\\Comments\\CommentsEvent' => $baseDir.'/lib/public/Comments/CommentsEvent.php',  | 
                                                        |
| 255 | + 'OCP\\Comments\\IComment' => $baseDir.'/lib/public/Comments/IComment.php',  | 
                                                        |
| 256 | + 'OCP\\Comments\\ICommentsEventHandler' => $baseDir.'/lib/public/Comments/ICommentsEventHandler.php',  | 
                                                        |
| 257 | + 'OCP\\Comments\\ICommentsManager' => $baseDir.'/lib/public/Comments/ICommentsManager.php',  | 
                                                        |
| 258 | + 'OCP\\Comments\\ICommentsManagerFactory' => $baseDir.'/lib/public/Comments/ICommentsManagerFactory.php',  | 
                                                        |
| 259 | + 'OCP\\Comments\\IllegalIDChangeException' => $baseDir.'/lib/public/Comments/IllegalIDChangeException.php',  | 
                                                        |
| 260 | + 'OCP\\Comments\\MessageTooLongException' => $baseDir.'/lib/public/Comments/MessageTooLongException.php',  | 
                                                        |
| 261 | + 'OCP\\Comments\\NotFoundException' => $baseDir.'/lib/public/Comments/NotFoundException.php',  | 
                                                        |
| 262 | + 'OCP\\Common\\Exception\\NotFoundException' => $baseDir.'/lib/public/Common/Exception/NotFoundException.php',  | 
                                                        |
| 263 | + 'OCP\\Config\\BeforePreferenceDeletedEvent' => $baseDir.'/lib/public/Config/BeforePreferenceDeletedEvent.php',  | 
                                                        |
| 264 | + 'OCP\\Config\\BeforePreferenceSetEvent' => $baseDir.'/lib/public/Config/BeforePreferenceSetEvent.php',  | 
                                                        |
| 265 | + 'OCP\\Console\\ConsoleEvent' => $baseDir.'/lib/public/Console/ConsoleEvent.php',  | 
                                                        |
| 266 | + 'OCP\\Console\\ReservedOptions' => $baseDir.'/lib/public/Console/ReservedOptions.php',  | 
                                                        |
| 267 | + 'OCP\\Constants' => $baseDir.'/lib/public/Constants.php',  | 
                                                        |
| 268 | + 'OCP\\Contacts\\ContactsMenu\\IAction' => $baseDir.'/lib/public/Contacts/ContactsMenu/IAction.php',  | 
                                                        |
| 269 | + 'OCP\\Contacts\\ContactsMenu\\IActionFactory' => $baseDir.'/lib/public/Contacts/ContactsMenu/IActionFactory.php',  | 
                                                        |
| 270 | + 'OCP\\Contacts\\ContactsMenu\\IBulkProvider' => $baseDir.'/lib/public/Contacts/ContactsMenu/IBulkProvider.php',  | 
                                                        |
| 271 | + 'OCP\\Contacts\\ContactsMenu\\IContactsStore' => $baseDir.'/lib/public/Contacts/ContactsMenu/IContactsStore.php',  | 
                                                        |
| 272 | + 'OCP\\Contacts\\ContactsMenu\\IEntry' => $baseDir.'/lib/public/Contacts/ContactsMenu/IEntry.php',  | 
                                                        |
| 273 | + 'OCP\\Contacts\\ContactsMenu\\ILinkAction' => $baseDir.'/lib/public/Contacts/ContactsMenu/ILinkAction.php',  | 
                                                        |
| 274 | + 'OCP\\Contacts\\ContactsMenu\\IProvider' => $baseDir.'/lib/public/Contacts/ContactsMenu/IProvider.php',  | 
                                                        |
| 275 | + 'OCP\\Contacts\\Events\\ContactInteractedWithEvent' => $baseDir.'/lib/public/Contacts/Events/ContactInteractedWithEvent.php',  | 
                                                        |
| 276 | + 'OCP\\Contacts\\IManager' => $baseDir.'/lib/public/Contacts/IManager.php',  | 
                                                        |
| 277 | + 'OCP\\DB\\Events\\AddMissingColumnsEvent' => $baseDir.'/lib/public/DB/Events/AddMissingColumnsEvent.php',  | 
                                                        |
| 278 | + 'OCP\\DB\\Events\\AddMissingIndicesEvent' => $baseDir.'/lib/public/DB/Events/AddMissingIndicesEvent.php',  | 
                                                        |
| 279 | + 'OCP\\DB\\Events\\AddMissingPrimaryKeyEvent' => $baseDir.'/lib/public/DB/Events/AddMissingPrimaryKeyEvent.php',  | 
                                                        |
| 280 | + 'OCP\\DB\\Exception' => $baseDir.'/lib/public/DB/Exception.php',  | 
                                                        |
| 281 | + 'OCP\\DB\\IPreparedStatement' => $baseDir.'/lib/public/DB/IPreparedStatement.php',  | 
                                                        |
| 282 | + 'OCP\\DB\\IResult' => $baseDir.'/lib/public/DB/IResult.php',  | 
                                                        |
| 283 | + 'OCP\\DB\\ISchemaWrapper' => $baseDir.'/lib/public/DB/ISchemaWrapper.php',  | 
                                                        |
| 284 | + 'OCP\\DB\\QueryBuilder\\ICompositeExpression' => $baseDir.'/lib/public/DB/QueryBuilder/ICompositeExpression.php',  | 
                                                        |
| 285 | + 'OCP\\DB\\QueryBuilder\\IExpressionBuilder' => $baseDir.'/lib/public/DB/QueryBuilder/IExpressionBuilder.php',  | 
                                                        |
| 286 | + 'OCP\\DB\\QueryBuilder\\IFunctionBuilder' => $baseDir.'/lib/public/DB/QueryBuilder/IFunctionBuilder.php',  | 
                                                        |
| 287 | + 'OCP\\DB\\QueryBuilder\\ILiteral' => $baseDir.'/lib/public/DB/QueryBuilder/ILiteral.php',  | 
                                                        |
| 288 | + 'OCP\\DB\\QueryBuilder\\IParameter' => $baseDir.'/lib/public/DB/QueryBuilder/IParameter.php',  | 
                                                        |
| 289 | + 'OCP\\DB\\QueryBuilder\\IQueryBuilder' => $baseDir.'/lib/public/DB/QueryBuilder/IQueryBuilder.php',  | 
                                                        |
| 290 | + 'OCP\\DB\\QueryBuilder\\IQueryFunction' => $baseDir.'/lib/public/DB/QueryBuilder/IQueryFunction.php',  | 
                                                        |
| 291 | + 'OCP\\DB\\QueryBuilder\\Sharded\\IShardMapper' => $baseDir.'/lib/public/DB/QueryBuilder/Sharded/IShardMapper.php',  | 
                                                        |
| 292 | + 'OCP\\DB\\Types' => $baseDir.'/lib/public/DB/Types.php',  | 
                                                        |
| 293 | + 'OCP\\Dashboard\\IAPIWidget' => $baseDir.'/lib/public/Dashboard/IAPIWidget.php',  | 
                                                        |
| 294 | + 'OCP\\Dashboard\\IAPIWidgetV2' => $baseDir.'/lib/public/Dashboard/IAPIWidgetV2.php',  | 
                                                        |
| 295 | + 'OCP\\Dashboard\\IButtonWidget' => $baseDir.'/lib/public/Dashboard/IButtonWidget.php',  | 
                                                        |
| 296 | + 'OCP\\Dashboard\\IConditionalWidget' => $baseDir.'/lib/public/Dashboard/IConditionalWidget.php',  | 
                                                        |
| 297 | + 'OCP\\Dashboard\\IIconWidget' => $baseDir.'/lib/public/Dashboard/IIconWidget.php',  | 
                                                        |
| 298 | + 'OCP\\Dashboard\\IManager' => $baseDir.'/lib/public/Dashboard/IManager.php',  | 
                                                        |
| 299 | + 'OCP\\Dashboard\\IOptionWidget' => $baseDir.'/lib/public/Dashboard/IOptionWidget.php',  | 
                                                        |
| 300 | + 'OCP\\Dashboard\\IReloadableWidget' => $baseDir.'/lib/public/Dashboard/IReloadableWidget.php',  | 
                                                        |
| 301 | + 'OCP\\Dashboard\\IWidget' => $baseDir.'/lib/public/Dashboard/IWidget.php',  | 
                                                        |
| 302 | + 'OCP\\Dashboard\\Model\\WidgetButton' => $baseDir.'/lib/public/Dashboard/Model/WidgetButton.php',  | 
                                                        |
| 303 | + 'OCP\\Dashboard\\Model\\WidgetItem' => $baseDir.'/lib/public/Dashboard/Model/WidgetItem.php',  | 
                                                        |
| 304 | + 'OCP\\Dashboard\\Model\\WidgetItems' => $baseDir.'/lib/public/Dashboard/Model/WidgetItems.php',  | 
                                                        |
| 305 | + 'OCP\\Dashboard\\Model\\WidgetOptions' => $baseDir.'/lib/public/Dashboard/Model/WidgetOptions.php',  | 
                                                        |
| 306 | + 'OCP\\DataCollector\\AbstractDataCollector' => $baseDir.'/lib/public/DataCollector/AbstractDataCollector.php',  | 
                                                        |
| 307 | + 'OCP\\DataCollector\\IDataCollector' => $baseDir.'/lib/public/DataCollector/IDataCollector.php',  | 
                                                        |
| 308 | + 'OCP\\Defaults' => $baseDir.'/lib/public/Defaults.php',  | 
                                                        |
| 309 | + 'OCP\\Diagnostics\\IEvent' => $baseDir.'/lib/public/Diagnostics/IEvent.php',  | 
                                                        |
| 310 | + 'OCP\\Diagnostics\\IEventLogger' => $baseDir.'/lib/public/Diagnostics/IEventLogger.php',  | 
                                                        |
| 311 | + 'OCP\\Diagnostics\\IQuery' => $baseDir.'/lib/public/Diagnostics/IQuery.php',  | 
                                                        |
| 312 | + 'OCP\\Diagnostics\\IQueryLogger' => $baseDir.'/lib/public/Diagnostics/IQueryLogger.php',  | 
                                                        |
| 313 | + 'OCP\\DirectEditing\\ACreateEmpty' => $baseDir.'/lib/public/DirectEditing/ACreateEmpty.php',  | 
                                                        |
| 314 | + 'OCP\\DirectEditing\\ACreateFromTemplate' => $baseDir.'/lib/public/DirectEditing/ACreateFromTemplate.php',  | 
                                                        |
| 315 | + 'OCP\\DirectEditing\\ATemplate' => $baseDir.'/lib/public/DirectEditing/ATemplate.php',  | 
                                                        |
| 316 | + 'OCP\\DirectEditing\\IEditor' => $baseDir.'/lib/public/DirectEditing/IEditor.php',  | 
                                                        |
| 317 | + 'OCP\\DirectEditing\\IManager' => $baseDir.'/lib/public/DirectEditing/IManager.php',  | 
                                                        |
| 318 | + 'OCP\\DirectEditing\\IToken' => $baseDir.'/lib/public/DirectEditing/IToken.php',  | 
                                                        |
| 319 | + 'OCP\\DirectEditing\\RegisterDirectEditorEvent' => $baseDir.'/lib/public/DirectEditing/RegisterDirectEditorEvent.php',  | 
                                                        |
| 320 | + 'OCP\\Encryption\\Exceptions\\GenericEncryptionException' => $baseDir.'/lib/public/Encryption/Exceptions/GenericEncryptionException.php',  | 
                                                        |
| 321 | + 'OCP\\Encryption\\IEncryptionModule' => $baseDir.'/lib/public/Encryption/IEncryptionModule.php',  | 
                                                        |
| 322 | + 'OCP\\Encryption\\IFile' => $baseDir.'/lib/public/Encryption/IFile.php',  | 
                                                        |
| 323 | + 'OCP\\Encryption\\IManager' => $baseDir.'/lib/public/Encryption/IManager.php',  | 
                                                        |
| 324 | + 'OCP\\Encryption\\Keys\\IStorage' => $baseDir.'/lib/public/Encryption/Keys/IStorage.php',  | 
                                                        |
| 325 | + 'OCP\\EventDispatcher\\ABroadcastedEvent' => $baseDir.'/lib/public/EventDispatcher/ABroadcastedEvent.php',  | 
                                                        |
| 326 | + 'OCP\\EventDispatcher\\Event' => $baseDir.'/lib/public/EventDispatcher/Event.php',  | 
                                                        |
| 327 | + 'OCP\\EventDispatcher\\GenericEvent' => $baseDir.'/lib/public/EventDispatcher/GenericEvent.php',  | 
                                                        |
| 328 | + 'OCP\\EventDispatcher\\IEventDispatcher' => $baseDir.'/lib/public/EventDispatcher/IEventDispatcher.php',  | 
                                                        |
| 329 | + 'OCP\\EventDispatcher\\IEventListener' => $baseDir.'/lib/public/EventDispatcher/IEventListener.php',  | 
                                                        |
| 330 | + 'OCP\\EventDispatcher\\IWebhookCompatibleEvent' => $baseDir.'/lib/public/EventDispatcher/IWebhookCompatibleEvent.php',  | 
                                                        |
| 331 | + 'OCP\\EventDispatcher\\JsonSerializer' => $baseDir.'/lib/public/EventDispatcher/JsonSerializer.php',  | 
                                                        |
| 332 | + 'OCP\\Exceptions\\AbortedEventException' => $baseDir.'/lib/public/Exceptions/AbortedEventException.php',  | 
                                                        |
| 333 | + 'OCP\\Exceptions\\AppConfigException' => $baseDir.'/lib/public/Exceptions/AppConfigException.php',  | 
                                                        |
| 334 | + 'OCP\\Exceptions\\AppConfigIncorrectTypeException' => $baseDir.'/lib/public/Exceptions/AppConfigIncorrectTypeException.php',  | 
                                                        |
| 335 | + 'OCP\\Exceptions\\AppConfigTypeConflictException' => $baseDir.'/lib/public/Exceptions/AppConfigTypeConflictException.php',  | 
                                                        |
| 336 | + 'OCP\\Exceptions\\AppConfigUnknownKeyException' => $baseDir.'/lib/public/Exceptions/AppConfigUnknownKeyException.php',  | 
                                                        |
| 337 | + 'OCP\\Federation\\Events\\TrustedServerRemovedEvent' => $baseDir.'/lib/public/Federation/Events/TrustedServerRemovedEvent.php',  | 
                                                        |
| 338 | + 'OCP\\Federation\\Exceptions\\ActionNotSupportedException' => $baseDir.'/lib/public/Federation/Exceptions/ActionNotSupportedException.php',  | 
                                                        |
| 339 | + 'OCP\\Federation\\Exceptions\\AuthenticationFailedException' => $baseDir.'/lib/public/Federation/Exceptions/AuthenticationFailedException.php',  | 
                                                        |
| 340 | + 'OCP\\Federation\\Exceptions\\BadRequestException' => $baseDir.'/lib/public/Federation/Exceptions/BadRequestException.php',  | 
                                                        |
| 341 | + 'OCP\\Federation\\Exceptions\\ProviderAlreadyExistsException' => $baseDir.'/lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php',  | 
                                                        |
| 342 | + 'OCP\\Federation\\Exceptions\\ProviderCouldNotAddShareException' => $baseDir.'/lib/public/Federation/Exceptions/ProviderCouldNotAddShareException.php',  | 
                                                        |
| 343 | + 'OCP\\Federation\\Exceptions\\ProviderDoesNotExistsException' => $baseDir.'/lib/public/Federation/Exceptions/ProviderDoesNotExistsException.php',  | 
                                                        |
| 344 | + 'OCP\\Federation\\ICloudFederationFactory' => $baseDir.'/lib/public/Federation/ICloudFederationFactory.php',  | 
                                                        |
| 345 | + 'OCP\\Federation\\ICloudFederationNotification' => $baseDir.'/lib/public/Federation/ICloudFederationNotification.php',  | 
                                                        |
| 346 | + 'OCP\\Federation\\ICloudFederationProvider' => $baseDir.'/lib/public/Federation/ICloudFederationProvider.php',  | 
                                                        |
| 347 | + 'OCP\\Federation\\ICloudFederationProviderManager' => $baseDir.'/lib/public/Federation/ICloudFederationProviderManager.php',  | 
                                                        |
| 348 | + 'OCP\\Federation\\ICloudFederationShare' => $baseDir.'/lib/public/Federation/ICloudFederationShare.php',  | 
                                                        |
| 349 | + 'OCP\\Federation\\ICloudId' => $baseDir.'/lib/public/Federation/ICloudId.php',  | 
                                                        |
| 350 | + 'OCP\\Federation\\ICloudIdManager' => $baseDir.'/lib/public/Federation/ICloudIdManager.php',  | 
                                                        |
| 351 | + 'OCP\\Files' => $baseDir.'/lib/public/Files.php',  | 
                                                        |
| 352 | + 'OCP\\FilesMetadata\\AMetadataEvent' => $baseDir.'/lib/public/FilesMetadata/AMetadataEvent.php',  | 
                                                        |
| 353 | + 'OCP\\FilesMetadata\\Event\\MetadataBackgroundEvent' => $baseDir.'/lib/public/FilesMetadata/Event/MetadataBackgroundEvent.php',  | 
                                                        |
| 354 | + 'OCP\\FilesMetadata\\Event\\MetadataLiveEvent' => $baseDir.'/lib/public/FilesMetadata/Event/MetadataLiveEvent.php',  | 
                                                        |
| 355 | + 'OCP\\FilesMetadata\\Event\\MetadataNamedEvent' => $baseDir.'/lib/public/FilesMetadata/Event/MetadataNamedEvent.php',  | 
                                                        |
| 356 | + 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataException' => $baseDir.'/lib/public/FilesMetadata/Exceptions/FilesMetadataException.php',  | 
                                                        |
| 357 | + 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataKeyFormatException' => $baseDir.'/lib/public/FilesMetadata/Exceptions/FilesMetadataKeyFormatException.php',  | 
                                                        |
| 358 | + 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataNotFoundException' => $baseDir.'/lib/public/FilesMetadata/Exceptions/FilesMetadataNotFoundException.php',  | 
                                                        |
| 359 | + 'OCP\\FilesMetadata\\Exceptions\\FilesMetadataTypeException' => $baseDir.'/lib/public/FilesMetadata/Exceptions/FilesMetadataTypeException.php',  | 
                                                        |
| 360 | + 'OCP\\FilesMetadata\\IFilesMetadataManager' => $baseDir.'/lib/public/FilesMetadata/IFilesMetadataManager.php',  | 
                                                        |
| 361 | + 'OCP\\FilesMetadata\\IMetadataQuery' => $baseDir.'/lib/public/FilesMetadata/IMetadataQuery.php',  | 
                                                        |
| 362 | + 'OCP\\FilesMetadata\\Model\\IFilesMetadata' => $baseDir.'/lib/public/FilesMetadata/Model/IFilesMetadata.php',  | 
                                                        |
| 363 | + 'OCP\\FilesMetadata\\Model\\IMetadataValueWrapper' => $baseDir.'/lib/public/FilesMetadata/Model/IMetadataValueWrapper.php',  | 
                                                        |
| 364 | + 'OCP\\Files\\AlreadyExistsException' => $baseDir.'/lib/public/Files/AlreadyExistsException.php',  | 
                                                        |
| 365 | + 'OCP\\Files\\AppData\\IAppDataFactory' => $baseDir.'/lib/public/Files/AppData/IAppDataFactory.php',  | 
                                                        |
| 366 | + 'OCP\\Files\\Cache\\AbstractCacheEvent' => $baseDir.'/lib/public/Files/Cache/AbstractCacheEvent.php',  | 
                                                        |
| 367 | + 'OCP\\Files\\Cache\\CacheEntryInsertedEvent' => $baseDir.'/lib/public/Files/Cache/CacheEntryInsertedEvent.php',  | 
                                                        |
| 368 | + 'OCP\\Files\\Cache\\CacheEntryRemovedEvent' => $baseDir.'/lib/public/Files/Cache/CacheEntryRemovedEvent.php',  | 
                                                        |
| 369 | + 'OCP\\Files\\Cache\\CacheEntryUpdatedEvent' => $baseDir.'/lib/public/Files/Cache/CacheEntryUpdatedEvent.php',  | 
                                                        |
| 370 | + 'OCP\\Files\\Cache\\CacheInsertEvent' => $baseDir.'/lib/public/Files/Cache/CacheInsertEvent.php',  | 
                                                        |
| 371 | + 'OCP\\Files\\Cache\\CacheUpdateEvent' => $baseDir.'/lib/public/Files/Cache/CacheUpdateEvent.php',  | 
                                                        |
| 372 | + 'OCP\\Files\\Cache\\ICache' => $baseDir.'/lib/public/Files/Cache/ICache.php',  | 
                                                        |
| 373 | + 'OCP\\Files\\Cache\\ICacheEntry' => $baseDir.'/lib/public/Files/Cache/ICacheEntry.php',  | 
                                                        |
| 374 | + 'OCP\\Files\\Cache\\ICacheEvent' => $baseDir.'/lib/public/Files/Cache/ICacheEvent.php',  | 
                                                        |
| 375 | + 'OCP\\Files\\Cache\\IFileAccess' => $baseDir.'/lib/public/Files/Cache/IFileAccess.php',  | 
                                                        |
| 376 | + 'OCP\\Files\\Cache\\IPropagator' => $baseDir.'/lib/public/Files/Cache/IPropagator.php',  | 
                                                        |
| 377 | + 'OCP\\Files\\Cache\\IScanner' => $baseDir.'/lib/public/Files/Cache/IScanner.php',  | 
                                                        |
| 378 | + 'OCP\\Files\\Cache\\IUpdater' => $baseDir.'/lib/public/Files/Cache/IUpdater.php',  | 
                                                        |
| 379 | + 'OCP\\Files\\Cache\\IWatcher' => $baseDir.'/lib/public/Files/Cache/IWatcher.php',  | 
                                                        |
| 380 | + 'OCP\\Files\\Config\\ICachedMountFileInfo' => $baseDir.'/lib/public/Files/Config/ICachedMountFileInfo.php',  | 
                                                        |
| 381 | + 'OCP\\Files\\Config\\ICachedMountInfo' => $baseDir.'/lib/public/Files/Config/ICachedMountInfo.php',  | 
                                                        |
| 382 | + 'OCP\\Files\\Config\\IHomeMountProvider' => $baseDir.'/lib/public/Files/Config/IHomeMountProvider.php',  | 
                                                        |
| 383 | + 'OCP\\Files\\Config\\IMountProvider' => $baseDir.'/lib/public/Files/Config/IMountProvider.php',  | 
                                                        |
| 384 | + 'OCP\\Files\\Config\\IMountProviderCollection' => $baseDir.'/lib/public/Files/Config/IMountProviderCollection.php',  | 
                                                        |
| 385 | + 'OCP\\Files\\Config\\IRootMountProvider' => $baseDir.'/lib/public/Files/Config/IRootMountProvider.php',  | 
                                                        |
| 386 | + 'OCP\\Files\\Config\\IUserMountCache' => $baseDir.'/lib/public/Files/Config/IUserMountCache.php',  | 
                                                        |
| 387 | + 'OCP\\Files\\ConnectionLostException' => $baseDir.'/lib/public/Files/ConnectionLostException.php',  | 
                                                        |
| 388 | + 'OCP\\Files\\Conversion\\ConversionMimeProvider' => $baseDir.'/lib/public/Files/Conversion/ConversionMimeProvider.php',  | 
                                                        |
| 389 | + 'OCP\\Files\\Conversion\\IConversionManager' => $baseDir.'/lib/public/Files/Conversion/IConversionManager.php',  | 
                                                        |
| 390 | + 'OCP\\Files\\Conversion\\IConversionProvider' => $baseDir.'/lib/public/Files/Conversion/IConversionProvider.php',  | 
                                                        |
| 391 | + 'OCP\\Files\\DavUtil' => $baseDir.'/lib/public/Files/DavUtil.php',  | 
                                                        |
| 392 | + 'OCP\\Files\\EmptyFileNameException' => $baseDir.'/lib/public/Files/EmptyFileNameException.php',  | 
                                                        |
| 393 | + 'OCP\\Files\\EntityTooLargeException' => $baseDir.'/lib/public/Files/EntityTooLargeException.php',  | 
                                                        |
| 394 | + 'OCP\\Files\\Events\\BeforeDirectFileDownloadEvent' => $baseDir.'/lib/public/Files/Events/BeforeDirectFileDownloadEvent.php',  | 
                                                        |
| 395 | + 'OCP\\Files\\Events\\BeforeFileScannedEvent' => $baseDir.'/lib/public/Files/Events/BeforeFileScannedEvent.php',  | 
                                                        |
| 396 | + 'OCP\\Files\\Events\\BeforeFileSystemSetupEvent' => $baseDir.'/lib/public/Files/Events/BeforeFileSystemSetupEvent.php',  | 
                                                        |
| 397 | + 'OCP\\Files\\Events\\BeforeFolderScannedEvent' => $baseDir.'/lib/public/Files/Events/BeforeFolderScannedEvent.php',  | 
                                                        |
| 398 | + 'OCP\\Files\\Events\\BeforeZipCreatedEvent' => $baseDir.'/lib/public/Files/Events/BeforeZipCreatedEvent.php',  | 
                                                        |
| 399 | + 'OCP\\Files\\Events\\FileCacheUpdated' => $baseDir.'/lib/public/Files/Events/FileCacheUpdated.php',  | 
                                                        |
| 400 | + 'OCP\\Files\\Events\\FileScannedEvent' => $baseDir.'/lib/public/Files/Events/FileScannedEvent.php',  | 
                                                        |
| 401 | + 'OCP\\Files\\Events\\FolderScannedEvent' => $baseDir.'/lib/public/Files/Events/FolderScannedEvent.php',  | 
                                                        |
| 402 | + 'OCP\\Files\\Events\\InvalidateMountCacheEvent' => $baseDir.'/lib/public/Files/Events/InvalidateMountCacheEvent.php',  | 
                                                        |
| 403 | + 'OCP\\Files\\Events\\NodeAddedToCache' => $baseDir.'/lib/public/Files/Events/NodeAddedToCache.php',  | 
                                                        |
| 404 | + 'OCP\\Files\\Events\\NodeAddedToFavorite' => $baseDir.'/lib/public/Files/Events/NodeAddedToFavorite.php',  | 
                                                        |
| 405 | + 'OCP\\Files\\Events\\NodeRemovedFromCache' => $baseDir.'/lib/public/Files/Events/NodeRemovedFromCache.php',  | 
                                                        |
| 406 | + 'OCP\\Files\\Events\\NodeRemovedFromFavorite' => $baseDir.'/lib/public/Files/Events/NodeRemovedFromFavorite.php',  | 
                                                        |
| 407 | + 'OCP\\Files\\Events\\Node\\AbstractNodeEvent' => $baseDir.'/lib/public/Files/Events/Node/AbstractNodeEvent.php',  | 
                                                        |
| 408 | + 'OCP\\Files\\Events\\Node\\AbstractNodesEvent' => $baseDir.'/lib/public/Files/Events/Node/AbstractNodesEvent.php',  | 
                                                        |
| 409 | + 'OCP\\Files\\Events\\Node\\BeforeNodeCopiedEvent' => $baseDir.'/lib/public/Files/Events/Node/BeforeNodeCopiedEvent.php',  | 
                                                        |
| 410 | + 'OCP\\Files\\Events\\Node\\BeforeNodeCreatedEvent' => $baseDir.'/lib/public/Files/Events/Node/BeforeNodeCreatedEvent.php',  | 
                                                        |
| 411 | + 'OCP\\Files\\Events\\Node\\BeforeNodeDeletedEvent' => $baseDir.'/lib/public/Files/Events/Node/BeforeNodeDeletedEvent.php',  | 
                                                        |
| 412 | + 'OCP\\Files\\Events\\Node\\BeforeNodeReadEvent' => $baseDir.'/lib/public/Files/Events/Node/BeforeNodeReadEvent.php',  | 
                                                        |
| 413 | + 'OCP\\Files\\Events\\Node\\BeforeNodeRenamedEvent' => $baseDir.'/lib/public/Files/Events/Node/BeforeNodeRenamedEvent.php',  | 
                                                        |
| 414 | + 'OCP\\Files\\Events\\Node\\BeforeNodeTouchedEvent' => $baseDir.'/lib/public/Files/Events/Node/BeforeNodeTouchedEvent.php',  | 
                                                        |
| 415 | + 'OCP\\Files\\Events\\Node\\BeforeNodeWrittenEvent' => $baseDir.'/lib/public/Files/Events/Node/BeforeNodeWrittenEvent.php',  | 
                                                        |
| 416 | + 'OCP\\Files\\Events\\Node\\FilesystemTornDownEvent' => $baseDir.'/lib/public/Files/Events/Node/FilesystemTornDownEvent.php',  | 
                                                        |
| 417 | + 'OCP\\Files\\Events\\Node\\NodeCopiedEvent' => $baseDir.'/lib/public/Files/Events/Node/NodeCopiedEvent.php',  | 
                                                        |
| 418 | + 'OCP\\Files\\Events\\Node\\NodeCreatedEvent' => $baseDir.'/lib/public/Files/Events/Node/NodeCreatedEvent.php',  | 
                                                        |
| 419 | + 'OCP\\Files\\Events\\Node\\NodeDeletedEvent' => $baseDir.'/lib/public/Files/Events/Node/NodeDeletedEvent.php',  | 
                                                        |
| 420 | + 'OCP\\Files\\Events\\Node\\NodeRenamedEvent' => $baseDir.'/lib/public/Files/Events/Node/NodeRenamedEvent.php',  | 
                                                        |
| 421 | + 'OCP\\Files\\Events\\Node\\NodeTouchedEvent' => $baseDir.'/lib/public/Files/Events/Node/NodeTouchedEvent.php',  | 
                                                        |
| 422 | + 'OCP\\Files\\Events\\Node\\NodeWrittenEvent' => $baseDir.'/lib/public/Files/Events/Node/NodeWrittenEvent.php',  | 
                                                        |
| 423 | + 'OCP\\Files\\File' => $baseDir.'/lib/public/Files/File.php',  | 
                                                        |
| 424 | + 'OCP\\Files\\FileInfo' => $baseDir.'/lib/public/Files/FileInfo.php',  | 
                                                        |
| 425 | + 'OCP\\Files\\FileNameTooLongException' => $baseDir.'/lib/public/Files/FileNameTooLongException.php',  | 
                                                        |
| 426 | + 'OCP\\Files\\Folder' => $baseDir.'/lib/public/Files/Folder.php',  | 
                                                        |
| 427 | + 'OCP\\Files\\ForbiddenException' => $baseDir.'/lib/public/Files/ForbiddenException.php',  | 
                                                        |
| 428 | + 'OCP\\Files\\GenericFileException' => $baseDir.'/lib/public/Files/GenericFileException.php',  | 
                                                        |
| 429 | + 'OCP\\Files\\IAppData' => $baseDir.'/lib/public/Files/IAppData.php',  | 
                                                        |
| 430 | + 'OCP\\Files\\IFilenameValidator' => $baseDir.'/lib/public/Files/IFilenameValidator.php',  | 
                                                        |
| 431 | + 'OCP\\Files\\IHomeStorage' => $baseDir.'/lib/public/Files/IHomeStorage.php',  | 
                                                        |
| 432 | + 'OCP\\Files\\IMimeTypeDetector' => $baseDir.'/lib/public/Files/IMimeTypeDetector.php',  | 
                                                        |
| 433 | + 'OCP\\Files\\IMimeTypeLoader' => $baseDir.'/lib/public/Files/IMimeTypeLoader.php',  | 
                                                        |
| 434 | + 'OCP\\Files\\IRootFolder' => $baseDir.'/lib/public/Files/IRootFolder.php',  | 
                                                        |
| 435 | + 'OCP\\Files\\InvalidCharacterInPathException' => $baseDir.'/lib/public/Files/InvalidCharacterInPathException.php',  | 
                                                        |
| 436 | + 'OCP\\Files\\InvalidContentException' => $baseDir.'/lib/public/Files/InvalidContentException.php',  | 
                                                        |
| 437 | + 'OCP\\Files\\InvalidDirectoryException' => $baseDir.'/lib/public/Files/InvalidDirectoryException.php',  | 
                                                        |
| 438 | + 'OCP\\Files\\InvalidPathException' => $baseDir.'/lib/public/Files/InvalidPathException.php',  | 
                                                        |
| 439 | + 'OCP\\Files\\LockNotAcquiredException' => $baseDir.'/lib/public/Files/LockNotAcquiredException.php',  | 
                                                        |
| 440 | + 'OCP\\Files\\Lock\\ILock' => $baseDir.'/lib/public/Files/Lock/ILock.php',  | 
                                                        |
| 441 | + 'OCP\\Files\\Lock\\ILockManager' => $baseDir.'/lib/public/Files/Lock/ILockManager.php',  | 
                                                        |
| 442 | + 'OCP\\Files\\Lock\\ILockProvider' => $baseDir.'/lib/public/Files/Lock/ILockProvider.php',  | 
                                                        |
| 443 | + 'OCP\\Files\\Lock\\LockContext' => $baseDir.'/lib/public/Files/Lock/LockContext.php',  | 
                                                        |
| 444 | + 'OCP\\Files\\Lock\\NoLockProviderException' => $baseDir.'/lib/public/Files/Lock/NoLockProviderException.php',  | 
                                                        |
| 445 | + 'OCP\\Files\\Lock\\OwnerLockedException' => $baseDir.'/lib/public/Files/Lock/OwnerLockedException.php',  | 
                                                        |
| 446 | + 'OCP\\Files\\Mount\\IMountManager' => $baseDir.'/lib/public/Files/Mount/IMountManager.php',  | 
                                                        |
| 447 | + 'OCP\\Files\\Mount\\IMountPoint' => $baseDir.'/lib/public/Files/Mount/IMountPoint.php',  | 
                                                        |
| 448 | + 'OCP\\Files\\Mount\\IMovableMount' => $baseDir.'/lib/public/Files/Mount/IMovableMount.php',  | 
                                                        |
| 449 | + 'OCP\\Files\\Mount\\IShareOwnerlessMount' => $baseDir.'/lib/public/Files/Mount/IShareOwnerlessMount.php',  | 
                                                        |
| 450 | + 'OCP\\Files\\Mount\\ISystemMountPoint' => $baseDir.'/lib/public/Files/Mount/ISystemMountPoint.php',  | 
                                                        |
| 451 | + 'OCP\\Files\\Node' => $baseDir.'/lib/public/Files/Node.php',  | 
                                                        |
| 452 | + 'OCP\\Files\\NotEnoughSpaceException' => $baseDir.'/lib/public/Files/NotEnoughSpaceException.php',  | 
                                                        |
| 453 | + 'OCP\\Files\\NotFoundException' => $baseDir.'/lib/public/Files/NotFoundException.php',  | 
                                                        |
| 454 | + 'OCP\\Files\\NotPermittedException' => $baseDir.'/lib/public/Files/NotPermittedException.php',  | 
                                                        |
| 455 | + 'OCP\\Files\\Notify\\IChange' => $baseDir.'/lib/public/Files/Notify/IChange.php',  | 
                                                        |
| 456 | + 'OCP\\Files\\Notify\\INotifyHandler' => $baseDir.'/lib/public/Files/Notify/INotifyHandler.php',  | 
                                                        |
| 457 | + 'OCP\\Files\\Notify\\IRenameChange' => $baseDir.'/lib/public/Files/Notify/IRenameChange.php',  | 
                                                        |
| 458 | + 'OCP\\Files\\ObjectStore\\IObjectStore' => $baseDir.'/lib/public/Files/ObjectStore/IObjectStore.php',  | 
                                                        |
| 459 | + 'OCP\\Files\\ObjectStore\\IObjectStoreMetaData' => $baseDir.'/lib/public/Files/ObjectStore/IObjectStoreMetaData.php',  | 
                                                        |
| 460 | + 'OCP\\Files\\ObjectStore\\IObjectStoreMultiPartUpload' => $baseDir.'/lib/public/Files/ObjectStore/IObjectStoreMultiPartUpload.php',  | 
                                                        |
| 461 | + 'OCP\\Files\\ReservedWordException' => $baseDir.'/lib/public/Files/ReservedWordException.php',  | 
                                                        |
| 462 | + 'OCP\\Files\\Search\\ISearchBinaryOperator' => $baseDir.'/lib/public/Files/Search/ISearchBinaryOperator.php',  | 
                                                        |
| 463 | + 'OCP\\Files\\Search\\ISearchComparison' => $baseDir.'/lib/public/Files/Search/ISearchComparison.php',  | 
                                                        |
| 464 | + 'OCP\\Files\\Search\\ISearchOperator' => $baseDir.'/lib/public/Files/Search/ISearchOperator.php',  | 
                                                        |
| 465 | + 'OCP\\Files\\Search\\ISearchOrder' => $baseDir.'/lib/public/Files/Search/ISearchOrder.php',  | 
                                                        |
| 466 | + 'OCP\\Files\\Search\\ISearchQuery' => $baseDir.'/lib/public/Files/Search/ISearchQuery.php',  | 
                                                        |
| 467 | + 'OCP\\Files\\SimpleFS\\ISimpleFile' => $baseDir.'/lib/public/Files/SimpleFS/ISimpleFile.php',  | 
                                                        |
| 468 | + 'OCP\\Files\\SimpleFS\\ISimpleFolder' => $baseDir.'/lib/public/Files/SimpleFS/ISimpleFolder.php',  | 
                                                        |
| 469 | + 'OCP\\Files\\SimpleFS\\ISimpleRoot' => $baseDir.'/lib/public/Files/SimpleFS/ISimpleRoot.php',  | 
                                                        |
| 470 | + 'OCP\\Files\\SimpleFS\\InMemoryFile' => $baseDir.'/lib/public/Files/SimpleFS/InMemoryFile.php',  | 
                                                        |
| 471 | + 'OCP\\Files\\StorageAuthException' => $baseDir.'/lib/public/Files/StorageAuthException.php',  | 
                                                        |
| 472 | + 'OCP\\Files\\StorageBadConfigException' => $baseDir.'/lib/public/Files/StorageBadConfigException.php',  | 
                                                        |
| 473 | + 'OCP\\Files\\StorageConnectionException' => $baseDir.'/lib/public/Files/StorageConnectionException.php',  | 
                                                        |
| 474 | + 'OCP\\Files\\StorageInvalidException' => $baseDir.'/lib/public/Files/StorageInvalidException.php',  | 
                                                        |
| 475 | + 'OCP\\Files\\StorageNotAvailableException' => $baseDir.'/lib/public/Files/StorageNotAvailableException.php',  | 
                                                        |
| 476 | + 'OCP\\Files\\StorageTimeoutException' => $baseDir.'/lib/public/Files/StorageTimeoutException.php',  | 
                                                        |
| 477 | + 'OCP\\Files\\Storage\\IChunkedFileWrite' => $baseDir.'/lib/public/Files/Storage/IChunkedFileWrite.php',  | 
                                                        |
| 478 | + 'OCP\\Files\\Storage\\IConstructableStorage' => $baseDir.'/lib/public/Files/Storage/IConstructableStorage.php',  | 
                                                        |
| 479 | + 'OCP\\Files\\Storage\\IDisableEncryptionStorage' => $baseDir.'/lib/public/Files/Storage/IDisableEncryptionStorage.php',  | 
                                                        |
| 480 | + 'OCP\\Files\\Storage\\ILockingStorage' => $baseDir.'/lib/public/Files/Storage/ILockingStorage.php',  | 
                                                        |
| 481 | + 'OCP\\Files\\Storage\\INotifyStorage' => $baseDir.'/lib/public/Files/Storage/INotifyStorage.php',  | 
                                                        |
| 482 | + 'OCP\\Files\\Storage\\IReliableEtagStorage' => $baseDir.'/lib/public/Files/Storage/IReliableEtagStorage.php',  | 
                                                        |
| 483 | + 'OCP\\Files\\Storage\\ISharedStorage' => $baseDir.'/lib/public/Files/Storage/ISharedStorage.php',  | 
                                                        |
| 484 | + 'OCP\\Files\\Storage\\IStorage' => $baseDir.'/lib/public/Files/Storage/IStorage.php',  | 
                                                        |
| 485 | + 'OCP\\Files\\Storage\\IStorageFactory' => $baseDir.'/lib/public/Files/Storage/IStorageFactory.php',  | 
                                                        |
| 486 | + 'OCP\\Files\\Storage\\IWriteStreamStorage' => $baseDir.'/lib/public/Files/Storage/IWriteStreamStorage.php',  | 
                                                        |
| 487 | + 'OCP\\Files\\Template\\BeforeGetTemplatesEvent' => $baseDir.'/lib/public/Files/Template/BeforeGetTemplatesEvent.php',  | 
                                                        |
| 488 | + 'OCP\\Files\\Template\\Field' => $baseDir.'/lib/public/Files/Template/Field.php',  | 
                                                        |
| 489 | + 'OCP\\Files\\Template\\FieldFactory' => $baseDir.'/lib/public/Files/Template/FieldFactory.php',  | 
                                                        |
| 490 | + 'OCP\\Files\\Template\\FieldType' => $baseDir.'/lib/public/Files/Template/FieldType.php',  | 
                                                        |
| 491 | + 'OCP\\Files\\Template\\Fields\\CheckBoxField' => $baseDir.'/lib/public/Files/Template/Fields/CheckBoxField.php',  | 
                                                        |
| 492 | + 'OCP\\Files\\Template\\Fields\\RichTextField' => $baseDir.'/lib/public/Files/Template/Fields/RichTextField.php',  | 
                                                        |
| 493 | + 'OCP\\Files\\Template\\FileCreatedFromTemplateEvent' => $baseDir.'/lib/public/Files/Template/FileCreatedFromTemplateEvent.php',  | 
                                                        |
| 494 | + 'OCP\\Files\\Template\\ICustomTemplateProvider' => $baseDir.'/lib/public/Files/Template/ICustomTemplateProvider.php',  | 
                                                        |
| 495 | + 'OCP\\Files\\Template\\ITemplateManager' => $baseDir.'/lib/public/Files/Template/ITemplateManager.php',  | 
                                                        |
| 496 | + 'OCP\\Files\\Template\\InvalidFieldTypeException' => $baseDir.'/lib/public/Files/Template/InvalidFieldTypeException.php',  | 
                                                        |
| 497 | + 'OCP\\Files\\Template\\RegisterTemplateCreatorEvent' => $baseDir.'/lib/public/Files/Template/RegisterTemplateCreatorEvent.php',  | 
                                                        |
| 498 | + 'OCP\\Files\\Template\\Template' => $baseDir.'/lib/public/Files/Template/Template.php',  | 
                                                        |
| 499 | + 'OCP\\Files\\Template\\TemplateFileCreator' => $baseDir.'/lib/public/Files/Template/TemplateFileCreator.php',  | 
                                                        |
| 500 | + 'OCP\\Files\\UnseekableException' => $baseDir.'/lib/public/Files/UnseekableException.php',  | 
                                                        |
| 501 | + 'OCP\\Files_FullTextSearch\\Model\\AFilesDocument' => $baseDir.'/lib/public/Files_FullTextSearch/Model/AFilesDocument.php',  | 
                                                        |
| 502 | + 'OCP\\FullTextSearch\\Exceptions\\FullTextSearchAppNotAvailableException' => $baseDir.'/lib/public/FullTextSearch/Exceptions/FullTextSearchAppNotAvailableException.php',  | 
                                                        |
| 503 | + 'OCP\\FullTextSearch\\Exceptions\\FullTextSearchIndexNotAvailableException' => $baseDir.'/lib/public/FullTextSearch/Exceptions/FullTextSearchIndexNotAvailableException.php',  | 
                                                        |
| 504 | + 'OCP\\FullTextSearch\\IFullTextSearchManager' => $baseDir.'/lib/public/FullTextSearch/IFullTextSearchManager.php',  | 
                                                        |
| 505 | + 'OCP\\FullTextSearch\\IFullTextSearchPlatform' => $baseDir.'/lib/public/FullTextSearch/IFullTextSearchPlatform.php',  | 
                                                        |
| 506 | + 'OCP\\FullTextSearch\\IFullTextSearchProvider' => $baseDir.'/lib/public/FullTextSearch/IFullTextSearchProvider.php',  | 
                                                        |
| 507 | + 'OCP\\FullTextSearch\\Model\\IDocumentAccess' => $baseDir.'/lib/public/FullTextSearch/Model/IDocumentAccess.php',  | 
                                                        |
| 508 | + 'OCP\\FullTextSearch\\Model\\IIndex' => $baseDir.'/lib/public/FullTextSearch/Model/IIndex.php',  | 
                                                        |
| 509 | + 'OCP\\FullTextSearch\\Model\\IIndexDocument' => $baseDir.'/lib/public/FullTextSearch/Model/IIndexDocument.php',  | 
                                                        |
| 510 | + 'OCP\\FullTextSearch\\Model\\IIndexOptions' => $baseDir.'/lib/public/FullTextSearch/Model/IIndexOptions.php',  | 
                                                        |
| 511 | + 'OCP\\FullTextSearch\\Model\\IRunner' => $baseDir.'/lib/public/FullTextSearch/Model/IRunner.php',  | 
                                                        |
| 512 | + 'OCP\\FullTextSearch\\Model\\ISearchOption' => $baseDir.'/lib/public/FullTextSearch/Model/ISearchOption.php',  | 
                                                        |
| 513 | + 'OCP\\FullTextSearch\\Model\\ISearchRequest' => $baseDir.'/lib/public/FullTextSearch/Model/ISearchRequest.php',  | 
                                                        |
| 514 | + 'OCP\\FullTextSearch\\Model\\ISearchRequestSimpleQuery' => $baseDir.'/lib/public/FullTextSearch/Model/ISearchRequestSimpleQuery.php',  | 
                                                        |
| 515 | + 'OCP\\FullTextSearch\\Model\\ISearchResult' => $baseDir.'/lib/public/FullTextSearch/Model/ISearchResult.php',  | 
                                                        |
| 516 | + 'OCP\\FullTextSearch\\Model\\ISearchTemplate' => $baseDir.'/lib/public/FullTextSearch/Model/ISearchTemplate.php',  | 
                                                        |
| 517 | + 'OCP\\FullTextSearch\\Service\\IIndexService' => $baseDir.'/lib/public/FullTextSearch/Service/IIndexService.php',  | 
                                                        |
| 518 | + 'OCP\\FullTextSearch\\Service\\IProviderService' => $baseDir.'/lib/public/FullTextSearch/Service/IProviderService.php',  | 
                                                        |
| 519 | + 'OCP\\FullTextSearch\\Service\\ISearchService' => $baseDir.'/lib/public/FullTextSearch/Service/ISearchService.php',  | 
                                                        |
| 520 | + 'OCP\\GlobalScale\\IConfig' => $baseDir.'/lib/public/GlobalScale/IConfig.php',  | 
                                                        |
| 521 | + 'OCP\\GroupInterface' => $baseDir.'/lib/public/GroupInterface.php',  | 
                                                        |
| 522 | + 'OCP\\Group\\Backend\\ABackend' => $baseDir.'/lib/public/Group/Backend/ABackend.php',  | 
                                                        |
| 523 | + 'OCP\\Group\\Backend\\IAddToGroupBackend' => $baseDir.'/lib/public/Group/Backend/IAddToGroupBackend.php',  | 
                                                        |
| 524 | + 'OCP\\Group\\Backend\\IBatchMethodsBackend' => $baseDir.'/lib/public/Group/Backend/IBatchMethodsBackend.php',  | 
                                                        |
| 525 | + 'OCP\\Group\\Backend\\ICountDisabledInGroup' => $baseDir.'/lib/public/Group/Backend/ICountDisabledInGroup.php',  | 
                                                        |
| 526 | + 'OCP\\Group\\Backend\\ICountUsersBackend' => $baseDir.'/lib/public/Group/Backend/ICountUsersBackend.php',  | 
                                                        |
| 527 | + 'OCP\\Group\\Backend\\ICreateGroupBackend' => $baseDir.'/lib/public/Group/Backend/ICreateGroupBackend.php',  | 
                                                        |
| 528 | + 'OCP\\Group\\Backend\\ICreateNamedGroupBackend' => $baseDir.'/lib/public/Group/Backend/ICreateNamedGroupBackend.php',  | 
                                                        |
| 529 | + 'OCP\\Group\\Backend\\IDeleteGroupBackend' => $baseDir.'/lib/public/Group/Backend/IDeleteGroupBackend.php',  | 
                                                        |
| 530 | + 'OCP\\Group\\Backend\\IGetDisplayNameBackend' => $baseDir.'/lib/public/Group/Backend/IGetDisplayNameBackend.php',  | 
                                                        |
| 531 | + 'OCP\\Group\\Backend\\IGroupDetailsBackend' => $baseDir.'/lib/public/Group/Backend/IGroupDetailsBackend.php',  | 
                                                        |
| 532 | + 'OCP\\Group\\Backend\\IHideFromCollaborationBackend' => $baseDir.'/lib/public/Group/Backend/IHideFromCollaborationBackend.php',  | 
                                                        |
| 533 | + 'OCP\\Group\\Backend\\IIsAdminBackend' => $baseDir.'/lib/public/Group/Backend/IIsAdminBackend.php',  | 
                                                        |
| 534 | + 'OCP\\Group\\Backend\\INamedBackend' => $baseDir.'/lib/public/Group/Backend/INamedBackend.php',  | 
                                                        |
| 535 | + 'OCP\\Group\\Backend\\IRemoveFromGroupBackend' => $baseDir.'/lib/public/Group/Backend/IRemoveFromGroupBackend.php',  | 
                                                        |
| 536 | + 'OCP\\Group\\Backend\\ISearchableGroupBackend' => $baseDir.'/lib/public/Group/Backend/ISearchableGroupBackend.php',  | 
                                                        |
| 537 | + 'OCP\\Group\\Backend\\ISetDisplayNameBackend' => $baseDir.'/lib/public/Group/Backend/ISetDisplayNameBackend.php',  | 
                                                        |
| 538 | + 'OCP\\Group\\Events\\BeforeGroupChangedEvent' => $baseDir.'/lib/public/Group/Events/BeforeGroupChangedEvent.php',  | 
                                                        |
| 539 | + 'OCP\\Group\\Events\\BeforeGroupCreatedEvent' => $baseDir.'/lib/public/Group/Events/BeforeGroupCreatedEvent.php',  | 
                                                        |
| 540 | + 'OCP\\Group\\Events\\BeforeGroupDeletedEvent' => $baseDir.'/lib/public/Group/Events/BeforeGroupDeletedEvent.php',  | 
                                                        |
| 541 | + 'OCP\\Group\\Events\\BeforeUserAddedEvent' => $baseDir.'/lib/public/Group/Events/BeforeUserAddedEvent.php',  | 
                                                        |
| 542 | + 'OCP\\Group\\Events\\BeforeUserRemovedEvent' => $baseDir.'/lib/public/Group/Events/BeforeUserRemovedEvent.php',  | 
                                                        |
| 543 | + 'OCP\\Group\\Events\\GroupChangedEvent' => $baseDir.'/lib/public/Group/Events/GroupChangedEvent.php',  | 
                                                        |
| 544 | + 'OCP\\Group\\Events\\GroupCreatedEvent' => $baseDir.'/lib/public/Group/Events/GroupCreatedEvent.php',  | 
                                                        |
| 545 | + 'OCP\\Group\\Events\\GroupDeletedEvent' => $baseDir.'/lib/public/Group/Events/GroupDeletedEvent.php',  | 
                                                        |
| 546 | + 'OCP\\Group\\Events\\SubAdminAddedEvent' => $baseDir.'/lib/public/Group/Events/SubAdminAddedEvent.php',  | 
                                                        |
| 547 | + 'OCP\\Group\\Events\\SubAdminRemovedEvent' => $baseDir.'/lib/public/Group/Events/SubAdminRemovedEvent.php',  | 
                                                        |
| 548 | + 'OCP\\Group\\Events\\UserAddedEvent' => $baseDir.'/lib/public/Group/Events/UserAddedEvent.php',  | 
                                                        |
| 549 | + 'OCP\\Group\\Events\\UserRemovedEvent' => $baseDir.'/lib/public/Group/Events/UserRemovedEvent.php',  | 
                                                        |
| 550 | + 'OCP\\Group\\ISubAdmin' => $baseDir.'/lib/public/Group/ISubAdmin.php',  | 
                                                        |
| 551 | + 'OCP\\HintException' => $baseDir.'/lib/public/HintException.php',  | 
                                                        |
| 552 | + 'OCP\\Http\\Client\\IClient' => $baseDir.'/lib/public/Http/Client/IClient.php',  | 
                                                        |
| 553 | + 'OCP\\Http\\Client\\IClientService' => $baseDir.'/lib/public/Http/Client/IClientService.php',  | 
                                                        |
| 554 | + 'OCP\\Http\\Client\\IPromise' => $baseDir.'/lib/public/Http/Client/IPromise.php',  | 
                                                        |
| 555 | + 'OCP\\Http\\Client\\IResponse' => $baseDir.'/lib/public/Http/Client/IResponse.php',  | 
                                                        |
| 556 | + 'OCP\\Http\\Client\\LocalServerException' => $baseDir.'/lib/public/Http/Client/LocalServerException.php',  | 
                                                        |
| 557 | + 'OCP\\Http\\WellKnown\\GenericResponse' => $baseDir.'/lib/public/Http/WellKnown/GenericResponse.php',  | 
                                                        |
| 558 | + 'OCP\\Http\\WellKnown\\IHandler' => $baseDir.'/lib/public/Http/WellKnown/IHandler.php',  | 
                                                        |
| 559 | + 'OCP\\Http\\WellKnown\\IRequestContext' => $baseDir.'/lib/public/Http/WellKnown/IRequestContext.php',  | 
                                                        |
| 560 | + 'OCP\\Http\\WellKnown\\IResponse' => $baseDir.'/lib/public/Http/WellKnown/IResponse.php',  | 
                                                        |
| 561 | + 'OCP\\Http\\WellKnown\\JrdResponse' => $baseDir.'/lib/public/Http/WellKnown/JrdResponse.php',  | 
                                                        |
| 562 | + 'OCP\\IAddressBook' => $baseDir.'/lib/public/IAddressBook.php',  | 
                                                        |
| 563 | + 'OCP\\IAddressBookEnabled' => $baseDir.'/lib/public/IAddressBookEnabled.php',  | 
                                                        |
| 564 | + 'OCP\\IAppConfig' => $baseDir.'/lib/public/IAppConfig.php',  | 
                                                        |
| 565 | + 'OCP\\IAvatar' => $baseDir.'/lib/public/IAvatar.php',  | 
                                                        |
| 566 | + 'OCP\\IAvatarManager' => $baseDir.'/lib/public/IAvatarManager.php',  | 
                                                        |
| 567 | + 'OCP\\IBinaryFinder' => $baseDir.'/lib/public/IBinaryFinder.php',  | 
                                                        |
| 568 | + 'OCP\\ICache' => $baseDir.'/lib/public/ICache.php',  | 
                                                        |
| 569 | + 'OCP\\ICacheFactory' => $baseDir.'/lib/public/ICacheFactory.php',  | 
                                                        |
| 570 | + 'OCP\\ICertificate' => $baseDir.'/lib/public/ICertificate.php',  | 
                                                        |
| 571 | + 'OCP\\ICertificateManager' => $baseDir.'/lib/public/ICertificateManager.php',  | 
                                                        |
| 572 | + 'OCP\\IConfig' => $baseDir.'/lib/public/IConfig.php',  | 
                                                        |
| 573 | + 'OCP\\IContainer' => $baseDir.'/lib/public/IContainer.php',  | 
                                                        |
| 574 | + 'OCP\\IDBConnection' => $baseDir.'/lib/public/IDBConnection.php',  | 
                                                        |
| 575 | + 'OCP\\IDateTimeFormatter' => $baseDir.'/lib/public/IDateTimeFormatter.php',  | 
                                                        |
| 576 | + 'OCP\\IDateTimeZone' => $baseDir.'/lib/public/IDateTimeZone.php',  | 
                                                        |
| 577 | + 'OCP\\IEmojiHelper' => $baseDir.'/lib/public/IEmojiHelper.php',  | 
                                                        |
| 578 | + 'OCP\\IEventSource' => $baseDir.'/lib/public/IEventSource.php',  | 
                                                        |
| 579 | + 'OCP\\IEventSourceFactory' => $baseDir.'/lib/public/IEventSourceFactory.php',  | 
                                                        |
| 580 | + 'OCP\\IGroup' => $baseDir.'/lib/public/IGroup.php',  | 
                                                        |
| 581 | + 'OCP\\IGroupManager' => $baseDir.'/lib/public/IGroupManager.php',  | 
                                                        |
| 582 | + 'OCP\\IImage' => $baseDir.'/lib/public/IImage.php',  | 
                                                        |
| 583 | + 'OCP\\IInitialStateService' => $baseDir.'/lib/public/IInitialStateService.php',  | 
                                                        |
| 584 | + 'OCP\\IL10N' => $baseDir.'/lib/public/IL10N.php',  | 
                                                        |
| 585 | + 'OCP\\ILogger' => $baseDir.'/lib/public/ILogger.php',  | 
                                                        |
| 586 | + 'OCP\\IMemcache' => $baseDir.'/lib/public/IMemcache.php',  | 
                                                        |
| 587 | + 'OCP\\IMemcacheTTL' => $baseDir.'/lib/public/IMemcacheTTL.php',  | 
                                                        |
| 588 | + 'OCP\\INavigationManager' => $baseDir.'/lib/public/INavigationManager.php',  | 
                                                        |
| 589 | + 'OCP\\IPhoneNumberUtil' => $baseDir.'/lib/public/IPhoneNumberUtil.php',  | 
                                                        |
| 590 | + 'OCP\\IPreview' => $baseDir.'/lib/public/IPreview.php',  | 
                                                        |
| 591 | + 'OCP\\IRequest' => $baseDir.'/lib/public/IRequest.php',  | 
                                                        |
| 592 | + 'OCP\\IRequestId' => $baseDir.'/lib/public/IRequestId.php',  | 
                                                        |
| 593 | + 'OCP\\IServerContainer' => $baseDir.'/lib/public/IServerContainer.php',  | 
                                                        |
| 594 | + 'OCP\\ISession' => $baseDir.'/lib/public/ISession.php',  | 
                                                        |
| 595 | + 'OCP\\IStreamImage' => $baseDir.'/lib/public/IStreamImage.php',  | 
                                                        |
| 596 | + 'OCP\\ITagManager' => $baseDir.'/lib/public/ITagManager.php',  | 
                                                        |
| 597 | + 'OCP\\ITags' => $baseDir.'/lib/public/ITags.php',  | 
                                                        |
| 598 | + 'OCP\\ITempManager' => $baseDir.'/lib/public/ITempManager.php',  | 
                                                        |
| 599 | + 'OCP\\IURLGenerator' => $baseDir.'/lib/public/IURLGenerator.php',  | 
                                                        |
| 600 | + 'OCP\\IUser' => $baseDir.'/lib/public/IUser.php',  | 
                                                        |
| 601 | + 'OCP\\IUserBackend' => $baseDir.'/lib/public/IUserBackend.php',  | 
                                                        |
| 602 | + 'OCP\\IUserManager' => $baseDir.'/lib/public/IUserManager.php',  | 
                                                        |
| 603 | + 'OCP\\IUserSession' => $baseDir.'/lib/public/IUserSession.php',  | 
                                                        |
| 604 | + 'OCP\\Image' => $baseDir.'/lib/public/Image.php',  | 
                                                        |
| 605 | + 'OCP\\L10N\\IFactory' => $baseDir.'/lib/public/L10N/IFactory.php',  | 
                                                        |
| 606 | + 'OCP\\L10N\\ILanguageIterator' => $baseDir.'/lib/public/L10N/ILanguageIterator.php',  | 
                                                        |
| 607 | + 'OCP\\LDAP\\IDeletionFlagSupport' => $baseDir.'/lib/public/LDAP/IDeletionFlagSupport.php',  | 
                                                        |
| 608 | + 'OCP\\LDAP\\ILDAPProvider' => $baseDir.'/lib/public/LDAP/ILDAPProvider.php',  | 
                                                        |
| 609 | + 'OCP\\LDAP\\ILDAPProviderFactory' => $baseDir.'/lib/public/LDAP/ILDAPProviderFactory.php',  | 
                                                        |
| 610 | + 'OCP\\Lock\\ILockingProvider' => $baseDir.'/lib/public/Lock/ILockingProvider.php',  | 
                                                        |
| 611 | + 'OCP\\Lock\\LockedException' => $baseDir.'/lib/public/Lock/LockedException.php',  | 
                                                        |
| 612 | + 'OCP\\Lock\\ManuallyLockedException' => $baseDir.'/lib/public/Lock/ManuallyLockedException.php',  | 
                                                        |
| 613 | + 'OCP\\Lockdown\\ILockdownManager' => $baseDir.'/lib/public/Lockdown/ILockdownManager.php',  | 
                                                        |
| 614 | + 'OCP\\Log\\Audit\\CriticalActionPerformedEvent' => $baseDir.'/lib/public/Log/Audit/CriticalActionPerformedEvent.php',  | 
                                                        |
| 615 | + 'OCP\\Log\\BeforeMessageLoggedEvent' => $baseDir.'/lib/public/Log/BeforeMessageLoggedEvent.php',  | 
                                                        |
| 616 | + 'OCP\\Log\\IDataLogger' => $baseDir.'/lib/public/Log/IDataLogger.php',  | 
                                                        |
| 617 | + 'OCP\\Log\\IFileBased' => $baseDir.'/lib/public/Log/IFileBased.php',  | 
                                                        |
| 618 | + 'OCP\\Log\\ILogFactory' => $baseDir.'/lib/public/Log/ILogFactory.php',  | 
                                                        |
| 619 | + 'OCP\\Log\\IWriter' => $baseDir.'/lib/public/Log/IWriter.php',  | 
                                                        |
| 620 | + 'OCP\\Log\\RotationTrait' => $baseDir.'/lib/public/Log/RotationTrait.php',  | 
                                                        |
| 621 | + 'OCP\\Mail\\Events\\BeforeMessageSent' => $baseDir.'/lib/public/Mail/Events/BeforeMessageSent.php',  | 
                                                        |
| 622 | + 'OCP\\Mail\\Headers\\AutoSubmitted' => $baseDir.'/lib/public/Mail/Headers/AutoSubmitted.php',  | 
                                                        |
| 623 | + 'OCP\\Mail\\IAttachment' => $baseDir.'/lib/public/Mail/IAttachment.php',  | 
                                                        |
| 624 | + 'OCP\\Mail\\IEMailTemplate' => $baseDir.'/lib/public/Mail/IEMailTemplate.php',  | 
                                                        |
| 625 | + 'OCP\\Mail\\IMailer' => $baseDir.'/lib/public/Mail/IMailer.php',  | 
                                                        |
| 626 | + 'OCP\\Mail\\IMessage' => $baseDir.'/lib/public/Mail/IMessage.php',  | 
                                                        |
| 627 | + 'OCP\\Mail\\Provider\\Address' => $baseDir.'/lib/public/Mail/Provider/Address.php',  | 
                                                        |
| 628 | + 'OCP\\Mail\\Provider\\Attachment' => $baseDir.'/lib/public/Mail/Provider/Attachment.php',  | 
                                                        |
| 629 | + 'OCP\\Mail\\Provider\\Exception\\Exception' => $baseDir.'/lib/public/Mail/Provider/Exception/Exception.php',  | 
                                                        |
| 630 | + 'OCP\\Mail\\Provider\\Exception\\SendException' => $baseDir.'/lib/public/Mail/Provider/Exception/SendException.php',  | 
                                                        |
| 631 | + 'OCP\\Mail\\Provider\\IAddress' => $baseDir.'/lib/public/Mail/Provider/IAddress.php',  | 
                                                        |
| 632 | + 'OCP\\Mail\\Provider\\IAttachment' => $baseDir.'/lib/public/Mail/Provider/IAttachment.php',  | 
                                                        |
| 633 | + 'OCP\\Mail\\Provider\\IManager' => $baseDir.'/lib/public/Mail/Provider/IManager.php',  | 
                                                        |
| 634 | + 'OCP\\Mail\\Provider\\IMessage' => $baseDir.'/lib/public/Mail/Provider/IMessage.php',  | 
                                                        |
| 635 | + 'OCP\\Mail\\Provider\\IMessageSend' => $baseDir.'/lib/public/Mail/Provider/IMessageSend.php',  | 
                                                        |
| 636 | + 'OCP\\Mail\\Provider\\IProvider' => $baseDir.'/lib/public/Mail/Provider/IProvider.php',  | 
                                                        |
| 637 | + 'OCP\\Mail\\Provider\\IService' => $baseDir.'/lib/public/Mail/Provider/IService.php',  | 
                                                        |
| 638 | + 'OCP\\Mail\\Provider\\Message' => $baseDir.'/lib/public/Mail/Provider/Message.php',  | 
                                                        |
| 639 | + 'OCP\\Migration\\Attributes\\AddColumn' => $baseDir.'/lib/public/Migration/Attributes/AddColumn.php',  | 
                                                        |
| 640 | + 'OCP\\Migration\\Attributes\\AddIndex' => $baseDir.'/lib/public/Migration/Attributes/AddIndex.php',  | 
                                                        |
| 641 | + 'OCP\\Migration\\Attributes\\ColumnMigrationAttribute' => $baseDir.'/lib/public/Migration/Attributes/ColumnMigrationAttribute.php',  | 
                                                        |
| 642 | + 'OCP\\Migration\\Attributes\\ColumnType' => $baseDir.'/lib/public/Migration/Attributes/ColumnType.php',  | 
                                                        |
| 643 | + 'OCP\\Migration\\Attributes\\CreateTable' => $baseDir.'/lib/public/Migration/Attributes/CreateTable.php',  | 
                                                        |
| 644 | + 'OCP\\Migration\\Attributes\\DropColumn' => $baseDir.'/lib/public/Migration/Attributes/DropColumn.php',  | 
                                                        |
| 645 | + 'OCP\\Migration\\Attributes\\DropIndex' => $baseDir.'/lib/public/Migration/Attributes/DropIndex.php',  | 
                                                        |
| 646 | + 'OCP\\Migration\\Attributes\\DropTable' => $baseDir.'/lib/public/Migration/Attributes/DropTable.php',  | 
                                                        |
| 647 | + 'OCP\\Migration\\Attributes\\GenericMigrationAttribute' => $baseDir.'/lib/public/Migration/Attributes/GenericMigrationAttribute.php',  | 
                                                        |
| 648 | + 'OCP\\Migration\\Attributes\\IndexMigrationAttribute' => $baseDir.'/lib/public/Migration/Attributes/IndexMigrationAttribute.php',  | 
                                                        |
| 649 | + 'OCP\\Migration\\Attributes\\IndexType' => $baseDir.'/lib/public/Migration/Attributes/IndexType.php',  | 
                                                        |
| 650 | + 'OCP\\Migration\\Attributes\\MigrationAttribute' => $baseDir.'/lib/public/Migration/Attributes/MigrationAttribute.php',  | 
                                                        |
| 651 | + 'OCP\\Migration\\Attributes\\ModifyColumn' => $baseDir.'/lib/public/Migration/Attributes/ModifyColumn.php',  | 
                                                        |
| 652 | + 'OCP\\Migration\\Attributes\\TableMigrationAttribute' => $baseDir.'/lib/public/Migration/Attributes/TableMigrationAttribute.php',  | 
                                                        |
| 653 | + 'OCP\\Migration\\BigIntMigration' => $baseDir.'/lib/public/Migration/BigIntMigration.php',  | 
                                                        |
| 654 | + 'OCP\\Migration\\IMigrationStep' => $baseDir.'/lib/public/Migration/IMigrationStep.php',  | 
                                                        |
| 655 | + 'OCP\\Migration\\IOutput' => $baseDir.'/lib/public/Migration/IOutput.php',  | 
                                                        |
| 656 | + 'OCP\\Migration\\IRepairStep' => $baseDir.'/lib/public/Migration/IRepairStep.php',  | 
                                                        |
| 657 | + 'OCP\\Migration\\SimpleMigrationStep' => $baseDir.'/lib/public/Migration/SimpleMigrationStep.php',  | 
                                                        |
| 658 | + 'OCP\\Navigation\\Events\\LoadAdditionalEntriesEvent' => $baseDir.'/lib/public/Navigation/Events/LoadAdditionalEntriesEvent.php',  | 
                                                        |
| 659 | + 'OCP\\Notification\\AlreadyProcessedException' => $baseDir.'/lib/public/Notification/AlreadyProcessedException.php',  | 
                                                        |
| 660 | + 'OCP\\Notification\\IAction' => $baseDir.'/lib/public/Notification/IAction.php',  | 
                                                        |
| 661 | + 'OCP\\Notification\\IApp' => $baseDir.'/lib/public/Notification/IApp.php',  | 
                                                        |
| 662 | + 'OCP\\Notification\\IDeferrableApp' => $baseDir.'/lib/public/Notification/IDeferrableApp.php',  | 
                                                        |
| 663 | + 'OCP\\Notification\\IDismissableNotifier' => $baseDir.'/lib/public/Notification/IDismissableNotifier.php',  | 
                                                        |
| 664 | + 'OCP\\Notification\\IManager' => $baseDir.'/lib/public/Notification/IManager.php',  | 
                                                        |
| 665 | + 'OCP\\Notification\\INotification' => $baseDir.'/lib/public/Notification/INotification.php',  | 
                                                        |
| 666 | + 'OCP\\Notification\\INotifier' => $baseDir.'/lib/public/Notification/INotifier.php',  | 
                                                        |
| 667 | + 'OCP\\Notification\\IncompleteNotificationException' => $baseDir.'/lib/public/Notification/IncompleteNotificationException.php',  | 
                                                        |
| 668 | + 'OCP\\Notification\\IncompleteParsedNotificationException' => $baseDir.'/lib/public/Notification/IncompleteParsedNotificationException.php',  | 
                                                        |
| 669 | + 'OCP\\Notification\\InvalidValueException' => $baseDir.'/lib/public/Notification/InvalidValueException.php',  | 
                                                        |
| 670 | + 'OCP\\Notification\\UnknownNotificationException' => $baseDir.'/lib/public/Notification/UnknownNotificationException.php',  | 
                                                        |
| 671 | + 'OCP\\OCM\\Events\\ResourceTypeRegisterEvent' => $baseDir.'/lib/public/OCM/Events/ResourceTypeRegisterEvent.php',  | 
                                                        |
| 672 | + 'OCP\\OCM\\Exceptions\\OCMArgumentException' => $baseDir.'/lib/public/OCM/Exceptions/OCMArgumentException.php',  | 
                                                        |
| 673 | + 'OCP\\OCM\\Exceptions\\OCMProviderException' => $baseDir.'/lib/public/OCM/Exceptions/OCMProviderException.php',  | 
                                                        |
| 674 | + 'OCP\\OCM\\IOCMDiscoveryService' => $baseDir.'/lib/public/OCM/IOCMDiscoveryService.php',  | 
                                                        |
| 675 | + 'OCP\\OCM\\IOCMProvider' => $baseDir.'/lib/public/OCM/IOCMProvider.php',  | 
                                                        |
| 676 | + 'OCP\\OCM\\IOCMResource' => $baseDir.'/lib/public/OCM/IOCMResource.php',  | 
                                                        |
| 677 | + 'OCP\\OCS\\IDiscoveryService' => $baseDir.'/lib/public/OCS/IDiscoveryService.php',  | 
                                                        |
| 678 | + 'OCP\\PreConditionNotMetException' => $baseDir.'/lib/public/PreConditionNotMetException.php',  | 
                                                        |
| 679 | + 'OCP\\Preview\\BeforePreviewFetchedEvent' => $baseDir.'/lib/public/Preview/BeforePreviewFetchedEvent.php',  | 
                                                        |
| 680 | + 'OCP\\Preview\\IMimeIconProvider' => $baseDir.'/lib/public/Preview/IMimeIconProvider.php',  | 
                                                        |
| 681 | + 'OCP\\Preview\\IProvider' => $baseDir.'/lib/public/Preview/IProvider.php',  | 
                                                        |
| 682 | + 'OCP\\Preview\\IProviderV2' => $baseDir.'/lib/public/Preview/IProviderV2.php',  | 
                                                        |
| 683 | + 'OCP\\Preview\\IVersionedPreviewFile' => $baseDir.'/lib/public/Preview/IVersionedPreviewFile.php',  | 
                                                        |
| 684 | + 'OCP\\Profile\\BeforeTemplateRenderedEvent' => $baseDir.'/lib/public/Profile/BeforeTemplateRenderedEvent.php',  | 
                                                        |
| 685 | + 'OCP\\Profile\\ILinkAction' => $baseDir.'/lib/public/Profile/ILinkAction.php',  | 
                                                        |
| 686 | + 'OCP\\Profile\\IProfileManager' => $baseDir.'/lib/public/Profile/IProfileManager.php',  | 
                                                        |
| 687 | + 'OCP\\Profile\\ParameterDoesNotExistException' => $baseDir.'/lib/public/Profile/ParameterDoesNotExistException.php',  | 
                                                        |
| 688 | + 'OCP\\Profiler\\IProfile' => $baseDir.'/lib/public/Profiler/IProfile.php',  | 
                                                        |
| 689 | + 'OCP\\Profiler\\IProfiler' => $baseDir.'/lib/public/Profiler/IProfiler.php',  | 
                                                        |
| 690 | + 'OCP\\Remote\\Api\\IApiCollection' => $baseDir.'/lib/public/Remote/Api/IApiCollection.php',  | 
                                                        |
| 691 | + 'OCP\\Remote\\Api\\IApiFactory' => $baseDir.'/lib/public/Remote/Api/IApiFactory.php',  | 
                                                        |
| 692 | + 'OCP\\Remote\\Api\\ICapabilitiesApi' => $baseDir.'/lib/public/Remote/Api/ICapabilitiesApi.php',  | 
                                                        |
| 693 | + 'OCP\\Remote\\Api\\IUserApi' => $baseDir.'/lib/public/Remote/Api/IUserApi.php',  | 
                                                        |
| 694 | + 'OCP\\Remote\\ICredentials' => $baseDir.'/lib/public/Remote/ICredentials.php',  | 
                                                        |
| 695 | + 'OCP\\Remote\\IInstance' => $baseDir.'/lib/public/Remote/IInstance.php',  | 
                                                        |
| 696 | + 'OCP\\Remote\\IInstanceFactory' => $baseDir.'/lib/public/Remote/IInstanceFactory.php',  | 
                                                        |
| 697 | + 'OCP\\Remote\\IUser' => $baseDir.'/lib/public/Remote/IUser.php',  | 
                                                        |
| 698 | + 'OCP\\RichObjectStrings\\Definitions' => $baseDir.'/lib/public/RichObjectStrings/Definitions.php',  | 
                                                        |
| 699 | + 'OCP\\RichObjectStrings\\IRichTextFormatter' => $baseDir.'/lib/public/RichObjectStrings/IRichTextFormatter.php',  | 
                                                        |
| 700 | + 'OCP\\RichObjectStrings\\IValidator' => $baseDir.'/lib/public/RichObjectStrings/IValidator.php',  | 
                                                        |
| 701 | + 'OCP\\RichObjectStrings\\InvalidObjectExeption' => $baseDir.'/lib/public/RichObjectStrings/InvalidObjectExeption.php',  | 
                                                        |
| 702 | + 'OCP\\Route\\IRoute' => $baseDir.'/lib/public/Route/IRoute.php',  | 
                                                        |
| 703 | + 'OCP\\Route\\IRouter' => $baseDir.'/lib/public/Route/IRouter.php',  | 
                                                        |
| 704 | + 'OCP\\SabrePluginEvent' => $baseDir.'/lib/public/SabrePluginEvent.php',  | 
                                                        |
| 705 | + 'OCP\\SabrePluginException' => $baseDir.'/lib/public/SabrePluginException.php',  | 
                                                        |
| 706 | + 'OCP\\Search\\FilterDefinition' => $baseDir.'/lib/public/Search/FilterDefinition.php',  | 
                                                        |
| 707 | + 'OCP\\Search\\IFilter' => $baseDir.'/lib/public/Search/IFilter.php',  | 
                                                        |
| 708 | + 'OCP\\Search\\IFilterCollection' => $baseDir.'/lib/public/Search/IFilterCollection.php',  | 
                                                        |
| 709 | + 'OCP\\Search\\IFilteringProvider' => $baseDir.'/lib/public/Search/IFilteringProvider.php',  | 
                                                        |
| 710 | + 'OCP\\Search\\IInAppSearch' => $baseDir.'/lib/public/Search/IInAppSearch.php',  | 
                                                        |
| 711 | + 'OCP\\Search\\IProvider' => $baseDir.'/lib/public/Search/IProvider.php',  | 
                                                        |
| 712 | + 'OCP\\Search\\ISearchQuery' => $baseDir.'/lib/public/Search/ISearchQuery.php',  | 
                                                        |
| 713 | + 'OCP\\Search\\PagedProvider' => $baseDir.'/lib/public/Search/PagedProvider.php',  | 
                                                        |
| 714 | + 'OCP\\Search\\Provider' => $baseDir.'/lib/public/Search/Provider.php',  | 
                                                        |
| 715 | + 'OCP\\Search\\Result' => $baseDir.'/lib/public/Search/Result.php',  | 
                                                        |
| 716 | + 'OCP\\Search\\SearchResult' => $baseDir.'/lib/public/Search/SearchResult.php',  | 
                                                        |
| 717 | + 'OCP\\Search\\SearchResultEntry' => $baseDir.'/lib/public/Search/SearchResultEntry.php',  | 
                                                        |
| 718 | + 'OCP\\Security\\Bruteforce\\IThrottler' => $baseDir.'/lib/public/Security/Bruteforce/IThrottler.php',  | 
                                                        |
| 719 | + 'OCP\\Security\\Bruteforce\\MaxDelayReached' => $baseDir.'/lib/public/Security/Bruteforce/MaxDelayReached.php',  | 
                                                        |
| 720 | + 'OCP\\Security\\CSP\\AddContentSecurityPolicyEvent' => $baseDir.'/lib/public/Security/CSP/AddContentSecurityPolicyEvent.php',  | 
                                                        |
| 721 | + 'OCP\\Security\\Events\\GenerateSecurePasswordEvent' => $baseDir.'/lib/public/Security/Events/GenerateSecurePasswordEvent.php',  | 
                                                        |
| 722 | + 'OCP\\Security\\Events\\ValidatePasswordPolicyEvent' => $baseDir.'/lib/public/Security/Events/ValidatePasswordPolicyEvent.php',  | 
                                                        |
| 723 | + 'OCP\\Security\\FeaturePolicy\\AddFeaturePolicyEvent' => $baseDir.'/lib/public/Security/FeaturePolicy/AddFeaturePolicyEvent.php',  | 
                                                        |
| 724 | + 'OCP\\Security\\IContentSecurityPolicyManager' => $baseDir.'/lib/public/Security/IContentSecurityPolicyManager.php',  | 
                                                        |
| 725 | + 'OCP\\Security\\ICredentialsManager' => $baseDir.'/lib/public/Security/ICredentialsManager.php',  | 
                                                        |
| 726 | + 'OCP\\Security\\ICrypto' => $baseDir.'/lib/public/Security/ICrypto.php',  | 
                                                        |
| 727 | + 'OCP\\Security\\IHasher' => $baseDir.'/lib/public/Security/IHasher.php',  | 
                                                        |
| 728 | + 'OCP\\Security\\IRemoteHostValidator' => $baseDir.'/lib/public/Security/IRemoteHostValidator.php',  | 
                                                        |
| 729 | + 'OCP\\Security\\ISecureRandom' => $baseDir.'/lib/public/Security/ISecureRandom.php',  | 
                                                        |
| 730 | + 'OCP\\Security\\ITrustedDomainHelper' => $baseDir.'/lib/public/Security/ITrustedDomainHelper.php',  | 
                                                        |
| 731 | + 'OCP\\Security\\Ip\\IAddress' => $baseDir.'/lib/public/Security/Ip/IAddress.php',  | 
                                                        |
| 732 | + 'OCP\\Security\\Ip\\IFactory' => $baseDir.'/lib/public/Security/Ip/IFactory.php',  | 
                                                        |
| 733 | + 'OCP\\Security\\Ip\\IRange' => $baseDir.'/lib/public/Security/Ip/IRange.php',  | 
                                                        |
| 734 | + 'OCP\\Security\\Ip\\IRemoteAddress' => $baseDir.'/lib/public/Security/Ip/IRemoteAddress.php',  | 
                                                        |
| 735 | + 'OCP\\Security\\PasswordContext' => $baseDir.'/lib/public/Security/PasswordContext.php',  | 
                                                        |
| 736 | + 'OCP\\Security\\RateLimiting\\ILimiter' => $baseDir.'/lib/public/Security/RateLimiting/ILimiter.php',  | 
                                                        |
| 737 | + 'OCP\\Security\\RateLimiting\\IRateLimitExceededException' => $baseDir.'/lib/public/Security/RateLimiting/IRateLimitExceededException.php',  | 
                                                        |
| 738 | + 'OCP\\Security\\VerificationToken\\IVerificationToken' => $baseDir.'/lib/public/Security/VerificationToken/IVerificationToken.php',  | 
                                                        |
| 739 | + 'OCP\\Security\\VerificationToken\\InvalidTokenException' => $baseDir.'/lib/public/Security/VerificationToken/InvalidTokenException.php',  | 
                                                        |
| 740 | + 'OCP\\Server' => $baseDir.'/lib/public/Server.php',  | 
                                                        |
| 741 | + 'OCP\\ServerVersion' => $baseDir.'/lib/public/ServerVersion.php',  | 
                                                        |
| 742 | + 'OCP\\Session\\Exceptions\\SessionNotAvailableException' => $baseDir.'/lib/public/Session/Exceptions/SessionNotAvailableException.php',  | 
                                                        |
| 743 | + 'OCP\\Settings\\DeclarativeSettingsTypes' => $baseDir.'/lib/public/Settings/DeclarativeSettingsTypes.php',  | 
                                                        |
| 744 | + 'OCP\\Settings\\Events\\DeclarativeSettingsGetValueEvent' => $baseDir.'/lib/public/Settings/Events/DeclarativeSettingsGetValueEvent.php',  | 
                                                        |
| 745 | + 'OCP\\Settings\\Events\\DeclarativeSettingsRegisterFormEvent' => $baseDir.'/lib/public/Settings/Events/DeclarativeSettingsRegisterFormEvent.php',  | 
                                                        |
| 746 | + 'OCP\\Settings\\Events\\DeclarativeSettingsSetValueEvent' => $baseDir.'/lib/public/Settings/Events/DeclarativeSettingsSetValueEvent.php',  | 
                                                        |
| 747 | + 'OCP\\Settings\\IDeclarativeManager' => $baseDir.'/lib/public/Settings/IDeclarativeManager.php',  | 
                                                        |
| 748 | + 'OCP\\Settings\\IDeclarativeSettingsForm' => $baseDir.'/lib/public/Settings/IDeclarativeSettingsForm.php',  | 
                                                        |
| 749 | + 'OCP\\Settings\\IDeclarativeSettingsFormWithHandlers' => $baseDir.'/lib/public/Settings/IDeclarativeSettingsFormWithHandlers.php',  | 
                                                        |
| 750 | + 'OCP\\Settings\\IDelegatedSettings' => $baseDir.'/lib/public/Settings/IDelegatedSettings.php',  | 
                                                        |
| 751 | + 'OCP\\Settings\\IIconSection' => $baseDir.'/lib/public/Settings/IIconSection.php',  | 
                                                        |
| 752 | + 'OCP\\Settings\\IManager' => $baseDir.'/lib/public/Settings/IManager.php',  | 
                                                        |
| 753 | + 'OCP\\Settings\\ISettings' => $baseDir.'/lib/public/Settings/ISettings.php',  | 
                                                        |
| 754 | + 'OCP\\Settings\\ISubAdminSettings' => $baseDir.'/lib/public/Settings/ISubAdminSettings.php',  | 
                                                        |
| 755 | + 'OCP\\SetupCheck\\CheckServerResponseTrait' => $baseDir.'/lib/public/SetupCheck/CheckServerResponseTrait.php',  | 
                                                        |
| 756 | + 'OCP\\SetupCheck\\ISetupCheck' => $baseDir.'/lib/public/SetupCheck/ISetupCheck.php',  | 
                                                        |
| 757 | + 'OCP\\SetupCheck\\ISetupCheckManager' => $baseDir.'/lib/public/SetupCheck/ISetupCheckManager.php',  | 
                                                        |
| 758 | + 'OCP\\SetupCheck\\SetupResult' => $baseDir.'/lib/public/SetupCheck/SetupResult.php',  | 
                                                        |
| 759 | + 'OCP\\Share' => $baseDir.'/lib/public/Share.php',  | 
                                                        |
| 760 | + 'OCP\\Share\\Events\\BeforeShareCreatedEvent' => $baseDir.'/lib/public/Share/Events/BeforeShareCreatedEvent.php',  | 
                                                        |
| 761 | + 'OCP\\Share\\Events\\BeforeShareDeletedEvent' => $baseDir.'/lib/public/Share/Events/BeforeShareDeletedEvent.php',  | 
                                                        |
| 762 | + 'OCP\\Share\\Events\\ShareAcceptedEvent' => $baseDir.'/lib/public/Share/Events/ShareAcceptedEvent.php',  | 
                                                        |
| 763 | + 'OCP\\Share\\Events\\ShareCreatedEvent' => $baseDir.'/lib/public/Share/Events/ShareCreatedEvent.php',  | 
                                                        |
| 764 | + 'OCP\\Share\\Events\\ShareDeletedEvent' => $baseDir.'/lib/public/Share/Events/ShareDeletedEvent.php',  | 
                                                        |
| 765 | + 'OCP\\Share\\Events\\ShareDeletedFromSelfEvent' => $baseDir.'/lib/public/Share/Events/ShareDeletedFromSelfEvent.php',  | 
                                                        |
| 766 | + 'OCP\\Share\\Events\\VerifyMountPointEvent' => $baseDir.'/lib/public/Share/Events/VerifyMountPointEvent.php',  | 
                                                        |
| 767 | + 'OCP\\Share\\Exceptions\\AlreadySharedException' => $baseDir.'/lib/public/Share/Exceptions/AlreadySharedException.php',  | 
                                                        |
| 768 | + 'OCP\\Share\\Exceptions\\GenericShareException' => $baseDir.'/lib/public/Share/Exceptions/GenericShareException.php',  | 
                                                        |
| 769 | + 'OCP\\Share\\Exceptions\\IllegalIDChangeException' => $baseDir.'/lib/public/Share/Exceptions/IllegalIDChangeException.php',  | 
                                                        |
| 770 | + 'OCP\\Share\\Exceptions\\ShareNotFound' => $baseDir.'/lib/public/Share/Exceptions/ShareNotFound.php',  | 
                                                        |
| 771 | + 'OCP\\Share\\Exceptions\\ShareTokenException' => $baseDir.'/lib/public/Share/Exceptions/ShareTokenException.php',  | 
                                                        |
| 772 | + 'OCP\\Share\\IAttributes' => $baseDir.'/lib/public/Share/IAttributes.php',  | 
                                                        |
| 773 | + 'OCP\\Share\\IManager' => $baseDir.'/lib/public/Share/IManager.php',  | 
                                                        |
| 774 | + 'OCP\\Share\\IProviderFactory' => $baseDir.'/lib/public/Share/IProviderFactory.php',  | 
                                                        |
| 775 | + 'OCP\\Share\\IPublicShareTemplateFactory' => $baseDir.'/lib/public/Share/IPublicShareTemplateFactory.php',  | 
                                                        |
| 776 | + 'OCP\\Share\\IPublicShareTemplateProvider' => $baseDir.'/lib/public/Share/IPublicShareTemplateProvider.php',  | 
                                                        |
| 777 | + 'OCP\\Share\\IShare' => $baseDir.'/lib/public/Share/IShare.php',  | 
                                                        |
| 778 | + 'OCP\\Share\\IShareHelper' => $baseDir.'/lib/public/Share/IShareHelper.php',  | 
                                                        |
| 779 | + 'OCP\\Share\\IShareProvider' => $baseDir.'/lib/public/Share/IShareProvider.php',  | 
                                                        |
| 780 | + 'OCP\\Share\\IShareProviderSupportsAccept' => $baseDir.'/lib/public/Share/IShareProviderSupportsAccept.php',  | 
                                                        |
| 781 | + 'OCP\\Share\\IShareProviderWithNotification' => $baseDir.'/lib/public/Share/IShareProviderWithNotification.php',  | 
                                                        |
| 782 | + 'OCP\\Share_Backend' => $baseDir.'/lib/public/Share_Backend.php',  | 
                                                        |
| 783 | + 'OCP\\Share_Backend_Collection' => $baseDir.'/lib/public/Share_Backend_Collection.php',  | 
                                                        |
| 784 | + 'OCP\\Share_Backend_File_Dependent' => $baseDir.'/lib/public/Share_Backend_File_Dependent.php',  | 
                                                        |
| 785 | + 'OCP\\SpeechToText\\Events\\AbstractTranscriptionEvent' => $baseDir.'/lib/public/SpeechToText/Events/AbstractTranscriptionEvent.php',  | 
                                                        |
| 786 | + 'OCP\\SpeechToText\\Events\\TranscriptionFailedEvent' => $baseDir.'/lib/public/SpeechToText/Events/TranscriptionFailedEvent.php',  | 
                                                        |
| 787 | + 'OCP\\SpeechToText\\Events\\TranscriptionSuccessfulEvent' => $baseDir.'/lib/public/SpeechToText/Events/TranscriptionSuccessfulEvent.php',  | 
                                                        |
| 788 | + 'OCP\\SpeechToText\\ISpeechToTextManager' => $baseDir.'/lib/public/SpeechToText/ISpeechToTextManager.php',  | 
                                                        |
| 789 | + 'OCP\\SpeechToText\\ISpeechToTextProvider' => $baseDir.'/lib/public/SpeechToText/ISpeechToTextProvider.php',  | 
                                                        |
| 790 | + 'OCP\\SpeechToText\\ISpeechToTextProviderWithId' => $baseDir.'/lib/public/SpeechToText/ISpeechToTextProviderWithId.php',  | 
                                                        |
| 791 | + 'OCP\\SpeechToText\\ISpeechToTextProviderWithUserId' => $baseDir.'/lib/public/SpeechToText/ISpeechToTextProviderWithUserId.php',  | 
                                                        |
| 792 | + 'OCP\\Support\\CrashReport\\ICollectBreadcrumbs' => $baseDir.'/lib/public/Support/CrashReport/ICollectBreadcrumbs.php',  | 
                                                        |
| 793 | + 'OCP\\Support\\CrashReport\\IMessageReporter' => $baseDir.'/lib/public/Support/CrashReport/IMessageReporter.php',  | 
                                                        |
| 794 | + 'OCP\\Support\\CrashReport\\IRegistry' => $baseDir.'/lib/public/Support/CrashReport/IRegistry.php',  | 
                                                        |
| 795 | + 'OCP\\Support\\CrashReport\\IReporter' => $baseDir.'/lib/public/Support/CrashReport/IReporter.php',  | 
                                                        |
| 796 | + 'OCP\\Support\\Subscription\\Exception\\AlreadyRegisteredException' => $baseDir.'/lib/public/Support/Subscription/Exception/AlreadyRegisteredException.php',  | 
                                                        |
| 797 | + 'OCP\\Support\\Subscription\\IAssertion' => $baseDir.'/lib/public/Support/Subscription/IAssertion.php',  | 
                                                        |
| 798 | + 'OCP\\Support\\Subscription\\IRegistry' => $baseDir.'/lib/public/Support/Subscription/IRegistry.php',  | 
                                                        |
| 799 | + 'OCP\\Support\\Subscription\\ISubscription' => $baseDir.'/lib/public/Support/Subscription/ISubscription.php',  | 
                                                        |
| 800 | + 'OCP\\Support\\Subscription\\ISupportedApps' => $baseDir.'/lib/public/Support/Subscription/ISupportedApps.php',  | 
                                                        |
| 801 | + 'OCP\\SystemTag\\ISystemTag' => $baseDir.'/lib/public/SystemTag/ISystemTag.php',  | 
                                                        |
| 802 | + 'OCP\\SystemTag\\ISystemTagManager' => $baseDir.'/lib/public/SystemTag/ISystemTagManager.php',  | 
                                                        |
| 803 | + 'OCP\\SystemTag\\ISystemTagManagerFactory' => $baseDir.'/lib/public/SystemTag/ISystemTagManagerFactory.php',  | 
                                                        |
| 804 | + 'OCP\\SystemTag\\ISystemTagObjectMapper' => $baseDir.'/lib/public/SystemTag/ISystemTagObjectMapper.php',  | 
                                                        |
| 805 | + 'OCP\\SystemTag\\ManagerEvent' => $baseDir.'/lib/public/SystemTag/ManagerEvent.php',  | 
                                                        |
| 806 | + 'OCP\\SystemTag\\MapperEvent' => $baseDir.'/lib/public/SystemTag/MapperEvent.php',  | 
                                                        |
| 807 | + 'OCP\\SystemTag\\SystemTagsEntityEvent' => $baseDir.'/lib/public/SystemTag/SystemTagsEntityEvent.php',  | 
                                                        |
| 808 | + 'OCP\\SystemTag\\TagAlreadyExistsException' => $baseDir.'/lib/public/SystemTag/TagAlreadyExistsException.php',  | 
                                                        |
| 809 | + 'OCP\\SystemTag\\TagCreationForbiddenException' => $baseDir.'/lib/public/SystemTag/TagCreationForbiddenException.php',  | 
                                                        |
| 810 | + 'OCP\\SystemTag\\TagNotFoundException' => $baseDir.'/lib/public/SystemTag/TagNotFoundException.php',  | 
                                                        |
| 811 | + 'OCP\\SystemTag\\TagUpdateForbiddenException' => $baseDir.'/lib/public/SystemTag/TagUpdateForbiddenException.php',  | 
                                                        |
| 812 | + 'OCP\\Talk\\Exceptions\\NoBackendException' => $baseDir.'/lib/public/Talk/Exceptions/NoBackendException.php',  | 
                                                        |
| 813 | + 'OCP\\Talk\\IBroker' => $baseDir.'/lib/public/Talk/IBroker.php',  | 
                                                        |
| 814 | + 'OCP\\Talk\\IConversation' => $baseDir.'/lib/public/Talk/IConversation.php',  | 
                                                        |
| 815 | + 'OCP\\Talk\\IConversationOptions' => $baseDir.'/lib/public/Talk/IConversationOptions.php',  | 
                                                        |
| 816 | + 'OCP\\Talk\\ITalkBackend' => $baseDir.'/lib/public/Talk/ITalkBackend.php',  | 
                                                        |
| 817 | + 'OCP\\TaskProcessing\\EShapeType' => $baseDir.'/lib/public/TaskProcessing/EShapeType.php',  | 
                                                        |
| 818 | + 'OCP\\TaskProcessing\\Events\\AbstractTaskProcessingEvent' => $baseDir.'/lib/public/TaskProcessing/Events/AbstractTaskProcessingEvent.php',  | 
                                                        |
| 819 | + 'OCP\\TaskProcessing\\Events\\TaskFailedEvent' => $baseDir.'/lib/public/TaskProcessing/Events/TaskFailedEvent.php',  | 
                                                        |
| 820 | + 'OCP\\TaskProcessing\\Events\\TaskSuccessfulEvent' => $baseDir.'/lib/public/TaskProcessing/Events/TaskSuccessfulEvent.php',  | 
                                                        |
| 821 | + 'OCP\\TaskProcessing\\Exception\\Exception' => $baseDir.'/lib/public/TaskProcessing/Exception/Exception.php',  | 
                                                        |
| 822 | + 'OCP\\TaskProcessing\\Exception\\NotFoundException' => $baseDir.'/lib/public/TaskProcessing/Exception/NotFoundException.php',  | 
                                                        |
| 823 | + 'OCP\\TaskProcessing\\Exception\\PreConditionNotMetException' => $baseDir.'/lib/public/TaskProcessing/Exception/PreConditionNotMetException.php',  | 
                                                        |
| 824 | + 'OCP\\TaskProcessing\\Exception\\ProcessingException' => $baseDir.'/lib/public/TaskProcessing/Exception/ProcessingException.php',  | 
                                                        |
| 825 | + 'OCP\\TaskProcessing\\Exception\\UnauthorizedException' => $baseDir.'/lib/public/TaskProcessing/Exception/UnauthorizedException.php',  | 
                                                        |
| 826 | + 'OCP\\TaskProcessing\\Exception\\ValidationException' => $baseDir.'/lib/public/TaskProcessing/Exception/ValidationException.php',  | 
                                                        |
| 827 | + 'OCP\\TaskProcessing\\IManager' => $baseDir.'/lib/public/TaskProcessing/IManager.php',  | 
                                                        |
| 828 | + 'OCP\\TaskProcessing\\IProvider' => $baseDir.'/lib/public/TaskProcessing/IProvider.php',  | 
                                                        |
| 829 | + 'OCP\\TaskProcessing\\ISynchronousProvider' => $baseDir.'/lib/public/TaskProcessing/ISynchronousProvider.php',  | 
                                                        |
| 830 | + 'OCP\\TaskProcessing\\ITaskType' => $baseDir.'/lib/public/TaskProcessing/ITaskType.php',  | 
                                                        |
| 831 | + 'OCP\\TaskProcessing\\ShapeDescriptor' => $baseDir.'/lib/public/TaskProcessing/ShapeDescriptor.php',  | 
                                                        |
| 832 | + 'OCP\\TaskProcessing\\ShapeEnumValue' => $baseDir.'/lib/public/TaskProcessing/ShapeEnumValue.php',  | 
                                                        |
| 833 | + 'OCP\\TaskProcessing\\Task' => $baseDir.'/lib/public/TaskProcessing/Task.php',  | 
                                                        |
| 834 | + 'OCP\\TaskProcessing\\TaskTypes\\AudioToText' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/AudioToText.php',  | 
                                                        |
| 835 | + 'OCP\\TaskProcessing\\TaskTypes\\ContextAgentInteraction' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/ContextAgentInteraction.php',  | 
                                                        |
| 836 | + 'OCP\\TaskProcessing\\TaskTypes\\ContextWrite' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/ContextWrite.php',  | 
                                                        |
| 837 | + 'OCP\\TaskProcessing\\TaskTypes\\GenerateEmoji' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/GenerateEmoji.php',  | 
                                                        |
| 838 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToImage' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToImage.php',  | 
                                                        |
| 839 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToText' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToText.php',  | 
                                                        |
| 840 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextChangeTone' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToTextChangeTone.php',  | 
                                                        |
| 841 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextChat' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToTextChat.php',  | 
                                                        |
| 842 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextChatWithTools' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToTextChatWithTools.php',  | 
                                                        |
| 843 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextFormalization' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToTextFormalization.php',  | 
                                                        |
| 844 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextHeadline' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToTextHeadline.php',  | 
                                                        |
| 845 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextProofread' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToTextProofread.php',  | 
                                                        |
| 846 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextReformulation' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToTextReformulation.php',  | 
                                                        |
| 847 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextSimplification' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToTextSimplification.php',  | 
                                                        |
| 848 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextSummary' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToTextSummary.php',  | 
                                                        |
| 849 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextTopics' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToTextTopics.php',  | 
                                                        |
| 850 | + 'OCP\\TaskProcessing\\TaskTypes\\TextToTextTranslate' => $baseDir.'/lib/public/TaskProcessing/TaskTypes/TextToTextTranslate.php',  | 
                                                        |
| 851 | + 'OCP\\Teams\\ITeamManager' => $baseDir.'/lib/public/Teams/ITeamManager.php',  | 
                                                        |
| 852 | + 'OCP\\Teams\\ITeamResourceProvider' => $baseDir.'/lib/public/Teams/ITeamResourceProvider.php',  | 
                                                        |
| 853 | + 'OCP\\Teams\\Team' => $baseDir.'/lib/public/Teams/Team.php',  | 
                                                        |
| 854 | + 'OCP\\Teams\\TeamResource' => $baseDir.'/lib/public/Teams/TeamResource.php',  | 
                                                        |
| 855 | + 'OCP\\Template' => $baseDir.'/lib/public/Template.php',  | 
                                                        |
| 856 | + 'OCP\\Template\\ITemplate' => $baseDir.'/lib/public/Template/ITemplate.php',  | 
                                                        |
| 857 | + 'OCP\\Template\\ITemplateManager' => $baseDir.'/lib/public/Template/ITemplateManager.php',  | 
                                                        |
| 858 | + 'OCP\\Template\\TemplateNotFoundException' => $baseDir.'/lib/public/Template/TemplateNotFoundException.php',  | 
                                                        |
| 859 | + 'OCP\\TextProcessing\\Events\\AbstractTextProcessingEvent' => $baseDir.'/lib/public/TextProcessing/Events/AbstractTextProcessingEvent.php',  | 
                                                        |
| 860 | + 'OCP\\TextProcessing\\Events\\TaskFailedEvent' => $baseDir.'/lib/public/TextProcessing/Events/TaskFailedEvent.php',  | 
                                                        |
| 861 | + 'OCP\\TextProcessing\\Events\\TaskSuccessfulEvent' => $baseDir.'/lib/public/TextProcessing/Events/TaskSuccessfulEvent.php',  | 
                                                        |
| 862 | + 'OCP\\TextProcessing\\Exception\\TaskFailureException' => $baseDir.'/lib/public/TextProcessing/Exception/TaskFailureException.php',  | 
                                                        |
| 863 | + 'OCP\\TextProcessing\\FreePromptTaskType' => $baseDir.'/lib/public/TextProcessing/FreePromptTaskType.php',  | 
                                                        |
| 864 | + 'OCP\\TextProcessing\\HeadlineTaskType' => $baseDir.'/lib/public/TextProcessing/HeadlineTaskType.php',  | 
                                                        |
| 865 | + 'OCP\\TextProcessing\\IManager' => $baseDir.'/lib/public/TextProcessing/IManager.php',  | 
                                                        |
| 866 | + 'OCP\\TextProcessing\\IProvider' => $baseDir.'/lib/public/TextProcessing/IProvider.php',  | 
                                                        |
| 867 | + 'OCP\\TextProcessing\\IProviderWithExpectedRuntime' => $baseDir.'/lib/public/TextProcessing/IProviderWithExpectedRuntime.php',  | 
                                                        |
| 868 | + 'OCP\\TextProcessing\\IProviderWithId' => $baseDir.'/lib/public/TextProcessing/IProviderWithId.php',  | 
                                                        |
| 869 | + 'OCP\\TextProcessing\\IProviderWithUserId' => $baseDir.'/lib/public/TextProcessing/IProviderWithUserId.php',  | 
                                                        |
| 870 | + 'OCP\\TextProcessing\\ITaskType' => $baseDir.'/lib/public/TextProcessing/ITaskType.php',  | 
                                                        |
| 871 | + 'OCP\\TextProcessing\\SummaryTaskType' => $baseDir.'/lib/public/TextProcessing/SummaryTaskType.php',  | 
                                                        |
| 872 | + 'OCP\\TextProcessing\\Task' => $baseDir.'/lib/public/TextProcessing/Task.php',  | 
                                                        |
| 873 | + 'OCP\\TextProcessing\\TopicsTaskType' => $baseDir.'/lib/public/TextProcessing/TopicsTaskType.php',  | 
                                                        |
| 874 | + 'OCP\\TextToImage\\Events\\AbstractTextToImageEvent' => $baseDir.'/lib/public/TextToImage/Events/AbstractTextToImageEvent.php',  | 
                                                        |
| 875 | + 'OCP\\TextToImage\\Events\\TaskFailedEvent' => $baseDir.'/lib/public/TextToImage/Events/TaskFailedEvent.php',  | 
                                                        |
| 876 | + 'OCP\\TextToImage\\Events\\TaskSuccessfulEvent' => $baseDir.'/lib/public/TextToImage/Events/TaskSuccessfulEvent.php',  | 
                                                        |
| 877 | + 'OCP\\TextToImage\\Exception\\TaskFailureException' => $baseDir.'/lib/public/TextToImage/Exception/TaskFailureException.php',  | 
                                                        |
| 878 | + 'OCP\\TextToImage\\Exception\\TaskNotFoundException' => $baseDir.'/lib/public/TextToImage/Exception/TaskNotFoundException.php',  | 
                                                        |
| 879 | + 'OCP\\TextToImage\\Exception\\TextToImageException' => $baseDir.'/lib/public/TextToImage/Exception/TextToImageException.php',  | 
                                                        |
| 880 | + 'OCP\\TextToImage\\IManager' => $baseDir.'/lib/public/TextToImage/IManager.php',  | 
                                                        |
| 881 | + 'OCP\\TextToImage\\IProvider' => $baseDir.'/lib/public/TextToImage/IProvider.php',  | 
                                                        |
| 882 | + 'OCP\\TextToImage\\IProviderWithUserId' => $baseDir.'/lib/public/TextToImage/IProviderWithUserId.php',  | 
                                                        |
| 883 | + 'OCP\\TextToImage\\Task' => $baseDir.'/lib/public/TextToImage/Task.php',  | 
                                                        |
| 884 | + 'OCP\\Translation\\CouldNotTranslateException' => $baseDir.'/lib/public/Translation/CouldNotTranslateException.php',  | 
                                                        |
| 885 | + 'OCP\\Translation\\IDetectLanguageProvider' => $baseDir.'/lib/public/Translation/IDetectLanguageProvider.php',  | 
                                                        |
| 886 | + 'OCP\\Translation\\ITranslationManager' => $baseDir.'/lib/public/Translation/ITranslationManager.php',  | 
                                                        |
| 887 | + 'OCP\\Translation\\ITranslationProvider' => $baseDir.'/lib/public/Translation/ITranslationProvider.php',  | 
                                                        |
| 888 | + 'OCP\\Translation\\ITranslationProviderWithId' => $baseDir.'/lib/public/Translation/ITranslationProviderWithId.php',  | 
                                                        |
| 889 | + 'OCP\\Translation\\ITranslationProviderWithUserId' => $baseDir.'/lib/public/Translation/ITranslationProviderWithUserId.php',  | 
                                                        |
| 890 | + 'OCP\\Translation\\LanguageTuple' => $baseDir.'/lib/public/Translation/LanguageTuple.php',  | 
                                                        |
| 891 | + 'OCP\\UserInterface' => $baseDir.'/lib/public/UserInterface.php',  | 
                                                        |
| 892 | + 'OCP\\UserMigration\\IExportDestination' => $baseDir.'/lib/public/UserMigration/IExportDestination.php',  | 
                                                        |
| 893 | + 'OCP\\UserMigration\\IImportSource' => $baseDir.'/lib/public/UserMigration/IImportSource.php',  | 
                                                        |
| 894 | + 'OCP\\UserMigration\\IMigrator' => $baseDir.'/lib/public/UserMigration/IMigrator.php',  | 
                                                        |
| 895 | + 'OCP\\UserMigration\\ISizeEstimationMigrator' => $baseDir.'/lib/public/UserMigration/ISizeEstimationMigrator.php',  | 
                                                        |
| 896 | + 'OCP\\UserMigration\\TMigratorBasicVersionHandling' => $baseDir.'/lib/public/UserMigration/TMigratorBasicVersionHandling.php',  | 
                                                        |
| 897 | + 'OCP\\UserMigration\\UserMigrationException' => $baseDir.'/lib/public/UserMigration/UserMigrationException.php',  | 
                                                        |
| 898 | + 'OCP\\UserStatus\\IManager' => $baseDir.'/lib/public/UserStatus/IManager.php',  | 
                                                        |
| 899 | + 'OCP\\UserStatus\\IProvider' => $baseDir.'/lib/public/UserStatus/IProvider.php',  | 
                                                        |
| 900 | + 'OCP\\UserStatus\\IUserStatus' => $baseDir.'/lib/public/UserStatus/IUserStatus.php',  | 
                                                        |
| 901 | + 'OCP\\User\\Backend\\ABackend' => $baseDir.'/lib/public/User/Backend/ABackend.php',  | 
                                                        |
| 902 | + 'OCP\\User\\Backend\\ICheckPasswordBackend' => $baseDir.'/lib/public/User/Backend/ICheckPasswordBackend.php',  | 
                                                        |
| 903 | + 'OCP\\User\\Backend\\ICountMappedUsersBackend' => $baseDir.'/lib/public/User/Backend/ICountMappedUsersBackend.php',  | 
                                                        |
| 904 | + 'OCP\\User\\Backend\\ICountUsersBackend' => $baseDir.'/lib/public/User/Backend/ICountUsersBackend.php',  | 
                                                        |
| 905 | + 'OCP\\User\\Backend\\ICreateUserBackend' => $baseDir.'/lib/public/User/Backend/ICreateUserBackend.php',  | 
                                                        |
| 906 | + 'OCP\\User\\Backend\\ICustomLogout' => $baseDir.'/lib/public/User/Backend/ICustomLogout.php',  | 
                                                        |
| 907 | + 'OCP\\User\\Backend\\IGetDisplayNameBackend' => $baseDir.'/lib/public/User/Backend/IGetDisplayNameBackend.php',  | 
                                                        |
| 908 | + 'OCP\\User\\Backend\\IGetHomeBackend' => $baseDir.'/lib/public/User/Backend/IGetHomeBackend.php',  | 
                                                        |
| 909 | + 'OCP\\User\\Backend\\IGetRealUIDBackend' => $baseDir.'/lib/public/User/Backend/IGetRealUIDBackend.php',  | 
                                                        |
| 910 | + 'OCP\\User\\Backend\\ILimitAwareCountUsersBackend' => $baseDir.'/lib/public/User/Backend/ILimitAwareCountUsersBackend.php',  | 
                                                        |
| 911 | + 'OCP\\User\\Backend\\IPasswordConfirmationBackend' => $baseDir.'/lib/public/User/Backend/IPasswordConfirmationBackend.php',  | 
                                                        |
| 912 | + 'OCP\\User\\Backend\\IPasswordHashBackend' => $baseDir.'/lib/public/User/Backend/IPasswordHashBackend.php',  | 
                                                        |
| 913 | + 'OCP\\User\\Backend\\IProvideAvatarBackend' => $baseDir.'/lib/public/User/Backend/IProvideAvatarBackend.php',  | 
                                                        |
| 914 | + 'OCP\\User\\Backend\\IProvideEnabledStateBackend' => $baseDir.'/lib/public/User/Backend/IProvideEnabledStateBackend.php',  | 
                                                        |
| 915 | + 'OCP\\User\\Backend\\ISearchKnownUsersBackend' => $baseDir.'/lib/public/User/Backend/ISearchKnownUsersBackend.php',  | 
                                                        |
| 916 | + 'OCP\\User\\Backend\\ISetDisplayNameBackend' => $baseDir.'/lib/public/User/Backend/ISetDisplayNameBackend.php',  | 
                                                        |
| 917 | + 'OCP\\User\\Backend\\ISetPasswordBackend' => $baseDir.'/lib/public/User/Backend/ISetPasswordBackend.php',  | 
                                                        |
| 918 | + 'OCP\\User\\Events\\BeforePasswordUpdatedEvent' => $baseDir.'/lib/public/User/Events/BeforePasswordUpdatedEvent.php',  | 
                                                        |
| 919 | + 'OCP\\User\\Events\\BeforeUserCreatedEvent' => $baseDir.'/lib/public/User/Events/BeforeUserCreatedEvent.php',  | 
                                                        |
| 920 | + 'OCP\\User\\Events\\BeforeUserDeletedEvent' => $baseDir.'/lib/public/User/Events/BeforeUserDeletedEvent.php',  | 
                                                        |
| 921 | + 'OCP\\User\\Events\\BeforeUserIdUnassignedEvent' => $baseDir.'/lib/public/User/Events/BeforeUserIdUnassignedEvent.php',  | 
                                                        |
| 922 | + 'OCP\\User\\Events\\BeforeUserLoggedInEvent' => $baseDir.'/lib/public/User/Events/BeforeUserLoggedInEvent.php',  | 
                                                        |
| 923 | + 'OCP\\User\\Events\\BeforeUserLoggedInWithCookieEvent' => $baseDir.'/lib/public/User/Events/BeforeUserLoggedInWithCookieEvent.php',  | 
                                                        |
| 924 | + 'OCP\\User\\Events\\BeforeUserLoggedOutEvent' => $baseDir.'/lib/public/User/Events/BeforeUserLoggedOutEvent.php',  | 
                                                        |
| 925 | + 'OCP\\User\\Events\\OutOfOfficeChangedEvent' => $baseDir.'/lib/public/User/Events/OutOfOfficeChangedEvent.php',  | 
                                                        |
| 926 | + 'OCP\\User\\Events\\OutOfOfficeClearedEvent' => $baseDir.'/lib/public/User/Events/OutOfOfficeClearedEvent.php',  | 
                                                        |
| 927 | + 'OCP\\User\\Events\\OutOfOfficeEndedEvent' => $baseDir.'/lib/public/User/Events/OutOfOfficeEndedEvent.php',  | 
                                                        |
| 928 | + 'OCP\\User\\Events\\OutOfOfficeScheduledEvent' => $baseDir.'/lib/public/User/Events/OutOfOfficeScheduledEvent.php',  | 
                                                        |
| 929 | + 'OCP\\User\\Events\\OutOfOfficeStartedEvent' => $baseDir.'/lib/public/User/Events/OutOfOfficeStartedEvent.php',  | 
                                                        |
| 930 | + 'OCP\\User\\Events\\PasswordUpdatedEvent' => $baseDir.'/lib/public/User/Events/PasswordUpdatedEvent.php',  | 
                                                        |
| 931 | + 'OCP\\User\\Events\\PostLoginEvent' => $baseDir.'/lib/public/User/Events/PostLoginEvent.php',  | 
                                                        |
| 932 | + 'OCP\\User\\Events\\UserChangedEvent' => $baseDir.'/lib/public/User/Events/UserChangedEvent.php',  | 
                                                        |
| 933 | + 'OCP\\User\\Events\\UserCreatedEvent' => $baseDir.'/lib/public/User/Events/UserCreatedEvent.php',  | 
                                                        |
| 934 | + 'OCP\\User\\Events\\UserDeletedEvent' => $baseDir.'/lib/public/User/Events/UserDeletedEvent.php',  | 
                                                        |
| 935 | + 'OCP\\User\\Events\\UserFirstTimeLoggedInEvent' => $baseDir.'/lib/public/User/Events/UserFirstTimeLoggedInEvent.php',  | 
                                                        |
| 936 | + 'OCP\\User\\Events\\UserIdAssignedEvent' => $baseDir.'/lib/public/User/Events/UserIdAssignedEvent.php',  | 
                                                        |
| 937 | + 'OCP\\User\\Events\\UserIdUnassignedEvent' => $baseDir.'/lib/public/User/Events/UserIdUnassignedEvent.php',  | 
                                                        |
| 938 | + 'OCP\\User\\Events\\UserLiveStatusEvent' => $baseDir.'/lib/public/User/Events/UserLiveStatusEvent.php',  | 
                                                        |
| 939 | + 'OCP\\User\\Events\\UserLoggedInEvent' => $baseDir.'/lib/public/User/Events/UserLoggedInEvent.php',  | 
                                                        |
| 940 | + 'OCP\\User\\Events\\UserLoggedInWithCookieEvent' => $baseDir.'/lib/public/User/Events/UserLoggedInWithCookieEvent.php',  | 
                                                        |
| 941 | + 'OCP\\User\\Events\\UserLoggedOutEvent' => $baseDir.'/lib/public/User/Events/UserLoggedOutEvent.php',  | 
                                                        |
| 942 | + 'OCP\\User\\GetQuotaEvent' => $baseDir.'/lib/public/User/GetQuotaEvent.php',  | 
                                                        |
| 943 | + 'OCP\\User\\IAvailabilityCoordinator' => $baseDir.'/lib/public/User/IAvailabilityCoordinator.php',  | 
                                                        |
| 944 | + 'OCP\\User\\IOutOfOfficeData' => $baseDir.'/lib/public/User/IOutOfOfficeData.php',  | 
                                                        |
| 945 | + 'OCP\\Util' => $baseDir.'/lib/public/Util.php',  | 
                                                        |
| 946 | + 'OCP\\WorkflowEngine\\EntityContext\\IContextPortation' => $baseDir.'/lib/public/WorkflowEngine/EntityContext/IContextPortation.php',  | 
                                                        |
| 947 | + 'OCP\\WorkflowEngine\\EntityContext\\IDisplayName' => $baseDir.'/lib/public/WorkflowEngine/EntityContext/IDisplayName.php',  | 
                                                        |
| 948 | + 'OCP\\WorkflowEngine\\EntityContext\\IDisplayText' => $baseDir.'/lib/public/WorkflowEngine/EntityContext/IDisplayText.php',  | 
                                                        |
| 949 | + 'OCP\\WorkflowEngine\\EntityContext\\IIcon' => $baseDir.'/lib/public/WorkflowEngine/EntityContext/IIcon.php',  | 
                                                        |
| 950 | + 'OCP\\WorkflowEngine\\EntityContext\\IUrl' => $baseDir.'/lib/public/WorkflowEngine/EntityContext/IUrl.php',  | 
                                                        |
| 951 | + 'OCP\\WorkflowEngine\\Events\\LoadSettingsScriptsEvent' => $baseDir.'/lib/public/WorkflowEngine/Events/LoadSettingsScriptsEvent.php',  | 
                                                        |
| 952 | + 'OCP\\WorkflowEngine\\Events\\RegisterChecksEvent' => $baseDir.'/lib/public/WorkflowEngine/Events/RegisterChecksEvent.php',  | 
                                                        |
| 953 | + 'OCP\\WorkflowEngine\\Events\\RegisterEntitiesEvent' => $baseDir.'/lib/public/WorkflowEngine/Events/RegisterEntitiesEvent.php',  | 
                                                        |
| 954 | + 'OCP\\WorkflowEngine\\Events\\RegisterOperationsEvent' => $baseDir.'/lib/public/WorkflowEngine/Events/RegisterOperationsEvent.php',  | 
                                                        |
| 955 | + 'OCP\\WorkflowEngine\\GenericEntityEvent' => $baseDir.'/lib/public/WorkflowEngine/GenericEntityEvent.php',  | 
                                                        |
| 956 | + 'OCP\\WorkflowEngine\\ICheck' => $baseDir.'/lib/public/WorkflowEngine/ICheck.php',  | 
                                                        |
| 957 | + 'OCP\\WorkflowEngine\\IComplexOperation' => $baseDir.'/lib/public/WorkflowEngine/IComplexOperation.php',  | 
                                                        |
| 958 | + 'OCP\\WorkflowEngine\\IEntity' => $baseDir.'/lib/public/WorkflowEngine/IEntity.php',  | 
                                                        |
| 959 | + 'OCP\\WorkflowEngine\\IEntityCheck' => $baseDir.'/lib/public/WorkflowEngine/IEntityCheck.php',  | 
                                                        |
| 960 | + 'OCP\\WorkflowEngine\\IEntityEvent' => $baseDir.'/lib/public/WorkflowEngine/IEntityEvent.php',  | 
                                                        |
| 961 | + 'OCP\\WorkflowEngine\\IFileCheck' => $baseDir.'/lib/public/WorkflowEngine/IFileCheck.php',  | 
                                                        |
| 962 | + 'OCP\\WorkflowEngine\\IManager' => $baseDir.'/lib/public/WorkflowEngine/IManager.php',  | 
                                                        |
| 963 | + 'OCP\\WorkflowEngine\\IOperation' => $baseDir.'/lib/public/WorkflowEngine/IOperation.php',  | 
                                                        |
| 964 | + 'OCP\\WorkflowEngine\\IRuleMatcher' => $baseDir.'/lib/public/WorkflowEngine/IRuleMatcher.php',  | 
                                                        |
| 965 | + 'OCP\\WorkflowEngine\\ISpecificOperation' => $baseDir.'/lib/public/WorkflowEngine/ISpecificOperation.php',  | 
                                                        |
| 966 | + 'OC\\Accounts\\Account' => $baseDir.'/lib/private/Accounts/Account.php',  | 
                                                        |
| 967 | + 'OC\\Accounts\\AccountManager' => $baseDir.'/lib/private/Accounts/AccountManager.php',  | 
                                                        |
| 968 | + 'OC\\Accounts\\AccountProperty' => $baseDir.'/lib/private/Accounts/AccountProperty.php',  | 
                                                        |
| 969 | + 'OC\\Accounts\\AccountPropertyCollection' => $baseDir.'/lib/private/Accounts/AccountPropertyCollection.php',  | 
                                                        |
| 970 | + 'OC\\Accounts\\Hooks' => $baseDir.'/lib/private/Accounts/Hooks.php',  | 
                                                        |
| 971 | + 'OC\\Accounts\\TAccountsHelper' => $baseDir.'/lib/private/Accounts/TAccountsHelper.php',  | 
                                                        |
| 972 | + 'OC\\Activity\\ActivitySettingsAdapter' => $baseDir.'/lib/private/Activity/ActivitySettingsAdapter.php',  | 
                                                        |
| 973 | + 'OC\\Activity\\Event' => $baseDir.'/lib/private/Activity/Event.php',  | 
                                                        |
| 974 | + 'OC\\Activity\\EventMerger' => $baseDir.'/lib/private/Activity/EventMerger.php',  | 
                                                        |
| 975 | + 'OC\\Activity\\Manager' => $baseDir.'/lib/private/Activity/Manager.php',  | 
                                                        |
| 976 | + 'OC\\AllConfig' => $baseDir.'/lib/private/AllConfig.php',  | 
                                                        |
| 977 | + 'OC\\AppConfig' => $baseDir.'/lib/private/AppConfig.php',  | 
                                                        |
| 978 | + 'OC\\AppFramework\\App' => $baseDir.'/lib/private/AppFramework/App.php',  | 
                                                        |
| 979 | + 'OC\\AppFramework\\Bootstrap\\ARegistration' => $baseDir.'/lib/private/AppFramework/Bootstrap/ARegistration.php',  | 
                                                        |
| 980 | + 'OC\\AppFramework\\Bootstrap\\BootContext' => $baseDir.'/lib/private/AppFramework/Bootstrap/BootContext.php',  | 
                                                        |
| 981 | + 'OC\\AppFramework\\Bootstrap\\Coordinator' => $baseDir.'/lib/private/AppFramework/Bootstrap/Coordinator.php',  | 
                                                        |
| 982 | + 'OC\\AppFramework\\Bootstrap\\EventListenerRegistration' => $baseDir.'/lib/private/AppFramework/Bootstrap/EventListenerRegistration.php',  | 
                                                        |
| 983 | + 'OC\\AppFramework\\Bootstrap\\FunctionInjector' => $baseDir.'/lib/private/AppFramework/Bootstrap/FunctionInjector.php',  | 
                                                        |
| 984 | + 'OC\\AppFramework\\Bootstrap\\MiddlewareRegistration' => $baseDir.'/lib/private/AppFramework/Bootstrap/MiddlewareRegistration.php',  | 
                                                        |
| 985 | + 'OC\\AppFramework\\Bootstrap\\ParameterRegistration' => $baseDir.'/lib/private/AppFramework/Bootstrap/ParameterRegistration.php',  | 
                                                        |
| 986 | + 'OC\\AppFramework\\Bootstrap\\PreviewProviderRegistration' => $baseDir.'/lib/private/AppFramework/Bootstrap/PreviewProviderRegistration.php',  | 
                                                        |
| 987 | + 'OC\\AppFramework\\Bootstrap\\RegistrationContext' => $baseDir.'/lib/private/AppFramework/Bootstrap/RegistrationContext.php',  | 
                                                        |
| 988 | + 'OC\\AppFramework\\Bootstrap\\ServiceAliasRegistration' => $baseDir.'/lib/private/AppFramework/Bootstrap/ServiceAliasRegistration.php',  | 
                                                        |
| 989 | + 'OC\\AppFramework\\Bootstrap\\ServiceFactoryRegistration' => $baseDir.'/lib/private/AppFramework/Bootstrap/ServiceFactoryRegistration.php',  | 
                                                        |
| 990 | + 'OC\\AppFramework\\Bootstrap\\ServiceRegistration' => $baseDir.'/lib/private/AppFramework/Bootstrap/ServiceRegistration.php',  | 
                                                        |
| 991 | + 'OC\\AppFramework\\DependencyInjection\\DIContainer' => $baseDir.'/lib/private/AppFramework/DependencyInjection/DIContainer.php',  | 
                                                        |
| 992 | + 'OC\\AppFramework\\Http' => $baseDir.'/lib/private/AppFramework/Http.php',  | 
                                                        |
| 993 | + 'OC\\AppFramework\\Http\\Dispatcher' => $baseDir.'/lib/private/AppFramework/Http/Dispatcher.php',  | 
                                                        |
| 994 | + 'OC\\AppFramework\\Http\\Output' => $baseDir.'/lib/private/AppFramework/Http/Output.php',  | 
                                                        |
| 995 | + 'OC\\AppFramework\\Http\\Request' => $baseDir.'/lib/private/AppFramework/Http/Request.php',  | 
                                                        |
| 996 | + 'OC\\AppFramework\\Http\\RequestId' => $baseDir.'/lib/private/AppFramework/Http/RequestId.php',  | 
                                                        |
| 997 | + 'OC\\AppFramework\\Middleware\\AdditionalScriptsMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/AdditionalScriptsMiddleware.php',  | 
                                                        |
| 998 | + 'OC\\AppFramework\\Middleware\\CompressionMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/CompressionMiddleware.php',  | 
                                                        |
| 999 | + 'OC\\AppFramework\\Middleware\\FlowV2EphemeralSessionsMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/FlowV2EphemeralSessionsMiddleware.php',  | 
                                                        |
| 1000 | + 'OC\\AppFramework\\Middleware\\MiddlewareDispatcher' => $baseDir.'/lib/private/AppFramework/Middleware/MiddlewareDispatcher.php',  | 
                                                        |
| 1001 | + 'OC\\AppFramework\\Middleware\\NotModifiedMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/NotModifiedMiddleware.php',  | 
                                                        |
| 1002 | + 'OC\\AppFramework\\Middleware\\OCSMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/OCSMiddleware.php',  | 
                                                        |
| 1003 | + 'OC\\AppFramework\\Middleware\\PublicShare\\Exceptions\\NeedAuthenticationException' => $baseDir.'/lib/private/AppFramework/Middleware/PublicShare/Exceptions/NeedAuthenticationException.php',  | 
                                                        |
| 1004 | + 'OC\\AppFramework\\Middleware\\PublicShare\\PublicShareMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/PublicShare/PublicShareMiddleware.php',  | 
                                                        |
| 1005 | + 'OC\\AppFramework\\Middleware\\Security\\BruteForceMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/Security/BruteForceMiddleware.php',  | 
                                                        |
| 1006 | + 'OC\\AppFramework\\Middleware\\Security\\CORSMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/Security/CORSMiddleware.php',  | 
                                                        |
| 1007 | + 'OC\\AppFramework\\Middleware\\Security\\CSPMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/Security/CSPMiddleware.php',  | 
                                                        |
| 1008 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\AdminIpNotAllowedException' => $baseDir.'/lib/private/AppFramework/Middleware/Security/Exceptions/AdminIpNotAllowedException.php',  | 
                                                        |
| 1009 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\AppNotEnabledException' => $baseDir.'/lib/private/AppFramework/Middleware/Security/Exceptions/AppNotEnabledException.php',  | 
                                                        |
| 1010 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\CrossSiteRequestForgeryException' => $baseDir.'/lib/private/AppFramework/Middleware/Security/Exceptions/CrossSiteRequestForgeryException.php',  | 
                                                        |
| 1011 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\ExAppRequiredException' => $baseDir.'/lib/private/AppFramework/Middleware/Security/Exceptions/ExAppRequiredException.php',  | 
                                                        |
| 1012 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\LaxSameSiteCookieFailedException' => $baseDir.'/lib/private/AppFramework/Middleware/Security/Exceptions/LaxSameSiteCookieFailedException.php',  | 
                                                        |
| 1013 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\NotAdminException' => $baseDir.'/lib/private/AppFramework/Middleware/Security/Exceptions/NotAdminException.php',  | 
                                                        |
| 1014 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\NotConfirmedException' => $baseDir.'/lib/private/AppFramework/Middleware/Security/Exceptions/NotConfirmedException.php',  | 
                                                        |
| 1015 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\NotLoggedInException' => $baseDir.'/lib/private/AppFramework/Middleware/Security/Exceptions/NotLoggedInException.php',  | 
                                                        |
| 1016 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\ReloadExecutionException' => $baseDir.'/lib/private/AppFramework/Middleware/Security/Exceptions/ReloadExecutionException.php',  | 
                                                        |
| 1017 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\SecurityException' => $baseDir.'/lib/private/AppFramework/Middleware/Security/Exceptions/SecurityException.php',  | 
                                                        |
| 1018 | + 'OC\\AppFramework\\Middleware\\Security\\Exceptions\\StrictCookieMissingException' => $baseDir.'/lib/private/AppFramework/Middleware/Security/Exceptions/StrictCookieMissingException.php',  | 
                                                        |
| 1019 | + 'OC\\AppFramework\\Middleware\\Security\\FeaturePolicyMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/Security/FeaturePolicyMiddleware.php',  | 
                                                        |
| 1020 | + 'OC\\AppFramework\\Middleware\\Security\\PasswordConfirmationMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/Security/PasswordConfirmationMiddleware.php',  | 
                                                        |
| 1021 | + 'OC\\AppFramework\\Middleware\\Security\\RateLimitingMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/Security/RateLimitingMiddleware.php',  | 
                                                        |
| 1022 | + 'OC\\AppFramework\\Middleware\\Security\\ReloadExecutionMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/Security/ReloadExecutionMiddleware.php',  | 
                                                        |
| 1023 | + 'OC\\AppFramework\\Middleware\\Security\\SameSiteCookieMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/Security/SameSiteCookieMiddleware.php',  | 
                                                        |
| 1024 | + 'OC\\AppFramework\\Middleware\\Security\\SecurityMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php',  | 
                                                        |
| 1025 | + 'OC\\AppFramework\\Middleware\\SessionMiddleware' => $baseDir.'/lib/private/AppFramework/Middleware/SessionMiddleware.php',  | 
                                                        |
| 1026 | + 'OC\\AppFramework\\OCS\\BaseResponse' => $baseDir.'/lib/private/AppFramework/OCS/BaseResponse.php',  | 
                                                        |
| 1027 | + 'OC\\AppFramework\\OCS\\V1Response' => $baseDir.'/lib/private/AppFramework/OCS/V1Response.php',  | 
                                                        |
| 1028 | + 'OC\\AppFramework\\OCS\\V2Response' => $baseDir.'/lib/private/AppFramework/OCS/V2Response.php',  | 
                                                        |
| 1029 | + 'OC\\AppFramework\\Routing\\RouteActionHandler' => $baseDir.'/lib/private/AppFramework/Routing/RouteActionHandler.php',  | 
                                                        |
| 1030 | + 'OC\\AppFramework\\Routing\\RouteConfig' => $baseDir.'/lib/private/AppFramework/Routing/RouteConfig.php',  | 
                                                        |
| 1031 | + 'OC\\AppFramework\\Routing\\RouteParser' => $baseDir.'/lib/private/AppFramework/Routing/RouteParser.php',  | 
                                                        |
| 1032 | + 'OC\\AppFramework\\ScopedPsrLogger' => $baseDir.'/lib/private/AppFramework/ScopedPsrLogger.php',  | 
                                                        |
| 1033 | + 'OC\\AppFramework\\Services\\AppConfig' => $baseDir.'/lib/private/AppFramework/Services/AppConfig.php',  | 
                                                        |
| 1034 | + 'OC\\AppFramework\\Services\\InitialState' => $baseDir.'/lib/private/AppFramework/Services/InitialState.php',  | 
                                                        |
| 1035 | + 'OC\\AppFramework\\Utility\\ControllerMethodReflector' => $baseDir.'/lib/private/AppFramework/Utility/ControllerMethodReflector.php',  | 
                                                        |
| 1036 | + 'OC\\AppFramework\\Utility\\QueryNotFoundException' => $baseDir.'/lib/private/AppFramework/Utility/QueryNotFoundException.php',  | 
                                                        |
| 1037 | + 'OC\\AppFramework\\Utility\\SimpleContainer' => $baseDir.'/lib/private/AppFramework/Utility/SimpleContainer.php',  | 
                                                        |
| 1038 | + 'OC\\AppFramework\\Utility\\TimeFactory' => $baseDir.'/lib/private/AppFramework/Utility/TimeFactory.php',  | 
                                                        |
| 1039 | + 'OC\\AppScriptDependency' => $baseDir.'/lib/private/AppScriptDependency.php',  | 
                                                        |
| 1040 | + 'OC\\AppScriptSort' => $baseDir.'/lib/private/AppScriptSort.php',  | 
                                                        |
| 1041 | + 'OC\\App\\AppManager' => $baseDir.'/lib/private/App/AppManager.php',  | 
                                                        |
| 1042 | + 'OC\\App\\AppStore\\Bundles\\Bundle' => $baseDir.'/lib/private/App/AppStore/Bundles/Bundle.php',  | 
                                                        |
| 1043 | + 'OC\\App\\AppStore\\Bundles\\BundleFetcher' => $baseDir.'/lib/private/App/AppStore/Bundles/BundleFetcher.php',  | 
                                                        |
| 1044 | + 'OC\\App\\AppStore\\Bundles\\EducationBundle' => $baseDir.'/lib/private/App/AppStore/Bundles/EducationBundle.php',  | 
                                                        |
| 1045 | + 'OC\\App\\AppStore\\Bundles\\EnterpriseBundle' => $baseDir.'/lib/private/App/AppStore/Bundles/EnterpriseBundle.php',  | 
                                                        |
| 1046 | + 'OC\\App\\AppStore\\Bundles\\GroupwareBundle' => $baseDir.'/lib/private/App/AppStore/Bundles/GroupwareBundle.php',  | 
                                                        |
| 1047 | + 'OC\\App\\AppStore\\Bundles\\HubBundle' => $baseDir.'/lib/private/App/AppStore/Bundles/HubBundle.php',  | 
                                                        |
| 1048 | + 'OC\\App\\AppStore\\Bundles\\PublicSectorBundle' => $baseDir.'/lib/private/App/AppStore/Bundles/PublicSectorBundle.php',  | 
                                                        |
| 1049 | + 'OC\\App\\AppStore\\Bundles\\SocialSharingBundle' => $baseDir.'/lib/private/App/AppStore/Bundles/SocialSharingBundle.php',  | 
                                                        |
| 1050 | + 'OC\\App\\AppStore\\Fetcher\\AppDiscoverFetcher' => $baseDir.'/lib/private/App/AppStore/Fetcher/AppDiscoverFetcher.php',  | 
                                                        |
| 1051 | + 'OC\\App\\AppStore\\Fetcher\\AppFetcher' => $baseDir.'/lib/private/App/AppStore/Fetcher/AppFetcher.php',  | 
                                                        |
| 1052 | + 'OC\\App\\AppStore\\Fetcher\\CategoryFetcher' => $baseDir.'/lib/private/App/AppStore/Fetcher/CategoryFetcher.php',  | 
                                                        |
| 1053 | + 'OC\\App\\AppStore\\Fetcher\\Fetcher' => $baseDir.'/lib/private/App/AppStore/Fetcher/Fetcher.php',  | 
                                                        |
| 1054 | + 'OC\\App\\AppStore\\Version\\Version' => $baseDir.'/lib/private/App/AppStore/Version/Version.php',  | 
                                                        |
| 1055 | + 'OC\\App\\AppStore\\Version\\VersionParser' => $baseDir.'/lib/private/App/AppStore/Version/VersionParser.php',  | 
                                                        |
| 1056 | + 'OC\\App\\CompareVersion' => $baseDir.'/lib/private/App/CompareVersion.php',  | 
                                                        |
| 1057 | + 'OC\\App\\DependencyAnalyzer' => $baseDir.'/lib/private/App/DependencyAnalyzer.php',  | 
                                                        |
| 1058 | + 'OC\\App\\InfoParser' => $baseDir.'/lib/private/App/InfoParser.php',  | 
                                                        |
| 1059 | + 'OC\\App\\Platform' => $baseDir.'/lib/private/App/Platform.php',  | 
                                                        |
| 1060 | + 'OC\\App\\PlatformRepository' => $baseDir.'/lib/private/App/PlatformRepository.php',  | 
                                                        |
| 1061 | + 'OC\\Archive\\Archive' => $baseDir.'/lib/private/Archive/Archive.php',  | 
                                                        |
| 1062 | + 'OC\\Archive\\TAR' => $baseDir.'/lib/private/Archive/TAR.php',  | 
                                                        |
| 1063 | + 'OC\\Archive\\ZIP' => $baseDir.'/lib/private/Archive/ZIP.php',  | 
                                                        |
| 1064 | + 'OC\\Authentication\\Events\\ARemoteWipeEvent' => $baseDir.'/lib/private/Authentication/Events/ARemoteWipeEvent.php',  | 
                                                        |
| 1065 | + 'OC\\Authentication\\Events\\AppPasswordCreatedEvent' => $baseDir.'/lib/private/Authentication/Events/AppPasswordCreatedEvent.php',  | 
                                                        |
| 1066 | + 'OC\\Authentication\\Events\\LoginFailed' => $baseDir.'/lib/private/Authentication/Events/LoginFailed.php',  | 
                                                        |
| 1067 | + 'OC\\Authentication\\Events\\RemoteWipeFinished' => $baseDir.'/lib/private/Authentication/Events/RemoteWipeFinished.php',  | 
                                                        |
| 1068 | + 'OC\\Authentication\\Events\\RemoteWipeStarted' => $baseDir.'/lib/private/Authentication/Events/RemoteWipeStarted.php',  | 
                                                        |
| 1069 | + 'OC\\Authentication\\Exceptions\\ExpiredTokenException' => $baseDir.'/lib/private/Authentication/Exceptions/ExpiredTokenException.php',  | 
                                                        |
| 1070 | + 'OC\\Authentication\\Exceptions\\InvalidProviderException' => $baseDir.'/lib/private/Authentication/Exceptions/InvalidProviderException.php',  | 
                                                        |
| 1071 | + 'OC\\Authentication\\Exceptions\\InvalidTokenException' => $baseDir.'/lib/private/Authentication/Exceptions/InvalidTokenException.php',  | 
                                                        |
| 1072 | + 'OC\\Authentication\\Exceptions\\LoginRequiredException' => $baseDir.'/lib/private/Authentication/Exceptions/LoginRequiredException.php',  | 
                                                        |
| 1073 | + 'OC\\Authentication\\Exceptions\\PasswordLoginForbiddenException' => $baseDir.'/lib/private/Authentication/Exceptions/PasswordLoginForbiddenException.php',  | 
                                                        |
| 1074 | + 'OC\\Authentication\\Exceptions\\PasswordlessTokenException' => $baseDir.'/lib/private/Authentication/Exceptions/PasswordlessTokenException.php',  | 
                                                        |
| 1075 | + 'OC\\Authentication\\Exceptions\\TokenPasswordExpiredException' => $baseDir.'/lib/private/Authentication/Exceptions/TokenPasswordExpiredException.php',  | 
                                                        |
| 1076 | + 'OC\\Authentication\\Exceptions\\TwoFactorAuthRequiredException' => $baseDir.'/lib/private/Authentication/Exceptions/TwoFactorAuthRequiredException.php',  | 
                                                        |
| 1077 | + 'OC\\Authentication\\Exceptions\\UserAlreadyLoggedInException' => $baseDir.'/lib/private/Authentication/Exceptions/UserAlreadyLoggedInException.php',  | 
                                                        |
| 1078 | + 'OC\\Authentication\\Exceptions\\WipeTokenException' => $baseDir.'/lib/private/Authentication/Exceptions/WipeTokenException.php',  | 
                                                        |
| 1079 | + 'OC\\Authentication\\Listeners\\LoginFailedListener' => $baseDir.'/lib/private/Authentication/Listeners/LoginFailedListener.php',  | 
                                                        |
| 1080 | + 'OC\\Authentication\\Listeners\\RemoteWipeActivityListener' => $baseDir.'/lib/private/Authentication/Listeners/RemoteWipeActivityListener.php',  | 
                                                        |
| 1081 | + 'OC\\Authentication\\Listeners\\RemoteWipeEmailListener' => $baseDir.'/lib/private/Authentication/Listeners/RemoteWipeEmailListener.php',  | 
                                                        |
| 1082 | + 'OC\\Authentication\\Listeners\\RemoteWipeNotificationsListener' => $baseDir.'/lib/private/Authentication/Listeners/RemoteWipeNotificationsListener.php',  | 
                                                        |
| 1083 | + 'OC\\Authentication\\Listeners\\UserDeletedFilesCleanupListener' => $baseDir.'/lib/private/Authentication/Listeners/UserDeletedFilesCleanupListener.php',  | 
                                                        |
| 1084 | + 'OC\\Authentication\\Listeners\\UserDeletedStoreCleanupListener' => $baseDir.'/lib/private/Authentication/Listeners/UserDeletedStoreCleanupListener.php',  | 
                                                        |
| 1085 | + 'OC\\Authentication\\Listeners\\UserDeletedTokenCleanupListener' => $baseDir.'/lib/private/Authentication/Listeners/UserDeletedTokenCleanupListener.php',  | 
                                                        |
| 1086 | + 'OC\\Authentication\\Listeners\\UserDeletedWebAuthnCleanupListener' => $baseDir.'/lib/private/Authentication/Listeners/UserDeletedWebAuthnCleanupListener.php',  | 
                                                        |
| 1087 | + 'OC\\Authentication\\Listeners\\UserLoggedInListener' => $baseDir.'/lib/private/Authentication/Listeners/UserLoggedInListener.php',  | 
                                                        |
| 1088 | + 'OC\\Authentication\\LoginCredentials\\Credentials' => $baseDir.'/lib/private/Authentication/LoginCredentials/Credentials.php',  | 
                                                        |
| 1089 | + 'OC\\Authentication\\LoginCredentials\\Store' => $baseDir.'/lib/private/Authentication/LoginCredentials/Store.php',  | 
                                                        |
| 1090 | + 'OC\\Authentication\\Login\\ALoginCommand' => $baseDir.'/lib/private/Authentication/Login/ALoginCommand.php',  | 
                                                        |
| 1091 | + 'OC\\Authentication\\Login\\Chain' => $baseDir.'/lib/private/Authentication/Login/Chain.php',  | 
                                                        |
| 1092 | + 'OC\\Authentication\\Login\\ClearLostPasswordTokensCommand' => $baseDir.'/lib/private/Authentication/Login/ClearLostPasswordTokensCommand.php',  | 
                                                        |
| 1093 | + 'OC\\Authentication\\Login\\CompleteLoginCommand' => $baseDir.'/lib/private/Authentication/Login/CompleteLoginCommand.php',  | 
                                                        |
| 1094 | + 'OC\\Authentication\\Login\\CreateSessionTokenCommand' => $baseDir.'/lib/private/Authentication/Login/CreateSessionTokenCommand.php',  | 
                                                        |
| 1095 | + 'OC\\Authentication\\Login\\FinishRememberedLoginCommand' => $baseDir.'/lib/private/Authentication/Login/FinishRememberedLoginCommand.php',  | 
                                                        |
| 1096 | + 'OC\\Authentication\\Login\\FlowV2EphemeralSessionsCommand' => $baseDir.'/lib/private/Authentication/Login/FlowV2EphemeralSessionsCommand.php',  | 
                                                        |
| 1097 | + 'OC\\Authentication\\Login\\LoggedInCheckCommand' => $baseDir.'/lib/private/Authentication/Login/LoggedInCheckCommand.php',  | 
                                                        |
| 1098 | + 'OC\\Authentication\\Login\\LoginData' => $baseDir.'/lib/private/Authentication/Login/LoginData.php',  | 
                                                        |
| 1099 | + 'OC\\Authentication\\Login\\LoginResult' => $baseDir.'/lib/private/Authentication/Login/LoginResult.php',  | 
                                                        |
| 1100 | + 'OC\\Authentication\\Login\\PreLoginHookCommand' => $baseDir.'/lib/private/Authentication/Login/PreLoginHookCommand.php',  | 
                                                        |
| 1101 | + 'OC\\Authentication\\Login\\SetUserTimezoneCommand' => $baseDir.'/lib/private/Authentication/Login/SetUserTimezoneCommand.php',  | 
                                                        |
| 1102 | + 'OC\\Authentication\\Login\\TwoFactorCommand' => $baseDir.'/lib/private/Authentication/Login/TwoFactorCommand.php',  | 
                                                        |
| 1103 | + 'OC\\Authentication\\Login\\UidLoginCommand' => $baseDir.'/lib/private/Authentication/Login/UidLoginCommand.php',  | 
                                                        |
| 1104 | + 'OC\\Authentication\\Login\\UpdateLastPasswordConfirmCommand' => $baseDir.'/lib/private/Authentication/Login/UpdateLastPasswordConfirmCommand.php',  | 
                                                        |
| 1105 | + 'OC\\Authentication\\Login\\UserDisabledCheckCommand' => $baseDir.'/lib/private/Authentication/Login/UserDisabledCheckCommand.php',  | 
                                                        |
| 1106 | + 'OC\\Authentication\\Login\\WebAuthnChain' => $baseDir.'/lib/private/Authentication/Login/WebAuthnChain.php',  | 
                                                        |
| 1107 | + 'OC\\Authentication\\Login\\WebAuthnLoginCommand' => $baseDir.'/lib/private/Authentication/Login/WebAuthnLoginCommand.php',  | 
                                                        |
| 1108 | + 'OC\\Authentication\\Notifications\\Notifier' => $baseDir.'/lib/private/Authentication/Notifications/Notifier.php',  | 
                                                        |
| 1109 | + 'OC\\Authentication\\Token\\INamedToken' => $baseDir.'/lib/private/Authentication/Token/INamedToken.php',  | 
                                                        |
| 1110 | + 'OC\\Authentication\\Token\\IProvider' => $baseDir.'/lib/private/Authentication/Token/IProvider.php',  | 
                                                        |
| 1111 | + 'OC\\Authentication\\Token\\IToken' => $baseDir.'/lib/private/Authentication/Token/IToken.php',  | 
                                                        |
| 1112 | + 'OC\\Authentication\\Token\\IWipeableToken' => $baseDir.'/lib/private/Authentication/Token/IWipeableToken.php',  | 
                                                        |
| 1113 | + 'OC\\Authentication\\Token\\Manager' => $baseDir.'/lib/private/Authentication/Token/Manager.php',  | 
                                                        |
| 1114 | + 'OC\\Authentication\\Token\\PublicKeyToken' => $baseDir.'/lib/private/Authentication/Token/PublicKeyToken.php',  | 
                                                        |
| 1115 | + 'OC\\Authentication\\Token\\PublicKeyTokenMapper' => $baseDir.'/lib/private/Authentication/Token/PublicKeyTokenMapper.php',  | 
                                                        |
| 1116 | + 'OC\\Authentication\\Token\\PublicKeyTokenProvider' => $baseDir.'/lib/private/Authentication/Token/PublicKeyTokenProvider.php',  | 
                                                        |
| 1117 | + 'OC\\Authentication\\Token\\RemoteWipe' => $baseDir.'/lib/private/Authentication/Token/RemoteWipe.php',  | 
                                                        |
| 1118 | + 'OC\\Authentication\\Token\\TokenCleanupJob' => $baseDir.'/lib/private/Authentication/Token/TokenCleanupJob.php',  | 
                                                        |
| 1119 | + 'OC\\Authentication\\TwoFactorAuth\\Db\\ProviderUserAssignmentDao' => $baseDir.'/lib/private/Authentication/TwoFactorAuth/Db/ProviderUserAssignmentDao.php',  | 
                                                        |
| 1120 | + 'OC\\Authentication\\TwoFactorAuth\\EnforcementState' => $baseDir.'/lib/private/Authentication/TwoFactorAuth/EnforcementState.php',  | 
                                                        |
| 1121 | + 'OC\\Authentication\\TwoFactorAuth\\Manager' => $baseDir.'/lib/private/Authentication/TwoFactorAuth/Manager.php',  | 
                                                        |
| 1122 | + 'OC\\Authentication\\TwoFactorAuth\\MandatoryTwoFactor' => $baseDir.'/lib/private/Authentication/TwoFactorAuth/MandatoryTwoFactor.php',  | 
                                                        |
| 1123 | + 'OC\\Authentication\\TwoFactorAuth\\ProviderLoader' => $baseDir.'/lib/private/Authentication/TwoFactorAuth/ProviderLoader.php',  | 
                                                        |
| 1124 | + 'OC\\Authentication\\TwoFactorAuth\\ProviderManager' => $baseDir.'/lib/private/Authentication/TwoFactorAuth/ProviderManager.php',  | 
                                                        |
| 1125 | + 'OC\\Authentication\\TwoFactorAuth\\ProviderSet' => $baseDir.'/lib/private/Authentication/TwoFactorAuth/ProviderSet.php',  | 
                                                        |
| 1126 | + 'OC\\Authentication\\TwoFactorAuth\\Registry' => $baseDir.'/lib/private/Authentication/TwoFactorAuth/Registry.php',  | 
                                                        |
| 1127 | + 'OC\\Authentication\\WebAuthn\\CredentialRepository' => $baseDir.'/lib/private/Authentication/WebAuthn/CredentialRepository.php',  | 
                                                        |
| 1128 | + 'OC\\Authentication\\WebAuthn\\Db\\PublicKeyCredentialEntity' => $baseDir.'/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialEntity.php',  | 
                                                        |
| 1129 | + 'OC\\Authentication\\WebAuthn\\Db\\PublicKeyCredentialMapper' => $baseDir.'/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php',  | 
                                                        |
| 1130 | + 'OC\\Authentication\\WebAuthn\\Manager' => $baseDir.'/lib/private/Authentication/WebAuthn/Manager.php',  | 
                                                        |
| 1131 | + 'OC\\Avatar\\Avatar' => $baseDir.'/lib/private/Avatar/Avatar.php',  | 
                                                        |
| 1132 | + 'OC\\Avatar\\AvatarManager' => $baseDir.'/lib/private/Avatar/AvatarManager.php',  | 
                                                        |
| 1133 | + 'OC\\Avatar\\GuestAvatar' => $baseDir.'/lib/private/Avatar/GuestAvatar.php',  | 
                                                        |
| 1134 | + 'OC\\Avatar\\PlaceholderAvatar' => $baseDir.'/lib/private/Avatar/PlaceholderAvatar.php',  | 
                                                        |
| 1135 | + 'OC\\Avatar\\UserAvatar' => $baseDir.'/lib/private/Avatar/UserAvatar.php',  | 
                                                        |
| 1136 | + 'OC\\BackgroundJob\\JobList' => $baseDir.'/lib/private/BackgroundJob/JobList.php',  | 
                                                        |
| 1137 | + 'OC\\BinaryFinder' => $baseDir.'/lib/private/BinaryFinder.php',  | 
                                                        |
| 1138 | + 'OC\\Blurhash\\Listener\\GenerateBlurhashMetadata' => $baseDir.'/lib/private/Blurhash/Listener/GenerateBlurhashMetadata.php',  | 
                                                        |
| 1139 | + 'OC\\Broadcast\\Events\\BroadcastEvent' => $baseDir.'/lib/private/Broadcast/Events/BroadcastEvent.php',  | 
                                                        |
| 1140 | + 'OC\\Cache\\CappedMemoryCache' => $baseDir.'/lib/private/Cache/CappedMemoryCache.php',  | 
                                                        |
| 1141 | + 'OC\\Cache\\File' => $baseDir.'/lib/private/Cache/File.php',  | 
                                                        |
| 1142 | + 'OC\\Calendar\\AvailabilityResult' => $baseDir.'/lib/private/Calendar/AvailabilityResult.php',  | 
                                                        |
| 1143 | + 'OC\\Calendar\\CalendarEventBuilder' => $baseDir.'/lib/private/Calendar/CalendarEventBuilder.php',  | 
                                                        |
| 1144 | + 'OC\\Calendar\\CalendarQuery' => $baseDir.'/lib/private/Calendar/CalendarQuery.php',  | 
                                                        |
| 1145 | + 'OC\\Calendar\\Manager' => $baseDir.'/lib/private/Calendar/Manager.php',  | 
                                                        |
| 1146 | + 'OC\\Calendar\\Resource\\Manager' => $baseDir.'/lib/private/Calendar/Resource/Manager.php',  | 
                                                        |
| 1147 | + 'OC\\Calendar\\ResourcesRoomsUpdater' => $baseDir.'/lib/private/Calendar/ResourcesRoomsUpdater.php',  | 
                                                        |
| 1148 | + 'OC\\Calendar\\Room\\Manager' => $baseDir.'/lib/private/Calendar/Room/Manager.php',  | 
                                                        |
| 1149 | + 'OC\\CapabilitiesManager' => $baseDir.'/lib/private/CapabilitiesManager.php',  | 
                                                        |
| 1150 | + 'OC\\Collaboration\\AutoComplete\\Manager' => $baseDir.'/lib/private/Collaboration/AutoComplete/Manager.php',  | 
                                                        |
| 1151 | + 'OC\\Collaboration\\Collaborators\\GroupPlugin' => $baseDir.'/lib/private/Collaboration/Collaborators/GroupPlugin.php',  | 
                                                        |
| 1152 | + 'OC\\Collaboration\\Collaborators\\LookupPlugin' => $baseDir.'/lib/private/Collaboration/Collaborators/LookupPlugin.php',  | 
                                                        |
| 1153 | + 'OC\\Collaboration\\Collaborators\\MailPlugin' => $baseDir.'/lib/private/Collaboration/Collaborators/MailPlugin.php',  | 
                                                        |
| 1154 | + 'OC\\Collaboration\\Collaborators\\RemoteGroupPlugin' => $baseDir.'/lib/private/Collaboration/Collaborators/RemoteGroupPlugin.php',  | 
                                                        |
| 1155 | + 'OC\\Collaboration\\Collaborators\\RemotePlugin' => $baseDir.'/lib/private/Collaboration/Collaborators/RemotePlugin.php',  | 
                                                        |
| 1156 | + 'OC\\Collaboration\\Collaborators\\Search' => $baseDir.'/lib/private/Collaboration/Collaborators/Search.php',  | 
                                                        |
| 1157 | + 'OC\\Collaboration\\Collaborators\\SearchResult' => $baseDir.'/lib/private/Collaboration/Collaborators/SearchResult.php',  | 
                                                        |
| 1158 | + 'OC\\Collaboration\\Collaborators\\UserPlugin' => $baseDir.'/lib/private/Collaboration/Collaborators/UserPlugin.php',  | 
                                                        |
| 1159 | + 'OC\\Collaboration\\Reference\\File\\FileReferenceEventListener' => $baseDir.'/lib/private/Collaboration/Reference/File/FileReferenceEventListener.php',  | 
                                                        |
| 1160 | + 'OC\\Collaboration\\Reference\\File\\FileReferenceProvider' => $baseDir.'/lib/private/Collaboration/Reference/File/FileReferenceProvider.php',  | 
                                                        |
| 1161 | + 'OC\\Collaboration\\Reference\\LinkReferenceProvider' => $baseDir.'/lib/private/Collaboration/Reference/LinkReferenceProvider.php',  | 
                                                        |
| 1162 | + 'OC\\Collaboration\\Reference\\ReferenceManager' => $baseDir.'/lib/private/Collaboration/Reference/ReferenceManager.php',  | 
                                                        |
| 1163 | + 'OC\\Collaboration\\Reference\\RenderReferenceEventListener' => $baseDir.'/lib/private/Collaboration/Reference/RenderReferenceEventListener.php',  | 
                                                        |
| 1164 | + 'OC\\Collaboration\\Resources\\Collection' => $baseDir.'/lib/private/Collaboration/Resources/Collection.php',  | 
                                                        |
| 1165 | + 'OC\\Collaboration\\Resources\\Listener' => $baseDir.'/lib/private/Collaboration/Resources/Listener.php',  | 
                                                        |
| 1166 | + 'OC\\Collaboration\\Resources\\Manager' => $baseDir.'/lib/private/Collaboration/Resources/Manager.php',  | 
                                                        |
| 1167 | + 'OC\\Collaboration\\Resources\\ProviderManager' => $baseDir.'/lib/private/Collaboration/Resources/ProviderManager.php',  | 
                                                        |
| 1168 | + 'OC\\Collaboration\\Resources\\Resource' => $baseDir.'/lib/private/Collaboration/Resources/Resource.php',  | 
                                                        |
| 1169 | + 'OC\\Color' => $baseDir.'/lib/private/Color.php',  | 
                                                        |
| 1170 | + 'OC\\Command\\AsyncBus' => $baseDir.'/lib/private/Command/AsyncBus.php',  | 
                                                        |
| 1171 | + 'OC\\Command\\CallableJob' => $baseDir.'/lib/private/Command/CallableJob.php',  | 
                                                        |
| 1172 | + 'OC\\Command\\ClosureJob' => $baseDir.'/lib/private/Command/ClosureJob.php',  | 
                                                        |
| 1173 | + 'OC\\Command\\CommandJob' => $baseDir.'/lib/private/Command/CommandJob.php',  | 
                                                        |
| 1174 | + 'OC\\Command\\CronBus' => $baseDir.'/lib/private/Command/CronBus.php',  | 
                                                        |
| 1175 | + 'OC\\Command\\FileAccess' => $baseDir.'/lib/private/Command/FileAccess.php',  | 
                                                        |
| 1176 | + 'OC\\Command\\QueueBus' => $baseDir.'/lib/private/Command/QueueBus.php',  | 
                                                        |
| 1177 | + 'OC\\Comments\\Comment' => $baseDir.'/lib/private/Comments/Comment.php',  | 
                                                        |
| 1178 | + 'OC\\Comments\\Manager' => $baseDir.'/lib/private/Comments/Manager.php',  | 
                                                        |
| 1179 | + 'OC\\Comments\\ManagerFactory' => $baseDir.'/lib/private/Comments/ManagerFactory.php',  | 
                                                        |
| 1180 | + 'OC\\Config' => $baseDir.'/lib/private/Config.php',  | 
                                                        |
| 1181 | + 'OC\\Config\\Lexicon\\CoreConfigLexicon' => $baseDir.'/lib/private/Config/Lexicon/CoreConfigLexicon.php',  | 
                                                        |
| 1182 | + 'OC\\Config\\UserConfig' => $baseDir.'/lib/private/Config/UserConfig.php',  | 
                                                        |
| 1183 | + 'OC\\Console\\Application' => $baseDir.'/lib/private/Console/Application.php',  | 
                                                        |
| 1184 | + 'OC\\Console\\TimestampFormatter' => $baseDir.'/lib/private/Console/TimestampFormatter.php',  | 
                                                        |
| 1185 | + 'OC\\ContactsManager' => $baseDir.'/lib/private/ContactsManager.php',  | 
                                                        |
| 1186 | + 'OC\\Contacts\\ContactsMenu\\ActionFactory' => $baseDir.'/lib/private/Contacts/ContactsMenu/ActionFactory.php',  | 
                                                        |
| 1187 | + 'OC\\Contacts\\ContactsMenu\\ActionProviderStore' => $baseDir.'/lib/private/Contacts/ContactsMenu/ActionProviderStore.php',  | 
                                                        |
| 1188 | + 'OC\\Contacts\\ContactsMenu\\Actions\\LinkAction' => $baseDir.'/lib/private/Contacts/ContactsMenu/Actions/LinkAction.php',  | 
                                                        |
| 1189 | + 'OC\\Contacts\\ContactsMenu\\ContactsStore' => $baseDir.'/lib/private/Contacts/ContactsMenu/ContactsStore.php',  | 
                                                        |
| 1190 | + 'OC\\Contacts\\ContactsMenu\\Entry' => $baseDir.'/lib/private/Contacts/ContactsMenu/Entry.php',  | 
                                                        |
| 1191 | + 'OC\\Contacts\\ContactsMenu\\Manager' => $baseDir.'/lib/private/Contacts/ContactsMenu/Manager.php',  | 
                                                        |
| 1192 | + 'OC\\Contacts\\ContactsMenu\\Providers\\EMailProvider' => $baseDir.'/lib/private/Contacts/ContactsMenu/Providers/EMailProvider.php',  | 
                                                        |
| 1193 | + 'OC\\Contacts\\ContactsMenu\\Providers\\LocalTimeProvider' => $baseDir.'/lib/private/Contacts/ContactsMenu/Providers/LocalTimeProvider.php',  | 
                                                        |
| 1194 | + 'OC\\Contacts\\ContactsMenu\\Providers\\ProfileProvider' => $baseDir.'/lib/private/Contacts/ContactsMenu/Providers/ProfileProvider.php',  | 
                                                        |
| 1195 | + 'OC\\Core\\Application' => $baseDir.'/core/Application.php',  | 
                                                        |
| 1196 | + 'OC\\Core\\BackgroundJobs\\BackgroundCleanupUpdaterBackupsJob' => $baseDir.'/core/BackgroundJobs/BackgroundCleanupUpdaterBackupsJob.php',  | 
                                                        |
| 1197 | + 'OC\\Core\\BackgroundJobs\\CheckForUserCertificates' => $baseDir.'/core/BackgroundJobs/CheckForUserCertificates.php',  | 
                                                        |
| 1198 | + 'OC\\Core\\BackgroundJobs\\CleanupLoginFlowV2' => $baseDir.'/core/BackgroundJobs/CleanupLoginFlowV2.php',  | 
                                                        |
| 1199 | + 'OC\\Core\\BackgroundJobs\\GenerateMetadataJob' => $baseDir.'/core/BackgroundJobs/GenerateMetadataJob.php',  | 
                                                        |
| 1200 | + 'OC\\Core\\BackgroundJobs\\LookupServerSendCheckBackgroundJob' => $baseDir.'/core/BackgroundJobs/LookupServerSendCheckBackgroundJob.php',  | 
                                                        |
| 1201 | + 'OC\\Core\\Command\\App\\Disable' => $baseDir.'/core/Command/App/Disable.php',  | 
                                                        |
| 1202 | + 'OC\\Core\\Command\\App\\Enable' => $baseDir.'/core/Command/App/Enable.php',  | 
                                                        |
| 1203 | + 'OC\\Core\\Command\\App\\GetPath' => $baseDir.'/core/Command/App/GetPath.php',  | 
                                                        |
| 1204 | + 'OC\\Core\\Command\\App\\Install' => $baseDir.'/core/Command/App/Install.php',  | 
                                                        |
| 1205 | + 'OC\\Core\\Command\\App\\ListApps' => $baseDir.'/core/Command/App/ListApps.php',  | 
                                                        |
| 1206 | + 'OC\\Core\\Command\\App\\Remove' => $baseDir.'/core/Command/App/Remove.php',  | 
                                                        |
| 1207 | + 'OC\\Core\\Command\\App\\Update' => $baseDir.'/core/Command/App/Update.php',  | 
                                                        |
| 1208 | + 'OC\\Core\\Command\\Background\\Delete' => $baseDir.'/core/Command/Background/Delete.php',  | 
                                                        |
| 1209 | + 'OC\\Core\\Command\\Background\\Job' => $baseDir.'/core/Command/Background/Job.php',  | 
                                                        |
| 1210 | + 'OC\\Core\\Command\\Background\\JobBase' => $baseDir.'/core/Command/Background/JobBase.php',  | 
                                                        |
| 1211 | + 'OC\\Core\\Command\\Background\\JobWorker' => $baseDir.'/core/Command/Background/JobWorker.php',  | 
                                                        |
| 1212 | + 'OC\\Core\\Command\\Background\\ListCommand' => $baseDir.'/core/Command/Background/ListCommand.php',  | 
                                                        |
| 1213 | + 'OC\\Core\\Command\\Background\\Mode' => $baseDir.'/core/Command/Background/Mode.php',  | 
                                                        |
| 1214 | + 'OC\\Core\\Command\\Base' => $baseDir.'/core/Command/Base.php',  | 
                                                        |
| 1215 | + 'OC\\Core\\Command\\Broadcast\\Test' => $baseDir.'/core/Command/Broadcast/Test.php',  | 
                                                        |
| 1216 | + 'OC\\Core\\Command\\Check' => $baseDir.'/core/Command/Check.php',  | 
                                                        |
| 1217 | + 'OC\\Core\\Command\\Config\\App\\Base' => $baseDir.'/core/Command/Config/App/Base.php',  | 
                                                        |
| 1218 | + 'OC\\Core\\Command\\Config\\App\\DeleteConfig' => $baseDir.'/core/Command/Config/App/DeleteConfig.php',  | 
                                                        |
| 1219 | + 'OC\\Core\\Command\\Config\\App\\GetConfig' => $baseDir.'/core/Command/Config/App/GetConfig.php',  | 
                                                        |
| 1220 | + 'OC\\Core\\Command\\Config\\App\\SetConfig' => $baseDir.'/core/Command/Config/App/SetConfig.php',  | 
                                                        |
| 1221 | + 'OC\\Core\\Command\\Config\\Import' => $baseDir.'/core/Command/Config/Import.php',  | 
                                                        |
| 1222 | + 'OC\\Core\\Command\\Config\\ListConfigs' => $baseDir.'/core/Command/Config/ListConfigs.php',  | 
                                                        |
| 1223 | + 'OC\\Core\\Command\\Config\\System\\Base' => $baseDir.'/core/Command/Config/System/Base.php',  | 
                                                        |
| 1224 | + 'OC\\Core\\Command\\Config\\System\\DeleteConfig' => $baseDir.'/core/Command/Config/System/DeleteConfig.php',  | 
                                                        |
| 1225 | + 'OC\\Core\\Command\\Config\\System\\GetConfig' => $baseDir.'/core/Command/Config/System/GetConfig.php',  | 
                                                        |
| 1226 | + 'OC\\Core\\Command\\Config\\System\\SetConfig' => $baseDir.'/core/Command/Config/System/SetConfig.php',  | 
                                                        |
| 1227 | + 'OC\\Core\\Command\\Db\\AddMissingColumns' => $baseDir.'/core/Command/Db/AddMissingColumns.php',  | 
                                                        |
| 1228 | + 'OC\\Core\\Command\\Db\\AddMissingIndices' => $baseDir.'/core/Command/Db/AddMissingIndices.php',  | 
                                                        |
| 1229 | + 'OC\\Core\\Command\\Db\\AddMissingPrimaryKeys' => $baseDir.'/core/Command/Db/AddMissingPrimaryKeys.php',  | 
                                                        |
| 1230 | + 'OC\\Core\\Command\\Db\\ConvertFilecacheBigInt' => $baseDir.'/core/Command/Db/ConvertFilecacheBigInt.php',  | 
                                                        |
| 1231 | + 'OC\\Core\\Command\\Db\\ConvertMysqlToMB4' => $baseDir.'/core/Command/Db/ConvertMysqlToMB4.php',  | 
                                                        |
| 1232 | + 'OC\\Core\\Command\\Db\\ConvertType' => $baseDir.'/core/Command/Db/ConvertType.php',  | 
                                                        |
| 1233 | + 'OC\\Core\\Command\\Db\\ExpectedSchema' => $baseDir.'/core/Command/Db/ExpectedSchema.php',  | 
                                                        |
| 1234 | + 'OC\\Core\\Command\\Db\\ExportSchema' => $baseDir.'/core/Command/Db/ExportSchema.php',  | 
                                                        |
| 1235 | + 'OC\\Core\\Command\\Db\\Migrations\\ExecuteCommand' => $baseDir.'/core/Command/Db/Migrations/ExecuteCommand.php',  | 
                                                        |
| 1236 | + 'OC\\Core\\Command\\Db\\Migrations\\GenerateCommand' => $baseDir.'/core/Command/Db/Migrations/GenerateCommand.php',  | 
                                                        |
| 1237 | + 'OC\\Core\\Command\\Db\\Migrations\\GenerateMetadataCommand' => $baseDir.'/core/Command/Db/Migrations/GenerateMetadataCommand.php',  | 
                                                        |
| 1238 | + 'OC\\Core\\Command\\Db\\Migrations\\MigrateCommand' => $baseDir.'/core/Command/Db/Migrations/MigrateCommand.php',  | 
                                                        |
| 1239 | + 'OC\\Core\\Command\\Db\\Migrations\\PreviewCommand' => $baseDir.'/core/Command/Db/Migrations/PreviewCommand.php',  | 
                                                        |
| 1240 | + 'OC\\Core\\Command\\Db\\Migrations\\StatusCommand' => $baseDir.'/core/Command/Db/Migrations/StatusCommand.php',  | 
                                                        |
| 1241 | + 'OC\\Core\\Command\\Db\\SchemaEncoder' => $baseDir.'/core/Command/Db/SchemaEncoder.php',  | 
                                                        |
| 1242 | + 'OC\\Core\\Command\\Encryption\\ChangeKeyStorageRoot' => $baseDir.'/core/Command/Encryption/ChangeKeyStorageRoot.php',  | 
                                                        |
| 1243 | + 'OC\\Core\\Command\\Encryption\\DecryptAll' => $baseDir.'/core/Command/Encryption/DecryptAll.php',  | 
                                                        |
| 1244 | + 'OC\\Core\\Command\\Encryption\\Disable' => $baseDir.'/core/Command/Encryption/Disable.php',  | 
                                                        |
| 1245 | + 'OC\\Core\\Command\\Encryption\\Enable' => $baseDir.'/core/Command/Encryption/Enable.php',  | 
                                                        |
| 1246 | + 'OC\\Core\\Command\\Encryption\\EncryptAll' => $baseDir.'/core/Command/Encryption/EncryptAll.php',  | 
                                                        |
| 1247 | + 'OC\\Core\\Command\\Encryption\\ListModules' => $baseDir.'/core/Command/Encryption/ListModules.php',  | 
                                                        |
| 1248 | + 'OC\\Core\\Command\\Encryption\\MigrateKeyStorage' => $baseDir.'/core/Command/Encryption/MigrateKeyStorage.php',  | 
                                                        |
| 1249 | + 'OC\\Core\\Command\\Encryption\\SetDefaultModule' => $baseDir.'/core/Command/Encryption/SetDefaultModule.php',  | 
                                                        |
| 1250 | + 'OC\\Core\\Command\\Encryption\\ShowKeyStorageRoot' => $baseDir.'/core/Command/Encryption/ShowKeyStorageRoot.php',  | 
                                                        |
| 1251 | + 'OC\\Core\\Command\\Encryption\\Status' => $baseDir.'/core/Command/Encryption/Status.php',  | 
                                                        |
| 1252 | + 'OC\\Core\\Command\\FilesMetadata\\Get' => $baseDir.'/core/Command/FilesMetadata/Get.php',  | 
                                                        |
| 1253 | + 'OC\\Core\\Command\\Group\\Add' => $baseDir.'/core/Command/Group/Add.php',  | 
                                                        |
| 1254 | + 'OC\\Core\\Command\\Group\\AddUser' => $baseDir.'/core/Command/Group/AddUser.php',  | 
                                                        |
| 1255 | + 'OC\\Core\\Command\\Group\\Delete' => $baseDir.'/core/Command/Group/Delete.php',  | 
                                                        |
| 1256 | + 'OC\\Core\\Command\\Group\\Info' => $baseDir.'/core/Command/Group/Info.php',  | 
                                                        |
| 1257 | + 'OC\\Core\\Command\\Group\\ListCommand' => $baseDir.'/core/Command/Group/ListCommand.php',  | 
                                                        |
| 1258 | + 'OC\\Core\\Command\\Group\\RemoveUser' => $baseDir.'/core/Command/Group/RemoveUser.php',  | 
                                                        |
| 1259 | + 'OC\\Core\\Command\\Info\\File' => $baseDir.'/core/Command/Info/File.php',  | 
                                                        |
| 1260 | + 'OC\\Core\\Command\\Info\\FileUtils' => $baseDir.'/core/Command/Info/FileUtils.php',  | 
                                                        |
| 1261 | + 'OC\\Core\\Command\\Info\\Space' => $baseDir.'/core/Command/Info/Space.php',  | 
                                                        |
| 1262 | + 'OC\\Core\\Command\\Integrity\\CheckApp' => $baseDir.'/core/Command/Integrity/CheckApp.php',  | 
                                                        |
| 1263 | + 'OC\\Core\\Command\\Integrity\\CheckCore' => $baseDir.'/core/Command/Integrity/CheckCore.php',  | 
                                                        |
| 1264 | + 'OC\\Core\\Command\\Integrity\\SignApp' => $baseDir.'/core/Command/Integrity/SignApp.php',  | 
                                                        |
| 1265 | + 'OC\\Core\\Command\\Integrity\\SignCore' => $baseDir.'/core/Command/Integrity/SignCore.php',  | 
                                                        |
| 1266 | + 'OC\\Core\\Command\\InterruptedException' => $baseDir.'/core/Command/InterruptedException.php',  | 
                                                        |
| 1267 | + 'OC\\Core\\Command\\L10n\\CreateJs' => $baseDir.'/core/Command/L10n/CreateJs.php',  | 
                                                        |
| 1268 | + 'OC\\Core\\Command\\Log\\File' => $baseDir.'/core/Command/Log/File.php',  | 
                                                        |
| 1269 | + 'OC\\Core\\Command\\Log\\Manage' => $baseDir.'/core/Command/Log/Manage.php',  | 
                                                        |
| 1270 | + 'OC\\Core\\Command\\Maintenance\\DataFingerprint' => $baseDir.'/core/Command/Maintenance/DataFingerprint.php',  | 
                                                        |
| 1271 | + 'OC\\Core\\Command\\Maintenance\\Install' => $baseDir.'/core/Command/Maintenance/Install.php',  | 
                                                        |
| 1272 | + 'OC\\Core\\Command\\Maintenance\\Mimetype\\GenerateMimetypeFileBuilder' => $baseDir.'/core/Command/Maintenance/Mimetype/GenerateMimetypeFileBuilder.php',  | 
                                                        |
| 1273 | + 'OC\\Core\\Command\\Maintenance\\Mimetype\\UpdateDB' => $baseDir.'/core/Command/Maintenance/Mimetype/UpdateDB.php',  | 
                                                        |
| 1274 | + 'OC\\Core\\Command\\Maintenance\\Mimetype\\UpdateJS' => $baseDir.'/core/Command/Maintenance/Mimetype/UpdateJS.php',  | 
                                                        |
| 1275 | + 'OC\\Core\\Command\\Maintenance\\Mode' => $baseDir.'/core/Command/Maintenance/Mode.php',  | 
                                                        |
| 1276 | + 'OC\\Core\\Command\\Maintenance\\Repair' => $baseDir.'/core/Command/Maintenance/Repair.php',  | 
                                                        |
| 1277 | + 'OC\\Core\\Command\\Maintenance\\RepairShareOwnership' => $baseDir.'/core/Command/Maintenance/RepairShareOwnership.php',  | 
                                                        |
| 1278 | + 'OC\\Core\\Command\\Maintenance\\UpdateHtaccess' => $baseDir.'/core/Command/Maintenance/UpdateHtaccess.php',  | 
                                                        |
| 1279 | + 'OC\\Core\\Command\\Maintenance\\UpdateTheme' => $baseDir.'/core/Command/Maintenance/UpdateTheme.php',  | 
                                                        |
| 1280 | + 'OC\\Core\\Command\\Memcache\\RedisCommand' => $baseDir.'/core/Command/Memcache/RedisCommand.php',  | 
                                                        |
| 1281 | + 'OC\\Core\\Command\\Preview\\Cleanup' => $baseDir.'/core/Command/Preview/Cleanup.php',  | 
                                                        |
| 1282 | + 'OC\\Core\\Command\\Preview\\Generate' => $baseDir.'/core/Command/Preview/Generate.php',  | 
                                                        |
| 1283 | + 'OC\\Core\\Command\\Preview\\Repair' => $baseDir.'/core/Command/Preview/Repair.php',  | 
                                                        |
| 1284 | + 'OC\\Core\\Command\\Preview\\ResetRenderedTexts' => $baseDir.'/core/Command/Preview/ResetRenderedTexts.php',  | 
                                                        |
| 1285 | + 'OC\\Core\\Command\\Security\\BruteforceAttempts' => $baseDir.'/core/Command/Security/BruteforceAttempts.php',  | 
                                                        |
| 1286 | + 'OC\\Core\\Command\\Security\\BruteforceResetAttempts' => $baseDir.'/core/Command/Security/BruteforceResetAttempts.php',  | 
                                                        |
| 1287 | + 'OC\\Core\\Command\\Security\\ExportCertificates' => $baseDir.'/core/Command/Security/ExportCertificates.php',  | 
                                                        |
| 1288 | + 'OC\\Core\\Command\\Security\\ImportCertificate' => $baseDir.'/core/Command/Security/ImportCertificate.php',  | 
                                                        |
| 1289 | + 'OC\\Core\\Command\\Security\\ListCertificates' => $baseDir.'/core/Command/Security/ListCertificates.php',  | 
                                                        |
| 1290 | + 'OC\\Core\\Command\\Security\\RemoveCertificate' => $baseDir.'/core/Command/Security/RemoveCertificate.php',  | 
                                                        |
| 1291 | + 'OC\\Core\\Command\\SetupChecks' => $baseDir.'/core/Command/SetupChecks.php',  | 
                                                        |
| 1292 | + 'OC\\Core\\Command\\Status' => $baseDir.'/core/Command/Status.php',  | 
                                                        |
| 1293 | + 'OC\\Core\\Command\\SystemTag\\Add' => $baseDir.'/core/Command/SystemTag/Add.php',  | 
                                                        |
| 1294 | + 'OC\\Core\\Command\\SystemTag\\Delete' => $baseDir.'/core/Command/SystemTag/Delete.php',  | 
                                                        |
| 1295 | + 'OC\\Core\\Command\\SystemTag\\Edit' => $baseDir.'/core/Command/SystemTag/Edit.php',  | 
                                                        |
| 1296 | + 'OC\\Core\\Command\\SystemTag\\ListCommand' => $baseDir.'/core/Command/SystemTag/ListCommand.php',  | 
                                                        |
| 1297 | + 'OC\\Core\\Command\\TaskProcessing\\EnabledCommand' => $baseDir.'/core/Command/TaskProcessing/EnabledCommand.php',  | 
                                                        |
| 1298 | + 'OC\\Core\\Command\\TaskProcessing\\GetCommand' => $baseDir.'/core/Command/TaskProcessing/GetCommand.php',  | 
                                                        |
| 1299 | + 'OC\\Core\\Command\\TaskProcessing\\ListCommand' => $baseDir.'/core/Command/TaskProcessing/ListCommand.php',  | 
                                                        |
| 1300 | + 'OC\\Core\\Command\\TaskProcessing\\Statistics' => $baseDir.'/core/Command/TaskProcessing/Statistics.php',  | 
                                                        |
| 1301 | + 'OC\\Core\\Command\\TwoFactorAuth\\Base' => $baseDir.'/core/Command/TwoFactorAuth/Base.php',  | 
                                                        |
| 1302 | + 'OC\\Core\\Command\\TwoFactorAuth\\Cleanup' => $baseDir.'/core/Command/TwoFactorAuth/Cleanup.php',  | 
                                                        |
| 1303 | + 'OC\\Core\\Command\\TwoFactorAuth\\Disable' => $baseDir.'/core/Command/TwoFactorAuth/Disable.php',  | 
                                                        |
| 1304 | + 'OC\\Core\\Command\\TwoFactorAuth\\Enable' => $baseDir.'/core/Command/TwoFactorAuth/Enable.php',  | 
                                                        |
| 1305 | + 'OC\\Core\\Command\\TwoFactorAuth\\Enforce' => $baseDir.'/core/Command/TwoFactorAuth/Enforce.php',  | 
                                                        |
| 1306 | + 'OC\\Core\\Command\\TwoFactorAuth\\State' => $baseDir.'/core/Command/TwoFactorAuth/State.php',  | 
                                                        |
| 1307 | + 'OC\\Core\\Command\\Upgrade' => $baseDir.'/core/Command/Upgrade.php',  | 
                                                        |
| 1308 | + 'OC\\Core\\Command\\User\\Add' => $baseDir.'/core/Command/User/Add.php',  | 
                                                        |
| 1309 | + 'OC\\Core\\Command\\User\\AuthTokens\\Add' => $baseDir.'/core/Command/User/AuthTokens/Add.php',  | 
                                                        |
| 1310 | + 'OC\\Core\\Command\\User\\AuthTokens\\Delete' => $baseDir.'/core/Command/User/AuthTokens/Delete.php',  | 
                                                        |
| 1311 | + 'OC\\Core\\Command\\User\\AuthTokens\\ListCommand' => $baseDir.'/core/Command/User/AuthTokens/ListCommand.php',  | 
                                                        |
| 1312 | + 'OC\\Core\\Command\\User\\ClearGeneratedAvatarCacheCommand' => $baseDir.'/core/Command/User/ClearGeneratedAvatarCacheCommand.php',  | 
                                                        |
| 1313 | + 'OC\\Core\\Command\\User\\Delete' => $baseDir.'/core/Command/User/Delete.php',  | 
                                                        |
| 1314 | + 'OC\\Core\\Command\\User\\Disable' => $baseDir.'/core/Command/User/Disable.php',  | 
                                                        |
| 1315 | + 'OC\\Core\\Command\\User\\Enable' => $baseDir.'/core/Command/User/Enable.php',  | 
                                                        |
| 1316 | + 'OC\\Core\\Command\\User\\Info' => $baseDir.'/core/Command/User/Info.php',  | 
                                                        |
| 1317 | + 'OC\\Core\\Command\\User\\Keys\\Verify' => $baseDir.'/core/Command/User/Keys/Verify.php',  | 
                                                        |
| 1318 | + 'OC\\Core\\Command\\User\\LastSeen' => $baseDir.'/core/Command/User/LastSeen.php',  | 
                                                        |
| 1319 | + 'OC\\Core\\Command\\User\\ListCommand' => $baseDir.'/core/Command/User/ListCommand.php',  | 
                                                        |
| 1320 | + 'OC\\Core\\Command\\User\\Report' => $baseDir.'/core/Command/User/Report.php',  | 
                                                        |
| 1321 | + 'OC\\Core\\Command\\User\\ResetPassword' => $baseDir.'/core/Command/User/ResetPassword.php',  | 
                                                        |
| 1322 | + 'OC\\Core\\Command\\User\\Setting' => $baseDir.'/core/Command/User/Setting.php',  | 
                                                        |
| 1323 | + 'OC\\Core\\Command\\User\\SyncAccountDataCommand' => $baseDir.'/core/Command/User/SyncAccountDataCommand.php',  | 
                                                        |
| 1324 | + 'OC\\Core\\Command\\User\\Welcome' => $baseDir.'/core/Command/User/Welcome.php',  | 
                                                        |
| 1325 | + 'OC\\Core\\Controller\\AppPasswordController' => $baseDir.'/core/Controller/AppPasswordController.php',  | 
                                                        |
| 1326 | + 'OC\\Core\\Controller\\AutoCompleteController' => $baseDir.'/core/Controller/AutoCompleteController.php',  | 
                                                        |
| 1327 | + 'OC\\Core\\Controller\\AvatarController' => $baseDir.'/core/Controller/AvatarController.php',  | 
                                                        |
| 1328 | + 'OC\\Core\\Controller\\CSRFTokenController' => $baseDir.'/core/Controller/CSRFTokenController.php',  | 
                                                        |
| 1329 | + 'OC\\Core\\Controller\\ClientFlowLoginController' => $baseDir.'/core/Controller/ClientFlowLoginController.php',  | 
                                                        |
| 1330 | + 'OC\\Core\\Controller\\ClientFlowLoginV2Controller' => $baseDir.'/core/Controller/ClientFlowLoginV2Controller.php',  | 
                                                        |
| 1331 | + 'OC\\Core\\Controller\\CollaborationResourcesController' => $baseDir.'/core/Controller/CollaborationResourcesController.php',  | 
                                                        |
| 1332 | + 'OC\\Core\\Controller\\ContactsMenuController' => $baseDir.'/core/Controller/ContactsMenuController.php',  | 
                                                        |
| 1333 | + 'OC\\Core\\Controller\\CssController' => $baseDir.'/core/Controller/CssController.php',  | 
                                                        |
| 1334 | + 'OC\\Core\\Controller\\ErrorController' => $baseDir.'/core/Controller/ErrorController.php',  | 
                                                        |
| 1335 | + 'OC\\Core\\Controller\\GuestAvatarController' => $baseDir.'/core/Controller/GuestAvatarController.php',  | 
                                                        |
| 1336 | + 'OC\\Core\\Controller\\HoverCardController' => $baseDir.'/core/Controller/HoverCardController.php',  | 
                                                        |
| 1337 | + 'OC\\Core\\Controller\\JsController' => $baseDir.'/core/Controller/JsController.php',  | 
                                                        |
| 1338 | + 'OC\\Core\\Controller\\LoginController' => $baseDir.'/core/Controller/LoginController.php',  | 
                                                        |
| 1339 | + 'OC\\Core\\Controller\\LostController' => $baseDir.'/core/Controller/LostController.php',  | 
                                                        |
| 1340 | + 'OC\\Core\\Controller\\NavigationController' => $baseDir.'/core/Controller/NavigationController.php',  | 
                                                        |
| 1341 | + 'OC\\Core\\Controller\\OCJSController' => $baseDir.'/core/Controller/OCJSController.php',  | 
                                                        |
| 1342 | + 'OC\\Core\\Controller\\OCMController' => $baseDir.'/core/Controller/OCMController.php',  | 
                                                        |
| 1343 | + 'OC\\Core\\Controller\\OCSController' => $baseDir.'/core/Controller/OCSController.php',  | 
                                                        |
| 1344 | + 'OC\\Core\\Controller\\PreviewController' => $baseDir.'/core/Controller/PreviewController.php',  | 
                                                        |
| 1345 | + 'OC\\Core\\Controller\\ProfileApiController' => $baseDir.'/core/Controller/ProfileApiController.php',  | 
                                                        |
| 1346 | + 'OC\\Core\\Controller\\RecommendedAppsController' => $baseDir.'/core/Controller/RecommendedAppsController.php',  | 
                                                        |
| 1347 | + 'OC\\Core\\Controller\\ReferenceApiController' => $baseDir.'/core/Controller/ReferenceApiController.php',  | 
                                                        |
| 1348 | + 'OC\\Core\\Controller\\ReferenceController' => $baseDir.'/core/Controller/ReferenceController.php',  | 
                                                        |
| 1349 | + 'OC\\Core\\Controller\\SetupController' => $baseDir.'/core/Controller/SetupController.php',  | 
                                                        |
| 1350 | + 'OC\\Core\\Controller\\TaskProcessingApiController' => $baseDir.'/core/Controller/TaskProcessingApiController.php',  | 
                                                        |
| 1351 | + 'OC\\Core\\Controller\\TeamsApiController' => $baseDir.'/core/Controller/TeamsApiController.php',  | 
                                                        |
| 1352 | + 'OC\\Core\\Controller\\TextProcessingApiController' => $baseDir.'/core/Controller/TextProcessingApiController.php',  | 
                                                        |
| 1353 | + 'OC\\Core\\Controller\\TextToImageApiController' => $baseDir.'/core/Controller/TextToImageApiController.php',  | 
                                                        |
| 1354 | + 'OC\\Core\\Controller\\TranslationApiController' => $baseDir.'/core/Controller/TranslationApiController.php',  | 
                                                        |
| 1355 | + 'OC\\Core\\Controller\\TwoFactorApiController' => $baseDir.'/core/Controller/TwoFactorApiController.php',  | 
                                                        |
| 1356 | + 'OC\\Core\\Controller\\TwoFactorChallengeController' => $baseDir.'/core/Controller/TwoFactorChallengeController.php',  | 
                                                        |
| 1357 | + 'OC\\Core\\Controller\\UnifiedSearchController' => $baseDir.'/core/Controller/UnifiedSearchController.php',  | 
                                                        |
| 1358 | + 'OC\\Core\\Controller\\UnsupportedBrowserController' => $baseDir.'/core/Controller/UnsupportedBrowserController.php',  | 
                                                        |
| 1359 | + 'OC\\Core\\Controller\\UserController' => $baseDir.'/core/Controller/UserController.php',  | 
                                                        |
| 1360 | + 'OC\\Core\\Controller\\WalledGardenController' => $baseDir.'/core/Controller/WalledGardenController.php',  | 
                                                        |
| 1361 | + 'OC\\Core\\Controller\\WebAuthnController' => $baseDir.'/core/Controller/WebAuthnController.php',  | 
                                                        |
| 1362 | + 'OC\\Core\\Controller\\WellKnownController' => $baseDir.'/core/Controller/WellKnownController.php',  | 
                                                        |
| 1363 | + 'OC\\Core\\Controller\\WhatsNewController' => $baseDir.'/core/Controller/WhatsNewController.php',  | 
                                                        |
| 1364 | + 'OC\\Core\\Controller\\WipeController' => $baseDir.'/core/Controller/WipeController.php',  | 
                                                        |
| 1365 | + 'OC\\Core\\Data\\LoginFlowV2Credentials' => $baseDir.'/core/Data/LoginFlowV2Credentials.php',  | 
                                                        |
| 1366 | + 'OC\\Core\\Data\\LoginFlowV2Tokens' => $baseDir.'/core/Data/LoginFlowV2Tokens.php',  | 
                                                        |
| 1367 | + 'OC\\Core\\Db\\LoginFlowV2' => $baseDir.'/core/Db/LoginFlowV2.php',  | 
                                                        |
| 1368 | + 'OC\\Core\\Db\\LoginFlowV2Mapper' => $baseDir.'/core/Db/LoginFlowV2Mapper.php',  | 
                                                        |
| 1369 | + 'OC\\Core\\Db\\ProfileConfig' => $baseDir.'/core/Db/ProfileConfig.php',  | 
                                                        |
| 1370 | + 'OC\\Core\\Db\\ProfileConfigMapper' => $baseDir.'/core/Db/ProfileConfigMapper.php',  | 
                                                        |
| 1371 | + 'OC\\Core\\Events\\BeforePasswordResetEvent' => $baseDir.'/core/Events/BeforePasswordResetEvent.php',  | 
                                                        |
| 1372 | + 'OC\\Core\\Events\\PasswordResetEvent' => $baseDir.'/core/Events/PasswordResetEvent.php',  | 
                                                        |
| 1373 | + 'OC\\Core\\Exception\\LoginFlowV2NotFoundException' => $baseDir.'/core/Exception/LoginFlowV2NotFoundException.php',  | 
                                                        |
| 1374 | + 'OC\\Core\\Exception\\ResetPasswordException' => $baseDir.'/core/Exception/ResetPasswordException.php',  | 
                                                        |
| 1375 | + 'OC\\Core\\Listener\\BeforeMessageLoggedEventListener' => $baseDir.'/core/Listener/BeforeMessageLoggedEventListener.php',  | 
                                                        |
| 1376 | + 'OC\\Core\\Listener\\BeforeTemplateRenderedListener' => $baseDir.'/core/Listener/BeforeTemplateRenderedListener.php',  | 
                                                        |
| 1377 | + 'OC\\Core\\Middleware\\TwoFactorMiddleware' => $baseDir.'/core/Middleware/TwoFactorMiddleware.php',  | 
                                                        |
| 1378 | + 'OC\\Core\\Migrations\\Version13000Date20170705121758' => $baseDir.'/core/Migrations/Version13000Date20170705121758.php',  | 
                                                        |
| 1379 | + 'OC\\Core\\Migrations\\Version13000Date20170718121200' => $baseDir.'/core/Migrations/Version13000Date20170718121200.php',  | 
                                                        |
| 1380 | + 'OC\\Core\\Migrations\\Version13000Date20170814074715' => $baseDir.'/core/Migrations/Version13000Date20170814074715.php',  | 
                                                        |
| 1381 | + 'OC\\Core\\Migrations\\Version13000Date20170919121250' => $baseDir.'/core/Migrations/Version13000Date20170919121250.php',  | 
                                                        |
| 1382 | + 'OC\\Core\\Migrations\\Version13000Date20170926101637' => $baseDir.'/core/Migrations/Version13000Date20170926101637.php',  | 
                                                        |
| 1383 | + 'OC\\Core\\Migrations\\Version14000Date20180129121024' => $baseDir.'/core/Migrations/Version14000Date20180129121024.php',  | 
                                                        |
| 1384 | + 'OC\\Core\\Migrations\\Version14000Date20180404140050' => $baseDir.'/core/Migrations/Version14000Date20180404140050.php',  | 
                                                        |
| 1385 | + 'OC\\Core\\Migrations\\Version14000Date20180516101403' => $baseDir.'/core/Migrations/Version14000Date20180516101403.php',  | 
                                                        |
| 1386 | + 'OC\\Core\\Migrations\\Version14000Date20180518120534' => $baseDir.'/core/Migrations/Version14000Date20180518120534.php',  | 
                                                        |
| 1387 | + 'OC\\Core\\Migrations\\Version14000Date20180522074438' => $baseDir.'/core/Migrations/Version14000Date20180522074438.php',  | 
                                                        |
| 1388 | + 'OC\\Core\\Migrations\\Version14000Date20180626223656' => $baseDir.'/core/Migrations/Version14000Date20180626223656.php',  | 
                                                        |
| 1389 | + 'OC\\Core\\Migrations\\Version14000Date20180710092004' => $baseDir.'/core/Migrations/Version14000Date20180710092004.php',  | 
                                                        |
| 1390 | + 'OC\\Core\\Migrations\\Version14000Date20180712153140' => $baseDir.'/core/Migrations/Version14000Date20180712153140.php',  | 
                                                        |
| 1391 | + 'OC\\Core\\Migrations\\Version15000Date20180926101451' => $baseDir.'/core/Migrations/Version15000Date20180926101451.php',  | 
                                                        |
| 1392 | + 'OC\\Core\\Migrations\\Version15000Date20181015062942' => $baseDir.'/core/Migrations/Version15000Date20181015062942.php',  | 
                                                        |
| 1393 | + 'OC\\Core\\Migrations\\Version15000Date20181029084625' => $baseDir.'/core/Migrations/Version15000Date20181029084625.php',  | 
                                                        |
| 1394 | + 'OC\\Core\\Migrations\\Version16000Date20190207141427' => $baseDir.'/core/Migrations/Version16000Date20190207141427.php',  | 
                                                        |
| 1395 | + 'OC\\Core\\Migrations\\Version16000Date20190212081545' => $baseDir.'/core/Migrations/Version16000Date20190212081545.php',  | 
                                                        |
| 1396 | + 'OC\\Core\\Migrations\\Version16000Date20190427105638' => $baseDir.'/core/Migrations/Version16000Date20190427105638.php',  | 
                                                        |
| 1397 | + 'OC\\Core\\Migrations\\Version16000Date20190428150708' => $baseDir.'/core/Migrations/Version16000Date20190428150708.php',  | 
                                                        |
| 1398 | + 'OC\\Core\\Migrations\\Version17000Date20190514105811' => $baseDir.'/core/Migrations/Version17000Date20190514105811.php',  | 
                                                        |
| 1399 | + 'OC\\Core\\Migrations\\Version18000Date20190920085628' => $baseDir.'/core/Migrations/Version18000Date20190920085628.php',  | 
                                                        |
| 1400 | + 'OC\\Core\\Migrations\\Version18000Date20191014105105' => $baseDir.'/core/Migrations/Version18000Date20191014105105.php',  | 
                                                        |
| 1401 | + 'OC\\Core\\Migrations\\Version18000Date20191204114856' => $baseDir.'/core/Migrations/Version18000Date20191204114856.php',  | 
                                                        |
| 1402 | + 'OC\\Core\\Migrations\\Version19000Date20200211083441' => $baseDir.'/core/Migrations/Version19000Date20200211083441.php',  | 
                                                        |
| 1403 | + 'OC\\Core\\Migrations\\Version20000Date20201109081915' => $baseDir.'/core/Migrations/Version20000Date20201109081915.php',  | 
                                                        |
| 1404 | + 'OC\\Core\\Migrations\\Version20000Date20201109081918' => $baseDir.'/core/Migrations/Version20000Date20201109081918.php',  | 
                                                        |
| 1405 | + 'OC\\Core\\Migrations\\Version20000Date20201109081919' => $baseDir.'/core/Migrations/Version20000Date20201109081919.php',  | 
                                                        |
| 1406 | + 'OC\\Core\\Migrations\\Version20000Date20201111081915' => $baseDir.'/core/Migrations/Version20000Date20201111081915.php',  | 
                                                        |
| 1407 | + 'OC\\Core\\Migrations\\Version21000Date20201120141228' => $baseDir.'/core/Migrations/Version21000Date20201120141228.php',  | 
                                                        |
| 1408 | + 'OC\\Core\\Migrations\\Version21000Date20201202095923' => $baseDir.'/core/Migrations/Version21000Date20201202095923.php',  | 
                                                        |
| 1409 | + 'OC\\Core\\Migrations\\Version21000Date20210119195004' => $baseDir.'/core/Migrations/Version21000Date20210119195004.php',  | 
                                                        |
| 1410 | + 'OC\\Core\\Migrations\\Version21000Date20210309185126' => $baseDir.'/core/Migrations/Version21000Date20210309185126.php',  | 
                                                        |
| 1411 | + 'OC\\Core\\Migrations\\Version21000Date20210309185127' => $baseDir.'/core/Migrations/Version21000Date20210309185127.php',  | 
                                                        |
| 1412 | + 'OC\\Core\\Migrations\\Version22000Date20210216080825' => $baseDir.'/core/Migrations/Version22000Date20210216080825.php',  | 
                                                        |
| 1413 | + 'OC\\Core\\Migrations\\Version23000Date20210721100600' => $baseDir.'/core/Migrations/Version23000Date20210721100600.php',  | 
                                                        |
| 1414 | + 'OC\\Core\\Migrations\\Version23000Date20210906132259' => $baseDir.'/core/Migrations/Version23000Date20210906132259.php',  | 
                                                        |
| 1415 | + 'OC\\Core\\Migrations\\Version23000Date20210930122352' => $baseDir.'/core/Migrations/Version23000Date20210930122352.php',  | 
                                                        |
| 1416 | + 'OC\\Core\\Migrations\\Version23000Date20211203110726' => $baseDir.'/core/Migrations/Version23000Date20211203110726.php',  | 
                                                        |
| 1417 | + 'OC\\Core\\Migrations\\Version23000Date20211213203940' => $baseDir.'/core/Migrations/Version23000Date20211213203940.php',  | 
                                                        |
| 1418 | + 'OC\\Core\\Migrations\\Version24000Date20211210141942' => $baseDir.'/core/Migrations/Version24000Date20211210141942.php',  | 
                                                        |
| 1419 | + 'OC\\Core\\Migrations\\Version24000Date20211213081506' => $baseDir.'/core/Migrations/Version24000Date20211213081506.php',  | 
                                                        |
| 1420 | + 'OC\\Core\\Migrations\\Version24000Date20211213081604' => $baseDir.'/core/Migrations/Version24000Date20211213081604.php',  | 
                                                        |
| 1421 | + 'OC\\Core\\Migrations\\Version24000Date20211222112246' => $baseDir.'/core/Migrations/Version24000Date20211222112246.php',  | 
                                                        |
| 1422 | + 'OC\\Core\\Migrations\\Version24000Date20211230140012' => $baseDir.'/core/Migrations/Version24000Date20211230140012.php',  | 
                                                        |
| 1423 | + 'OC\\Core\\Migrations\\Version24000Date20220131153041' => $baseDir.'/core/Migrations/Version24000Date20220131153041.php',  | 
                                                        |
| 1424 | + 'OC\\Core\\Migrations\\Version24000Date20220202150027' => $baseDir.'/core/Migrations/Version24000Date20220202150027.php',  | 
                                                        |
| 1425 | + 'OC\\Core\\Migrations\\Version24000Date20220404230027' => $baseDir.'/core/Migrations/Version24000Date20220404230027.php',  | 
                                                        |
| 1426 | + 'OC\\Core\\Migrations\\Version24000Date20220425072957' => $baseDir.'/core/Migrations/Version24000Date20220425072957.php',  | 
                                                        |
| 1427 | + 'OC\\Core\\Migrations\\Version25000Date20220515204012' => $baseDir.'/core/Migrations/Version25000Date20220515204012.php',  | 
                                                        |
| 1428 | + 'OC\\Core\\Migrations\\Version25000Date20220602190540' => $baseDir.'/core/Migrations/Version25000Date20220602190540.php',  | 
                                                        |
| 1429 | + 'OC\\Core\\Migrations\\Version25000Date20220905140840' => $baseDir.'/core/Migrations/Version25000Date20220905140840.php',  | 
                                                        |
| 1430 | + 'OC\\Core\\Migrations\\Version25000Date20221007010957' => $baseDir.'/core/Migrations/Version25000Date20221007010957.php',  | 
                                                        |
| 1431 | + 'OC\\Core\\Migrations\\Version27000Date20220613163520' => $baseDir.'/core/Migrations/Version27000Date20220613163520.php',  | 
                                                        |
| 1432 | + 'OC\\Core\\Migrations\\Version27000Date20230309104325' => $baseDir.'/core/Migrations/Version27000Date20230309104325.php',  | 
                                                        |
| 1433 | + 'OC\\Core\\Migrations\\Version27000Date20230309104802' => $baseDir.'/core/Migrations/Version27000Date20230309104802.php',  | 
                                                        |
| 1434 | + 'OC\\Core\\Migrations\\Version28000Date20230616104802' => $baseDir.'/core/Migrations/Version28000Date20230616104802.php',  | 
                                                        |
| 1435 | + 'OC\\Core\\Migrations\\Version28000Date20230728104802' => $baseDir.'/core/Migrations/Version28000Date20230728104802.php',  | 
                                                        |
| 1436 | + 'OC\\Core\\Migrations\\Version28000Date20230803221055' => $baseDir.'/core/Migrations/Version28000Date20230803221055.php',  | 
                                                        |
| 1437 | + 'OC\\Core\\Migrations\\Version28000Date20230906104802' => $baseDir.'/core/Migrations/Version28000Date20230906104802.php',  | 
                                                        |
| 1438 | + 'OC\\Core\\Migrations\\Version28000Date20231004103301' => $baseDir.'/core/Migrations/Version28000Date20231004103301.php',  | 
                                                        |
| 1439 | + 'OC\\Core\\Migrations\\Version28000Date20231103104802' => $baseDir.'/core/Migrations/Version28000Date20231103104802.php',  | 
                                                        |
| 1440 | + 'OC\\Core\\Migrations\\Version28000Date20231126110901' => $baseDir.'/core/Migrations/Version28000Date20231126110901.php',  | 
                                                        |
| 1441 | + 'OC\\Core\\Migrations\\Version28000Date20240828142927' => $baseDir.'/core/Migrations/Version28000Date20240828142927.php',  | 
                                                        |
| 1442 | + 'OC\\Core\\Migrations\\Version29000Date20231126110901' => $baseDir.'/core/Migrations/Version29000Date20231126110901.php',  | 
                                                        |
| 1443 | + 'OC\\Core\\Migrations\\Version29000Date20231213104850' => $baseDir.'/core/Migrations/Version29000Date20231213104850.php',  | 
                                                        |
| 1444 | + 'OC\\Core\\Migrations\\Version29000Date20240124132201' => $baseDir.'/core/Migrations/Version29000Date20240124132201.php',  | 
                                                        |
| 1445 | + 'OC\\Core\\Migrations\\Version29000Date20240124132202' => $baseDir.'/core/Migrations/Version29000Date20240124132202.php',  | 
                                                        |
| 1446 | + 'OC\\Core\\Migrations\\Version29000Date20240131122720' => $baseDir.'/core/Migrations/Version29000Date20240131122720.php',  | 
                                                        |
| 1447 | + 'OC\\Core\\Migrations\\Version30000Date20240429122720' => $baseDir.'/core/Migrations/Version30000Date20240429122720.php',  | 
                                                        |
| 1448 | + 'OC\\Core\\Migrations\\Version30000Date20240708160048' => $baseDir.'/core/Migrations/Version30000Date20240708160048.php',  | 
                                                        |
| 1449 | + 'OC\\Core\\Migrations\\Version30000Date20240717111406' => $baseDir.'/core/Migrations/Version30000Date20240717111406.php',  | 
                                                        |
| 1450 | + 'OC\\Core\\Migrations\\Version30000Date20240814180800' => $baseDir.'/core/Migrations/Version30000Date20240814180800.php',  | 
                                                        |
| 1451 | + 'OC\\Core\\Migrations\\Version30000Date20240815080800' => $baseDir.'/core/Migrations/Version30000Date20240815080800.php',  | 
                                                        |
| 1452 | + 'OC\\Core\\Migrations\\Version30000Date20240906095113' => $baseDir.'/core/Migrations/Version30000Date20240906095113.php',  | 
                                                        |
| 1453 | + 'OC\\Core\\Migrations\\Version31000Date20240101084401' => $baseDir.'/core/Migrations/Version31000Date20240101084401.php',  | 
                                                        |
| 1454 | + 'OC\\Core\\Migrations\\Version31000Date20240814184402' => $baseDir.'/core/Migrations/Version31000Date20240814184402.php',  | 
                                                        |
| 1455 | + 'OC\\Core\\Migrations\\Version31000Date20250213102442' => $baseDir.'/core/Migrations/Version31000Date20250213102442.php',  | 
                                                        |
| 1456 | + 'OC\\Core\\Migrations\\Version32000Date20250402182800' => $baseDir.'/core/Migrations/Version32000Date20250402182800.php',  | 
                                                        |
| 1457 | + 'OC\\Core\\Notification\\CoreNotifier' => $baseDir.'/core/Notification/CoreNotifier.php',  | 
                                                        |
| 1458 | + 'OC\\Core\\ResponseDefinitions' => $baseDir.'/core/ResponseDefinitions.php',  | 
                                                        |
| 1459 | + 'OC\\Core\\Service\\LoginFlowV2Service' => $baseDir.'/core/Service/LoginFlowV2Service.php',  | 
                                                        |
| 1460 | + 'OC\\DB\\Adapter' => $baseDir.'/lib/private/DB/Adapter.php',  | 
                                                        |
| 1461 | + 'OC\\DB\\AdapterMySQL' => $baseDir.'/lib/private/DB/AdapterMySQL.php',  | 
                                                        |
| 1462 | + 'OC\\DB\\AdapterOCI8' => $baseDir.'/lib/private/DB/AdapterOCI8.php',  | 
                                                        |
| 1463 | + 'OC\\DB\\AdapterPgSql' => $baseDir.'/lib/private/DB/AdapterPgSql.php',  | 
                                                        |
| 1464 | + 'OC\\DB\\AdapterSqlite' => $baseDir.'/lib/private/DB/AdapterSqlite.php',  | 
                                                        |
| 1465 | + 'OC\\DB\\ArrayResult' => $baseDir.'/lib/private/DB/ArrayResult.php',  | 
                                                        |
| 1466 | + 'OC\\DB\\BacktraceDebugStack' => $baseDir.'/lib/private/DB/BacktraceDebugStack.php',  | 
                                                        |
| 1467 | + 'OC\\DB\\Connection' => $baseDir.'/lib/private/DB/Connection.php',  | 
                                                        |
| 1468 | + 'OC\\DB\\ConnectionAdapter' => $baseDir.'/lib/private/DB/ConnectionAdapter.php',  | 
                                                        |
| 1469 | + 'OC\\DB\\ConnectionFactory' => $baseDir.'/lib/private/DB/ConnectionFactory.php',  | 
                                                        |
| 1470 | + 'OC\\DB\\DbDataCollector' => $baseDir.'/lib/private/DB/DbDataCollector.php',  | 
                                                        |
| 1471 | + 'OC\\DB\\Exceptions\\DbalException' => $baseDir.'/lib/private/DB/Exceptions/DbalException.php',  | 
                                                        |
| 1472 | + 'OC\\DB\\MigrationException' => $baseDir.'/lib/private/DB/MigrationException.php',  | 
                                                        |
| 1473 | + 'OC\\DB\\MigrationService' => $baseDir.'/lib/private/DB/MigrationService.php',  | 
                                                        |
| 1474 | + 'OC\\DB\\Migrator' => $baseDir.'/lib/private/DB/Migrator.php',  | 
                                                        |
| 1475 | + 'OC\\DB\\MigratorExecuteSqlEvent' => $baseDir.'/lib/private/DB/MigratorExecuteSqlEvent.php',  | 
                                                        |
| 1476 | + 'OC\\DB\\MissingColumnInformation' => $baseDir.'/lib/private/DB/MissingColumnInformation.php',  | 
                                                        |
| 1477 | + 'OC\\DB\\MissingIndexInformation' => $baseDir.'/lib/private/DB/MissingIndexInformation.php',  | 
                                                        |
| 1478 | + 'OC\\DB\\MissingPrimaryKeyInformation' => $baseDir.'/lib/private/DB/MissingPrimaryKeyInformation.php',  | 
                                                        |
| 1479 | + 'OC\\DB\\MySqlTools' => $baseDir.'/lib/private/DB/MySqlTools.php',  | 
                                                        |
| 1480 | + 'OC\\DB\\OCSqlitePlatform' => $baseDir.'/lib/private/DB/OCSqlitePlatform.php',  | 
                                                        |
| 1481 | + 'OC\\DB\\ObjectParameter' => $baseDir.'/lib/private/DB/ObjectParameter.php',  | 
                                                        |
| 1482 | + 'OC\\DB\\OracleConnection' => $baseDir.'/lib/private/DB/OracleConnection.php',  | 
                                                        |
| 1483 | + 'OC\\DB\\OracleMigrator' => $baseDir.'/lib/private/DB/OracleMigrator.php',  | 
                                                        |
| 1484 | + 'OC\\DB\\PgSqlTools' => $baseDir.'/lib/private/DB/PgSqlTools.php',  | 
                                                        |
| 1485 | + 'OC\\DB\\PreparedStatement' => $baseDir.'/lib/private/DB/PreparedStatement.php',  | 
                                                        |
| 1486 | + 'OC\\DB\\QueryBuilder\\CompositeExpression' => $baseDir.'/lib/private/DB/QueryBuilder/CompositeExpression.php',  | 
                                                        |
| 1487 | + 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\ExpressionBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/ExpressionBuilder/ExpressionBuilder.php',  | 
                                                        |
| 1488 | + 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\MySqlExpressionBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/ExpressionBuilder/MySqlExpressionBuilder.php',  | 
                                                        |
| 1489 | + 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\OCIExpressionBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/ExpressionBuilder/OCIExpressionBuilder.php',  | 
                                                        |
| 1490 | + 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\PgSqlExpressionBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/ExpressionBuilder/PgSqlExpressionBuilder.php',  | 
                                                        |
| 1491 | + 'OC\\DB\\QueryBuilder\\ExpressionBuilder\\SqliteExpressionBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/ExpressionBuilder/SqliteExpressionBuilder.php',  | 
                                                        |
| 1492 | + 'OC\\DB\\QueryBuilder\\ExtendedQueryBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/ExtendedQueryBuilder.php',  | 
                                                        |
| 1493 | + 'OC\\DB\\QueryBuilder\\FunctionBuilder\\FunctionBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/FunctionBuilder/FunctionBuilder.php',  | 
                                                        |
| 1494 | + 'OC\\DB\\QueryBuilder\\FunctionBuilder\\OCIFunctionBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/FunctionBuilder/OCIFunctionBuilder.php',  | 
                                                        |
| 1495 | + 'OC\\DB\\QueryBuilder\\FunctionBuilder\\PgSqlFunctionBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/FunctionBuilder/PgSqlFunctionBuilder.php',  | 
                                                        |
| 1496 | + 'OC\\DB\\QueryBuilder\\FunctionBuilder\\SqliteFunctionBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/FunctionBuilder/SqliteFunctionBuilder.php',  | 
                                                        |
| 1497 | + 'OC\\DB\\QueryBuilder\\Literal' => $baseDir.'/lib/private/DB/QueryBuilder/Literal.php',  | 
                                                        |
| 1498 | + 'OC\\DB\\QueryBuilder\\Parameter' => $baseDir.'/lib/private/DB/QueryBuilder/Parameter.php',  | 
                                                        |
| 1499 | + 'OC\\DB\\QueryBuilder\\Partitioned\\InvalidPartitionedQueryException' => $baseDir.'/lib/private/DB/QueryBuilder/Partitioned/InvalidPartitionedQueryException.php',  | 
                                                        |
| 1500 | + 'OC\\DB\\QueryBuilder\\Partitioned\\JoinCondition' => $baseDir.'/lib/private/DB/QueryBuilder/Partitioned/JoinCondition.php',  | 
                                                        |
| 1501 | + 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionQuery' => $baseDir.'/lib/private/DB/QueryBuilder/Partitioned/PartitionQuery.php',  | 
                                                        |
| 1502 | + 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionSplit' => $baseDir.'/lib/private/DB/QueryBuilder/Partitioned/PartitionSplit.php',  | 
                                                        |
| 1503 | + 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionedQueryBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/Partitioned/PartitionedQueryBuilder.php',  | 
                                                        |
| 1504 | + 'OC\\DB\\QueryBuilder\\Partitioned\\PartitionedResult' => $baseDir.'/lib/private/DB/QueryBuilder/Partitioned/PartitionedResult.php',  | 
                                                        |
| 1505 | + 'OC\\DB\\QueryBuilder\\QueryBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/QueryBuilder.php',  | 
                                                        |
| 1506 | + 'OC\\DB\\QueryBuilder\\QueryFunction' => $baseDir.'/lib/private/DB/QueryBuilder/QueryFunction.php',  | 
                                                        |
| 1507 | + 'OC\\DB\\QueryBuilder\\QuoteHelper' => $baseDir.'/lib/private/DB/QueryBuilder/QuoteHelper.php',  | 
                                                        |
| 1508 | + 'OC\\DB\\QueryBuilder\\Sharded\\AutoIncrementHandler' => $baseDir.'/lib/private/DB/QueryBuilder/Sharded/AutoIncrementHandler.php',  | 
                                                        |
| 1509 | + 'OC\\DB\\QueryBuilder\\Sharded\\CrossShardMoveHelper' => $baseDir.'/lib/private/DB/QueryBuilder/Sharded/CrossShardMoveHelper.php',  | 
                                                        |
| 1510 | + 'OC\\DB\\QueryBuilder\\Sharded\\HashShardMapper' => $baseDir.'/lib/private/DB/QueryBuilder/Sharded/HashShardMapper.php',  | 
                                                        |
| 1511 | + 'OC\\DB\\QueryBuilder\\Sharded\\InvalidShardedQueryException' => $baseDir.'/lib/private/DB/QueryBuilder/Sharded/InvalidShardedQueryException.php',  | 
                                                        |
| 1512 | + 'OC\\DB\\QueryBuilder\\Sharded\\RoundRobinShardMapper' => $baseDir.'/lib/private/DB/QueryBuilder/Sharded/RoundRobinShardMapper.php',  | 
                                                        |
| 1513 | + 'OC\\DB\\QueryBuilder\\Sharded\\ShardConnectionManager' => $baseDir.'/lib/private/DB/QueryBuilder/Sharded/ShardConnectionManager.php',  | 
                                                        |
| 1514 | + 'OC\\DB\\QueryBuilder\\Sharded\\ShardDefinition' => $baseDir.'/lib/private/DB/QueryBuilder/Sharded/ShardDefinition.php',  | 
                                                        |
| 1515 | + 'OC\\DB\\QueryBuilder\\Sharded\\ShardQueryRunner' => $baseDir.'/lib/private/DB/QueryBuilder/Sharded/ShardQueryRunner.php',  | 
                                                        |
| 1516 | + 'OC\\DB\\QueryBuilder\\Sharded\\ShardedQueryBuilder' => $baseDir.'/lib/private/DB/QueryBuilder/Sharded/ShardedQueryBuilder.php',  | 
                                                        |
| 1517 | + 'OC\\DB\\ResultAdapter' => $baseDir.'/lib/private/DB/ResultAdapter.php',  | 
                                                        |
| 1518 | + 'OC\\DB\\SQLiteMigrator' => $baseDir.'/lib/private/DB/SQLiteMigrator.php',  | 
                                                        |
| 1519 | + 'OC\\DB\\SQLiteSessionInit' => $baseDir.'/lib/private/DB/SQLiteSessionInit.php',  | 
                                                        |
| 1520 | + 'OC\\DB\\SchemaWrapper' => $baseDir.'/lib/private/DB/SchemaWrapper.php',  | 
                                                        |
| 1521 | + 'OC\\DB\\SetTransactionIsolationLevel' => $baseDir.'/lib/private/DB/SetTransactionIsolationLevel.php',  | 
                                                        |
| 1522 | + 'OC\\Dashboard\\Manager' => $baseDir.'/lib/private/Dashboard/Manager.php',  | 
                                                        |
| 1523 | + 'OC\\DatabaseException' => $baseDir.'/lib/private/DatabaseException.php',  | 
                                                        |
| 1524 | + 'OC\\DatabaseSetupException' => $baseDir.'/lib/private/DatabaseSetupException.php',  | 
                                                        |
| 1525 | + 'OC\\DateTimeFormatter' => $baseDir.'/lib/private/DateTimeFormatter.php',  | 
                                                        |
| 1526 | + 'OC\\DateTimeZone' => $baseDir.'/lib/private/DateTimeZone.php',  | 
                                                        |
| 1527 | + 'OC\\Diagnostics\\Event' => $baseDir.'/lib/private/Diagnostics/Event.php',  | 
                                                        |
| 1528 | + 'OC\\Diagnostics\\EventLogger' => $baseDir.'/lib/private/Diagnostics/EventLogger.php',  | 
                                                        |
| 1529 | + 'OC\\Diagnostics\\Query' => $baseDir.'/lib/private/Diagnostics/Query.php',  | 
                                                        |
| 1530 | + 'OC\\Diagnostics\\QueryLogger' => $baseDir.'/lib/private/Diagnostics/QueryLogger.php',  | 
                                                        |
| 1531 | + 'OC\\DirectEditing\\Manager' => $baseDir.'/lib/private/DirectEditing/Manager.php',  | 
                                                        |
| 1532 | + 'OC\\DirectEditing\\Token' => $baseDir.'/lib/private/DirectEditing/Token.php',  | 
                                                        |
| 1533 | + 'OC\\EmojiHelper' => $baseDir.'/lib/private/EmojiHelper.php',  | 
                                                        |
| 1534 | + 'OC\\Encryption\\DecryptAll' => $baseDir.'/lib/private/Encryption/DecryptAll.php',  | 
                                                        |
| 1535 | + 'OC\\Encryption\\EncryptionWrapper' => $baseDir.'/lib/private/Encryption/EncryptionWrapper.php',  | 
                                                        |
| 1536 | + 'OC\\Encryption\\Exceptions\\DecryptionFailedException' => $baseDir.'/lib/private/Encryption/Exceptions/DecryptionFailedException.php',  | 
                                                        |
| 1537 | + 'OC\\Encryption\\Exceptions\\EmptyEncryptionDataException' => $baseDir.'/lib/private/Encryption/Exceptions/EmptyEncryptionDataException.php',  | 
                                                        |
| 1538 | + 'OC\\Encryption\\Exceptions\\EncryptionFailedException' => $baseDir.'/lib/private/Encryption/Exceptions/EncryptionFailedException.php',  | 
                                                        |
| 1539 | + 'OC\\Encryption\\Exceptions\\EncryptionHeaderKeyExistsException' => $baseDir.'/lib/private/Encryption/Exceptions/EncryptionHeaderKeyExistsException.php',  | 
                                                        |
| 1540 | + 'OC\\Encryption\\Exceptions\\EncryptionHeaderToLargeException' => $baseDir.'/lib/private/Encryption/Exceptions/EncryptionHeaderToLargeException.php',  | 
                                                        |
| 1541 | + 'OC\\Encryption\\Exceptions\\ModuleAlreadyExistsException' => $baseDir.'/lib/private/Encryption/Exceptions/ModuleAlreadyExistsException.php',  | 
                                                        |
| 1542 | + 'OC\\Encryption\\Exceptions\\ModuleDoesNotExistsException' => $baseDir.'/lib/private/Encryption/Exceptions/ModuleDoesNotExistsException.php',  | 
                                                        |
| 1543 | + 'OC\\Encryption\\Exceptions\\UnknownCipherException' => $baseDir.'/lib/private/Encryption/Exceptions/UnknownCipherException.php',  | 
                                                        |
| 1544 | + 'OC\\Encryption\\File' => $baseDir.'/lib/private/Encryption/File.php',  | 
                                                        |
| 1545 | + 'OC\\Encryption\\HookManager' => $baseDir.'/lib/private/Encryption/HookManager.php',  | 
                                                        |
| 1546 | + 'OC\\Encryption\\Keys\\Storage' => $baseDir.'/lib/private/Encryption/Keys/Storage.php',  | 
                                                        |
| 1547 | + 'OC\\Encryption\\Manager' => $baseDir.'/lib/private/Encryption/Manager.php',  | 
                                                        |
| 1548 | + 'OC\\Encryption\\Update' => $baseDir.'/lib/private/Encryption/Update.php',  | 
                                                        |
| 1549 | + 'OC\\Encryption\\Util' => $baseDir.'/lib/private/Encryption/Util.php',  | 
                                                        |
| 1550 | + 'OC\\EventDispatcher\\EventDispatcher' => $baseDir.'/lib/private/EventDispatcher/EventDispatcher.php',  | 
                                                        |
| 1551 | + 'OC\\EventDispatcher\\ServiceEventListener' => $baseDir.'/lib/private/EventDispatcher/ServiceEventListener.php',  | 
                                                        |
| 1552 | + 'OC\\EventSource' => $baseDir.'/lib/private/EventSource.php',  | 
                                                        |
| 1553 | + 'OC\\EventSourceFactory' => $baseDir.'/lib/private/EventSourceFactory.php',  | 
                                                        |
| 1554 | + 'OC\\Federation\\CloudFederationFactory' => $baseDir.'/lib/private/Federation/CloudFederationFactory.php',  | 
                                                        |
| 1555 | + 'OC\\Federation\\CloudFederationNotification' => $baseDir.'/lib/private/Federation/CloudFederationNotification.php',  | 
                                                        |
| 1556 | + 'OC\\Federation\\CloudFederationProviderManager' => $baseDir.'/lib/private/Federation/CloudFederationProviderManager.php',  | 
                                                        |
| 1557 | + 'OC\\Federation\\CloudFederationShare' => $baseDir.'/lib/private/Federation/CloudFederationShare.php',  | 
                                                        |
| 1558 | + 'OC\\Federation\\CloudId' => $baseDir.'/lib/private/Federation/CloudId.php',  | 
                                                        |
| 1559 | + 'OC\\Federation\\CloudIdManager' => $baseDir.'/lib/private/Federation/CloudIdManager.php',  | 
                                                        |
| 1560 | + 'OC\\FilesMetadata\\FilesMetadataManager' => $baseDir.'/lib/private/FilesMetadata/FilesMetadataManager.php',  | 
                                                        |
| 1561 | + 'OC\\FilesMetadata\\Job\\UpdateSingleMetadata' => $baseDir.'/lib/private/FilesMetadata/Job/UpdateSingleMetadata.php',  | 
                                                        |
| 1562 | + 'OC\\FilesMetadata\\Listener\\MetadataDelete' => $baseDir.'/lib/private/FilesMetadata/Listener/MetadataDelete.php',  | 
                                                        |
| 1563 | + 'OC\\FilesMetadata\\Listener\\MetadataUpdate' => $baseDir.'/lib/private/FilesMetadata/Listener/MetadataUpdate.php',  | 
                                                        |
| 1564 | + 'OC\\FilesMetadata\\MetadataQuery' => $baseDir.'/lib/private/FilesMetadata/MetadataQuery.php',  | 
                                                        |
| 1565 | + 'OC\\FilesMetadata\\Model\\FilesMetadata' => $baseDir.'/lib/private/FilesMetadata/Model/FilesMetadata.php',  | 
                                                        |
| 1566 | + 'OC\\FilesMetadata\\Model\\MetadataValueWrapper' => $baseDir.'/lib/private/FilesMetadata/Model/MetadataValueWrapper.php',  | 
                                                        |
| 1567 | + 'OC\\FilesMetadata\\Service\\IndexRequestService' => $baseDir.'/lib/private/FilesMetadata/Service/IndexRequestService.php',  | 
                                                        |
| 1568 | + 'OC\\FilesMetadata\\Service\\MetadataRequestService' => $baseDir.'/lib/private/FilesMetadata/Service/MetadataRequestService.php',  | 
                                                        |
| 1569 | + 'OC\\Files\\AppData\\AppData' => $baseDir.'/lib/private/Files/AppData/AppData.php',  | 
                                                        |
| 1570 | + 'OC\\Files\\AppData\\Factory' => $baseDir.'/lib/private/Files/AppData/Factory.php',  | 
                                                        |
| 1571 | + 'OC\\Files\\Cache\\Cache' => $baseDir.'/lib/private/Files/Cache/Cache.php',  | 
                                                        |
| 1572 | + 'OC\\Files\\Cache\\CacheDependencies' => $baseDir.'/lib/private/Files/Cache/CacheDependencies.php',  | 
                                                        |
| 1573 | + 'OC\\Files\\Cache\\CacheEntry' => $baseDir.'/lib/private/Files/Cache/CacheEntry.php',  | 
                                                        |
| 1574 | + 'OC\\Files\\Cache\\CacheQueryBuilder' => $baseDir.'/lib/private/Files/Cache/CacheQueryBuilder.php',  | 
                                                        |
| 1575 | + 'OC\\Files\\Cache\\FailedCache' => $baseDir.'/lib/private/Files/Cache/FailedCache.php',  | 
                                                        |
| 1576 | + 'OC\\Files\\Cache\\FileAccess' => $baseDir.'/lib/private/Files/Cache/FileAccess.php',  | 
                                                        |
| 1577 | + 'OC\\Files\\Cache\\HomeCache' => $baseDir.'/lib/private/Files/Cache/HomeCache.php',  | 
                                                        |
| 1578 | + 'OC\\Files\\Cache\\HomePropagator' => $baseDir.'/lib/private/Files/Cache/HomePropagator.php',  | 
                                                        |
| 1579 | + 'OC\\Files\\Cache\\LocalRootScanner' => $baseDir.'/lib/private/Files/Cache/LocalRootScanner.php',  | 
                                                        |
| 1580 | + 'OC\\Files\\Cache\\MoveFromCacheTrait' => $baseDir.'/lib/private/Files/Cache/MoveFromCacheTrait.php',  | 
                                                        |
| 1581 | + 'OC\\Files\\Cache\\NullWatcher' => $baseDir.'/lib/private/Files/Cache/NullWatcher.php',  | 
                                                        |
| 1582 | + 'OC\\Files\\Cache\\Propagator' => $baseDir.'/lib/private/Files/Cache/Propagator.php',  | 
                                                        |
| 1583 | + 'OC\\Files\\Cache\\QuerySearchHelper' => $baseDir.'/lib/private/Files/Cache/QuerySearchHelper.php',  | 
                                                        |
| 1584 | + 'OC\\Files\\Cache\\Scanner' => $baseDir.'/lib/private/Files/Cache/Scanner.php',  | 
                                                        |
| 1585 | + 'OC\\Files\\Cache\\SearchBuilder' => $baseDir.'/lib/private/Files/Cache/SearchBuilder.php',  | 
                                                        |
| 1586 | + 'OC\\Files\\Cache\\Storage' => $baseDir.'/lib/private/Files/Cache/Storage.php',  | 
                                                        |
| 1587 | + 'OC\\Files\\Cache\\StorageGlobal' => $baseDir.'/lib/private/Files/Cache/StorageGlobal.php',  | 
                                                        |
| 1588 | + 'OC\\Files\\Cache\\Updater' => $baseDir.'/lib/private/Files/Cache/Updater.php',  | 
                                                        |
| 1589 | + 'OC\\Files\\Cache\\Watcher' => $baseDir.'/lib/private/Files/Cache/Watcher.php',  | 
                                                        |
| 1590 | + 'OC\\Files\\Cache\\Wrapper\\CacheJail' => $baseDir.'/lib/private/Files/Cache/Wrapper/CacheJail.php',  | 
                                                        |
| 1591 | + 'OC\\Files\\Cache\\Wrapper\\CachePermissionsMask' => $baseDir.'/lib/private/Files/Cache/Wrapper/CachePermissionsMask.php',  | 
                                                        |
| 1592 | + 'OC\\Files\\Cache\\Wrapper\\CacheWrapper' => $baseDir.'/lib/private/Files/Cache/Wrapper/CacheWrapper.php',  | 
                                                        |
| 1593 | + 'OC\\Files\\Cache\\Wrapper\\JailPropagator' => $baseDir.'/lib/private/Files/Cache/Wrapper/JailPropagator.php',  | 
                                                        |
| 1594 | + 'OC\\Files\\Cache\\Wrapper\\JailWatcher' => $baseDir.'/lib/private/Files/Cache/Wrapper/JailWatcher.php',  | 
                                                        |
| 1595 | + 'OC\\Files\\Config\\CachedMountFileInfo' => $baseDir.'/lib/private/Files/Config/CachedMountFileInfo.php',  | 
                                                        |
| 1596 | + 'OC\\Files\\Config\\CachedMountInfo' => $baseDir.'/lib/private/Files/Config/CachedMountInfo.php',  | 
                                                        |
| 1597 | + 'OC\\Files\\Config\\LazyPathCachedMountInfo' => $baseDir.'/lib/private/Files/Config/LazyPathCachedMountInfo.php',  | 
                                                        |
| 1598 | + 'OC\\Files\\Config\\LazyStorageMountInfo' => $baseDir.'/lib/private/Files/Config/LazyStorageMountInfo.php',  | 
                                                        |
| 1599 | + 'OC\\Files\\Config\\MountProviderCollection' => $baseDir.'/lib/private/Files/Config/MountProviderCollection.php',  | 
                                                        |
| 1600 | + 'OC\\Files\\Config\\UserMountCache' => $baseDir.'/lib/private/Files/Config/UserMountCache.php',  | 
                                                        |
| 1601 | + 'OC\\Files\\Config\\UserMountCacheListener' => $baseDir.'/lib/private/Files/Config/UserMountCacheListener.php',  | 
                                                        |
| 1602 | + 'OC\\Files\\Conversion\\ConversionManager' => $baseDir.'/lib/private/Files/Conversion/ConversionManager.php',  | 
                                                        |
| 1603 | + 'OC\\Files\\FileInfo' => $baseDir.'/lib/private/Files/FileInfo.php',  | 
                                                        |
| 1604 | + 'OC\\Files\\FilenameValidator' => $baseDir.'/lib/private/Files/FilenameValidator.php',  | 
                                                        |
| 1605 | + 'OC\\Files\\Filesystem' => $baseDir.'/lib/private/Files/Filesystem.php',  | 
                                                        |
| 1606 | + 'OC\\Files\\Lock\\LockManager' => $baseDir.'/lib/private/Files/Lock/LockManager.php',  | 
                                                        |
| 1607 | + 'OC\\Files\\Mount\\CacheMountProvider' => $baseDir.'/lib/private/Files/Mount/CacheMountProvider.php',  | 
                                                        |
| 1608 | + 'OC\\Files\\Mount\\HomeMountPoint' => $baseDir.'/lib/private/Files/Mount/HomeMountPoint.php',  | 
                                                        |
| 1609 | + 'OC\\Files\\Mount\\LocalHomeMountProvider' => $baseDir.'/lib/private/Files/Mount/LocalHomeMountProvider.php',  | 
                                                        |
| 1610 | + 'OC\\Files\\Mount\\Manager' => $baseDir.'/lib/private/Files/Mount/Manager.php',  | 
                                                        |
| 1611 | + 'OC\\Files\\Mount\\MountPoint' => $baseDir.'/lib/private/Files/Mount/MountPoint.php',  | 
                                                        |
| 1612 | + 'OC\\Files\\Mount\\MoveableMount' => $baseDir.'/lib/private/Files/Mount/MoveableMount.php',  | 
                                                        |
| 1613 | + 'OC\\Files\\Mount\\ObjectHomeMountProvider' => $baseDir.'/lib/private/Files/Mount/ObjectHomeMountProvider.php',  | 
                                                        |
| 1614 | + 'OC\\Files\\Mount\\ObjectStorePreviewCacheMountProvider' => $baseDir.'/lib/private/Files/Mount/ObjectStorePreviewCacheMountProvider.php',  | 
                                                        |
| 1615 | + 'OC\\Files\\Mount\\RootMountProvider' => $baseDir.'/lib/private/Files/Mount/RootMountProvider.php',  | 
                                                        |
| 1616 | + 'OC\\Files\\Node\\File' => $baseDir.'/lib/private/Files/Node/File.php',  | 
                                                        |
| 1617 | + 'OC\\Files\\Node\\Folder' => $baseDir.'/lib/private/Files/Node/Folder.php',  | 
                                                        |
| 1618 | + 'OC\\Files\\Node\\HookConnector' => $baseDir.'/lib/private/Files/Node/HookConnector.php',  | 
                                                        |
| 1619 | + 'OC\\Files\\Node\\LazyFolder' => $baseDir.'/lib/private/Files/Node/LazyFolder.php',  | 
                                                        |
| 1620 | + 'OC\\Files\\Node\\LazyRoot' => $baseDir.'/lib/private/Files/Node/LazyRoot.php',  | 
                                                        |
| 1621 | + 'OC\\Files\\Node\\LazyUserFolder' => $baseDir.'/lib/private/Files/Node/LazyUserFolder.php',  | 
                                                        |
| 1622 | + 'OC\\Files\\Node\\Node' => $baseDir.'/lib/private/Files/Node/Node.php',  | 
                                                        |
| 1623 | + 'OC\\Files\\Node\\NonExistingFile' => $baseDir.'/lib/private/Files/Node/NonExistingFile.php',  | 
                                                        |
| 1624 | + 'OC\\Files\\Node\\NonExistingFolder' => $baseDir.'/lib/private/Files/Node/NonExistingFolder.php',  | 
                                                        |
| 1625 | + 'OC\\Files\\Node\\Root' => $baseDir.'/lib/private/Files/Node/Root.php',  | 
                                                        |
| 1626 | + 'OC\\Files\\Notify\\Change' => $baseDir.'/lib/private/Files/Notify/Change.php',  | 
                                                        |
| 1627 | + 'OC\\Files\\Notify\\RenameChange' => $baseDir.'/lib/private/Files/Notify/RenameChange.php',  | 
                                                        |
| 1628 | + 'OC\\Files\\ObjectStore\\AppdataPreviewObjectStoreStorage' => $baseDir.'/lib/private/Files/ObjectStore/AppdataPreviewObjectStoreStorage.php',  | 
                                                        |
| 1629 | + 'OC\\Files\\ObjectStore\\Azure' => $baseDir.'/lib/private/Files/ObjectStore/Azure.php',  | 
                                                        |
| 1630 | + 'OC\\Files\\ObjectStore\\HomeObjectStoreStorage' => $baseDir.'/lib/private/Files/ObjectStore/HomeObjectStoreStorage.php',  | 
                                                        |
| 1631 | + 'OC\\Files\\ObjectStore\\Mapper' => $baseDir.'/lib/private/Files/ObjectStore/Mapper.php',  | 
                                                        |
| 1632 | + 'OC\\Files\\ObjectStore\\ObjectStoreScanner' => $baseDir.'/lib/private/Files/ObjectStore/ObjectStoreScanner.php',  | 
                                                        |
| 1633 | + 'OC\\Files\\ObjectStore\\ObjectStoreStorage' => $baseDir.'/lib/private/Files/ObjectStore/ObjectStoreStorage.php',  | 
                                                        |
| 1634 | + 'OC\\Files\\ObjectStore\\S3' => $baseDir.'/lib/private/Files/ObjectStore/S3.php',  | 
                                                        |
| 1635 | + 'OC\\Files\\ObjectStore\\S3ConfigTrait' => $baseDir.'/lib/private/Files/ObjectStore/S3ConfigTrait.php',  | 
                                                        |
| 1636 | + 'OC\\Files\\ObjectStore\\S3ConnectionTrait' => $baseDir.'/lib/private/Files/ObjectStore/S3ConnectionTrait.php',  | 
                                                        |
| 1637 | + 'OC\\Files\\ObjectStore\\S3ObjectTrait' => $baseDir.'/lib/private/Files/ObjectStore/S3ObjectTrait.php',  | 
                                                        |
| 1638 | + 'OC\\Files\\ObjectStore\\S3Signature' => $baseDir.'/lib/private/Files/ObjectStore/S3Signature.php',  | 
                                                        |
| 1639 | + 'OC\\Files\\ObjectStore\\StorageObjectStore' => $baseDir.'/lib/private/Files/ObjectStore/StorageObjectStore.php',  | 
                                                        |
| 1640 | + 'OC\\Files\\ObjectStore\\Swift' => $baseDir.'/lib/private/Files/ObjectStore/Swift.php',  | 
                                                        |
| 1641 | + 'OC\\Files\\ObjectStore\\SwiftFactory' => $baseDir.'/lib/private/Files/ObjectStore/SwiftFactory.php',  | 
                                                        |
| 1642 | + 'OC\\Files\\ObjectStore\\SwiftV2CachingAuthService' => $baseDir.'/lib/private/Files/ObjectStore/SwiftV2CachingAuthService.php',  | 
                                                        |
| 1643 | + 'OC\\Files\\Search\\QueryOptimizer\\FlattenNestedBool' => $baseDir.'/lib/private/Files/Search/QueryOptimizer/FlattenNestedBool.php',  | 
                                                        |
| 1644 | + 'OC\\Files\\Search\\QueryOptimizer\\FlattenSingleArgumentBinaryOperation' => $baseDir.'/lib/private/Files/Search/QueryOptimizer/FlattenSingleArgumentBinaryOperation.php',  | 
                                                        |
| 1645 | + 'OC\\Files\\Search\\QueryOptimizer\\MergeDistributiveOperations' => $baseDir.'/lib/private/Files/Search/QueryOptimizer/MergeDistributiveOperations.php',  | 
                                                        |
| 1646 | + 'OC\\Files\\Search\\QueryOptimizer\\OrEqualsToIn' => $baseDir.'/lib/private/Files/Search/QueryOptimizer/OrEqualsToIn.php',  | 
                                                        |
| 1647 | + 'OC\\Files\\Search\\QueryOptimizer\\PathPrefixOptimizer' => $baseDir.'/lib/private/Files/Search/QueryOptimizer/PathPrefixOptimizer.php',  | 
                                                        |
| 1648 | + 'OC\\Files\\Search\\QueryOptimizer\\QueryOptimizer' => $baseDir.'/lib/private/Files/Search/QueryOptimizer/QueryOptimizer.php',  | 
                                                        |
| 1649 | + 'OC\\Files\\Search\\QueryOptimizer\\QueryOptimizerStep' => $baseDir.'/lib/private/Files/Search/QueryOptimizer/QueryOptimizerStep.php',  | 
                                                        |
| 1650 | + 'OC\\Files\\Search\\QueryOptimizer\\ReplacingOptimizerStep' => $baseDir.'/lib/private/Files/Search/QueryOptimizer/ReplacingOptimizerStep.php',  | 
                                                        |
| 1651 | + 'OC\\Files\\Search\\QueryOptimizer\\SplitLargeIn' => $baseDir.'/lib/private/Files/Search/QueryOptimizer/SplitLargeIn.php',  | 
                                                        |
| 1652 | + 'OC\\Files\\Search\\SearchBinaryOperator' => $baseDir.'/lib/private/Files/Search/SearchBinaryOperator.php',  | 
                                                        |
| 1653 | + 'OC\\Files\\Search\\SearchComparison' => $baseDir.'/lib/private/Files/Search/SearchComparison.php',  | 
                                                        |
| 1654 | + 'OC\\Files\\Search\\SearchOrder' => $baseDir.'/lib/private/Files/Search/SearchOrder.php',  | 
                                                        |
| 1655 | + 'OC\\Files\\Search\\SearchQuery' => $baseDir.'/lib/private/Files/Search/SearchQuery.php',  | 
                                                        |
| 1656 | + 'OC\\Files\\SetupManager' => $baseDir.'/lib/private/Files/SetupManager.php',  | 
                                                        |
| 1657 | + 'OC\\Files\\SetupManagerFactory' => $baseDir.'/lib/private/Files/SetupManagerFactory.php',  | 
                                                        |
| 1658 | + 'OC\\Files\\SimpleFS\\NewSimpleFile' => $baseDir.'/lib/private/Files/SimpleFS/NewSimpleFile.php',  | 
                                                        |
| 1659 | + 'OC\\Files\\SimpleFS\\SimpleFile' => $baseDir.'/lib/private/Files/SimpleFS/SimpleFile.php',  | 
                                                        |
| 1660 | + 'OC\\Files\\SimpleFS\\SimpleFolder' => $baseDir.'/lib/private/Files/SimpleFS/SimpleFolder.php',  | 
                                                        |
| 1661 | + 'OC\\Files\\Storage\\Common' => $baseDir.'/lib/private/Files/Storage/Common.php',  | 
                                                        |
| 1662 | + 'OC\\Files\\Storage\\CommonTest' => $baseDir.'/lib/private/Files/Storage/CommonTest.php',  | 
                                                        |
| 1663 | + 'OC\\Files\\Storage\\DAV' => $baseDir.'/lib/private/Files/Storage/DAV.php',  | 
                                                        |
| 1664 | + 'OC\\Files\\Storage\\FailedStorage' => $baseDir.'/lib/private/Files/Storage/FailedStorage.php',  | 
                                                        |
| 1665 | + 'OC\\Files\\Storage\\Home' => $baseDir.'/lib/private/Files/Storage/Home.php',  | 
                                                        |
| 1666 | + 'OC\\Files\\Storage\\Local' => $baseDir.'/lib/private/Files/Storage/Local.php',  | 
                                                        |
| 1667 | + 'OC\\Files\\Storage\\LocalRootStorage' => $baseDir.'/lib/private/Files/Storage/LocalRootStorage.php',  | 
                                                        |
| 1668 | + 'OC\\Files\\Storage\\LocalTempFileTrait' => $baseDir.'/lib/private/Files/Storage/LocalTempFileTrait.php',  | 
                                                        |
| 1669 | + 'OC\\Files\\Storage\\PolyFill\\CopyDirectory' => $baseDir.'/lib/private/Files/Storage/PolyFill/CopyDirectory.php',  | 
                                                        |
| 1670 | + 'OC\\Files\\Storage\\Storage' => $baseDir.'/lib/private/Files/Storage/Storage.php',  | 
                                                        |
| 1671 | + 'OC\\Files\\Storage\\StorageFactory' => $baseDir.'/lib/private/Files/Storage/StorageFactory.php',  | 
                                                        |
| 1672 | + 'OC\\Files\\Storage\\Temporary' => $baseDir.'/lib/private/Files/Storage/Temporary.php',  | 
                                                        |
| 1673 | + 'OC\\Files\\Storage\\Wrapper\\Availability' => $baseDir.'/lib/private/Files/Storage/Wrapper/Availability.php',  | 
                                                        |
| 1674 | + 'OC\\Files\\Storage\\Wrapper\\Encoding' => $baseDir.'/lib/private/Files/Storage/Wrapper/Encoding.php',  | 
                                                        |
| 1675 | + 'OC\\Files\\Storage\\Wrapper\\EncodingDirectoryWrapper' => $baseDir.'/lib/private/Files/Storage/Wrapper/EncodingDirectoryWrapper.php',  | 
                                                        |
| 1676 | + 'OC\\Files\\Storage\\Wrapper\\Encryption' => $baseDir.'/lib/private/Files/Storage/Wrapper/Encryption.php',  | 
                                                        |
| 1677 | + 'OC\\Files\\Storage\\Wrapper\\Jail' => $baseDir.'/lib/private/Files/Storage/Wrapper/Jail.php',  | 
                                                        |
| 1678 | + 'OC\\Files\\Storage\\Wrapper\\KnownMtime' => $baseDir.'/lib/private/Files/Storage/Wrapper/KnownMtime.php',  | 
                                                        |
| 1679 | + 'OC\\Files\\Storage\\Wrapper\\PermissionsMask' => $baseDir.'/lib/private/Files/Storage/Wrapper/PermissionsMask.php',  | 
                                                        |
| 1680 | + 'OC\\Files\\Storage\\Wrapper\\Quota' => $baseDir.'/lib/private/Files/Storage/Wrapper/Quota.php',  | 
                                                        |
| 1681 | + 'OC\\Files\\Storage\\Wrapper\\Wrapper' => $baseDir.'/lib/private/Files/Storage/Wrapper/Wrapper.php',  | 
                                                        |
| 1682 | + 'OC\\Files\\Stream\\Encryption' => $baseDir.'/lib/private/Files/Stream/Encryption.php',  | 
                                                        |
| 1683 | + 'OC\\Files\\Stream\\HashWrapper' => $baseDir.'/lib/private/Files/Stream/HashWrapper.php',  | 
                                                        |
| 1684 | + 'OC\\Files\\Stream\\Quota' => $baseDir.'/lib/private/Files/Stream/Quota.php',  | 
                                                        |
| 1685 | + 'OC\\Files\\Stream\\SeekableHttpStream' => $baseDir.'/lib/private/Files/Stream/SeekableHttpStream.php',  | 
                                                        |
| 1686 | + 'OC\\Files\\Template\\TemplateManager' => $baseDir.'/lib/private/Files/Template/TemplateManager.php',  | 
                                                        |
| 1687 | + 'OC\\Files\\Type\\Detection' => $baseDir.'/lib/private/Files/Type/Detection.php',  | 
                                                        |
| 1688 | + 'OC\\Files\\Type\\Loader' => $baseDir.'/lib/private/Files/Type/Loader.php',  | 
                                                        |
| 1689 | + 'OC\\Files\\Type\\TemplateManager' => $baseDir.'/lib/private/Files/Type/TemplateManager.php',  | 
                                                        |
| 1690 | + 'OC\\Files\\Utils\\PathHelper' => $baseDir.'/lib/private/Files/Utils/PathHelper.php',  | 
                                                        |
| 1691 | + 'OC\\Files\\Utils\\Scanner' => $baseDir.'/lib/private/Files/Utils/Scanner.php',  | 
                                                        |
| 1692 | + 'OC\\Files\\View' => $baseDir.'/lib/private/Files/View.php',  | 
                                                        |
| 1693 | + 'OC\\ForbiddenException' => $baseDir.'/lib/private/ForbiddenException.php',  | 
                                                        |
| 1694 | + 'OC\\FullTextSearch\\FullTextSearchManager' => $baseDir.'/lib/private/FullTextSearch/FullTextSearchManager.php',  | 
                                                        |
| 1695 | + 'OC\\FullTextSearch\\Model\\DocumentAccess' => $baseDir.'/lib/private/FullTextSearch/Model/DocumentAccess.php',  | 
                                                        |
| 1696 | + 'OC\\FullTextSearch\\Model\\IndexDocument' => $baseDir.'/lib/private/FullTextSearch/Model/IndexDocument.php',  | 
                                                        |
| 1697 | + 'OC\\FullTextSearch\\Model\\SearchOption' => $baseDir.'/lib/private/FullTextSearch/Model/SearchOption.php',  | 
                                                        |
| 1698 | + 'OC\\FullTextSearch\\Model\\SearchRequestSimpleQuery' => $baseDir.'/lib/private/FullTextSearch/Model/SearchRequestSimpleQuery.php',  | 
                                                        |
| 1699 | + 'OC\\FullTextSearch\\Model\\SearchTemplate' => $baseDir.'/lib/private/FullTextSearch/Model/SearchTemplate.php',  | 
                                                        |
| 1700 | + 'OC\\GlobalScale\\Config' => $baseDir.'/lib/private/GlobalScale/Config.php',  | 
                                                        |
| 1701 | + 'OC\\Group\\Backend' => $baseDir.'/lib/private/Group/Backend.php',  | 
                                                        |
| 1702 | + 'OC\\Group\\Database' => $baseDir.'/lib/private/Group/Database.php',  | 
                                                        |
| 1703 | + 'OC\\Group\\DisplayNameCache' => $baseDir.'/lib/private/Group/DisplayNameCache.php',  | 
                                                        |
| 1704 | + 'OC\\Group\\Group' => $baseDir.'/lib/private/Group/Group.php',  | 
                                                        |
| 1705 | + 'OC\\Group\\Manager' => $baseDir.'/lib/private/Group/Manager.php',  | 
                                                        |
| 1706 | + 'OC\\Group\\MetaData' => $baseDir.'/lib/private/Group/MetaData.php',  | 
                                                        |
| 1707 | + 'OC\\HintException' => $baseDir.'/lib/private/HintException.php',  | 
                                                        |
| 1708 | + 'OC\\Hooks\\BasicEmitter' => $baseDir.'/lib/private/Hooks/BasicEmitter.php',  | 
                                                        |
| 1709 | + 'OC\\Hooks\\Emitter' => $baseDir.'/lib/private/Hooks/Emitter.php',  | 
                                                        |
| 1710 | + 'OC\\Hooks\\EmitterTrait' => $baseDir.'/lib/private/Hooks/EmitterTrait.php',  | 
                                                        |
| 1711 | + 'OC\\Hooks\\PublicEmitter' => $baseDir.'/lib/private/Hooks/PublicEmitter.php',  | 
                                                        |
| 1712 | + 'OC\\Http\\Client\\Client' => $baseDir.'/lib/private/Http/Client/Client.php',  | 
                                                        |
| 1713 | + 'OC\\Http\\Client\\ClientService' => $baseDir.'/lib/private/Http/Client/ClientService.php',  | 
                                                        |
| 1714 | + 'OC\\Http\\Client\\DnsPinMiddleware' => $baseDir.'/lib/private/Http/Client/DnsPinMiddleware.php',  | 
                                                        |
| 1715 | + 'OC\\Http\\Client\\GuzzlePromiseAdapter' => $baseDir.'/lib/private/Http/Client/GuzzlePromiseAdapter.php',  | 
                                                        |
| 1716 | + 'OC\\Http\\Client\\NegativeDnsCache' => $baseDir.'/lib/private/Http/Client/NegativeDnsCache.php',  | 
                                                        |
| 1717 | + 'OC\\Http\\Client\\Response' => $baseDir.'/lib/private/Http/Client/Response.php',  | 
                                                        |
| 1718 | + 'OC\\Http\\CookieHelper' => $baseDir.'/lib/private/Http/CookieHelper.php',  | 
                                                        |
| 1719 | + 'OC\\Http\\WellKnown\\RequestManager' => $baseDir.'/lib/private/Http/WellKnown/RequestManager.php',  | 
                                                        |
| 1720 | + 'OC\\Image' => $baseDir.'/lib/private/Image.php',  | 
                                                        |
| 1721 | + 'OC\\InitialStateService' => $baseDir.'/lib/private/InitialStateService.php',  | 
                                                        |
| 1722 | + 'OC\\Installer' => $baseDir.'/lib/private/Installer.php',  | 
                                                        |
| 1723 | + 'OC\\IntegrityCheck\\Checker' => $baseDir.'/lib/private/IntegrityCheck/Checker.php',  | 
                                                        |
| 1724 | + 'OC\\IntegrityCheck\\Exceptions\\InvalidSignatureException' => $baseDir.'/lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php',  | 
                                                        |
| 1725 | + 'OC\\IntegrityCheck\\Helpers\\AppLocator' => $baseDir.'/lib/private/IntegrityCheck/Helpers/AppLocator.php',  | 
                                                        |
| 1726 | + 'OC\\IntegrityCheck\\Helpers\\EnvironmentHelper' => $baseDir.'/lib/private/IntegrityCheck/Helpers/EnvironmentHelper.php',  | 
                                                        |
| 1727 | + 'OC\\IntegrityCheck\\Helpers\\FileAccessHelper' => $baseDir.'/lib/private/IntegrityCheck/Helpers/FileAccessHelper.php',  | 
                                                        |
| 1728 | + 'OC\\IntegrityCheck\\Iterator\\ExcludeFileByNameFilterIterator' => $baseDir.'/lib/private/IntegrityCheck/Iterator/ExcludeFileByNameFilterIterator.php',  | 
                                                        |
| 1729 | + 'OC\\IntegrityCheck\\Iterator\\ExcludeFoldersByPathFilterIterator' => $baseDir.'/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php',  | 
                                                        |
| 1730 | + 'OC\\KnownUser\\KnownUser' => $baseDir.'/lib/private/KnownUser/KnownUser.php',  | 
                                                        |
| 1731 | + 'OC\\KnownUser\\KnownUserMapper' => $baseDir.'/lib/private/KnownUser/KnownUserMapper.php',  | 
                                                        |
| 1732 | + 'OC\\KnownUser\\KnownUserService' => $baseDir.'/lib/private/KnownUser/KnownUserService.php',  | 
                                                        |
| 1733 | + 'OC\\L10N\\Factory' => $baseDir.'/lib/private/L10N/Factory.php',  | 
                                                        |
| 1734 | + 'OC\\L10N\\L10N' => $baseDir.'/lib/private/L10N/L10N.php',  | 
                                                        |
| 1735 | + 'OC\\L10N\\L10NString' => $baseDir.'/lib/private/L10N/L10NString.php',  | 
                                                        |
| 1736 | + 'OC\\L10N\\LanguageIterator' => $baseDir.'/lib/private/L10N/LanguageIterator.php',  | 
                                                        |
| 1737 | + 'OC\\L10N\\LanguageNotFoundException' => $baseDir.'/lib/private/L10N/LanguageNotFoundException.php',  | 
                                                        |
| 1738 | + 'OC\\L10N\\LazyL10N' => $baseDir.'/lib/private/L10N/LazyL10N.php',  | 
                                                        |
| 1739 | + 'OC\\LDAP\\NullLDAPProviderFactory' => $baseDir.'/lib/private/LDAP/NullLDAPProviderFactory.php',  | 
                                                        |
| 1740 | + 'OC\\LargeFileHelper' => $baseDir.'/lib/private/LargeFileHelper.php',  | 
                                                        |
| 1741 | + 'OC\\Lock\\AbstractLockingProvider' => $baseDir.'/lib/private/Lock/AbstractLockingProvider.php',  | 
                                                        |
| 1742 | + 'OC\\Lock\\DBLockingProvider' => $baseDir.'/lib/private/Lock/DBLockingProvider.php',  | 
                                                        |
| 1743 | + 'OC\\Lock\\MemcacheLockingProvider' => $baseDir.'/lib/private/Lock/MemcacheLockingProvider.php',  | 
                                                        |
| 1744 | + 'OC\\Lock\\NoopLockingProvider' => $baseDir.'/lib/private/Lock/NoopLockingProvider.php',  | 
                                                        |
| 1745 | + 'OC\\Lockdown\\Filesystem\\NullCache' => $baseDir.'/lib/private/Lockdown/Filesystem/NullCache.php',  | 
                                                        |
| 1746 | + 'OC\\Lockdown\\Filesystem\\NullStorage' => $baseDir.'/lib/private/Lockdown/Filesystem/NullStorage.php',  | 
                                                        |
| 1747 | + 'OC\\Lockdown\\LockdownManager' => $baseDir.'/lib/private/Lockdown/LockdownManager.php',  | 
                                                        |
| 1748 | + 'OC\\Log' => $baseDir.'/lib/private/Log.php',  | 
                                                        |
| 1749 | + 'OC\\Log\\ErrorHandler' => $baseDir.'/lib/private/Log/ErrorHandler.php',  | 
                                                        |
| 1750 | + 'OC\\Log\\Errorlog' => $baseDir.'/lib/private/Log/Errorlog.php',  | 
                                                        |
| 1751 | + 'OC\\Log\\ExceptionSerializer' => $baseDir.'/lib/private/Log/ExceptionSerializer.php',  | 
                                                        |
| 1752 | + 'OC\\Log\\File' => $baseDir.'/lib/private/Log/File.php',  | 
                                                        |
| 1753 | + 'OC\\Log\\LogDetails' => $baseDir.'/lib/private/Log/LogDetails.php',  | 
                                                        |
| 1754 | + 'OC\\Log\\LogFactory' => $baseDir.'/lib/private/Log/LogFactory.php',  | 
                                                        |
| 1755 | + 'OC\\Log\\PsrLoggerAdapter' => $baseDir.'/lib/private/Log/PsrLoggerAdapter.php',  | 
                                                        |
| 1756 | + 'OC\\Log\\Rotate' => $baseDir.'/lib/private/Log/Rotate.php',  | 
                                                        |
| 1757 | + 'OC\\Log\\Syslog' => $baseDir.'/lib/private/Log/Syslog.php',  | 
                                                        |
| 1758 | + 'OC\\Log\\Systemdlog' => $baseDir.'/lib/private/Log/Systemdlog.php',  | 
                                                        |
| 1759 | + 'OC\\Mail\\Attachment' => $baseDir.'/lib/private/Mail/Attachment.php',  | 
                                                        |
| 1760 | + 'OC\\Mail\\EMailTemplate' => $baseDir.'/lib/private/Mail/EMailTemplate.php',  | 
                                                        |
| 1761 | + 'OC\\Mail\\Mailer' => $baseDir.'/lib/private/Mail/Mailer.php',  | 
                                                        |
| 1762 | + 'OC\\Mail\\Message' => $baseDir.'/lib/private/Mail/Message.php',  | 
                                                        |
| 1763 | + 'OC\\Mail\\Provider\\Manager' => $baseDir.'/lib/private/Mail/Provider/Manager.php',  | 
                                                        |
| 1764 | + 'OC\\Memcache\\APCu' => $baseDir.'/lib/private/Memcache/APCu.php',  | 
                                                        |
| 1765 | + 'OC\\Memcache\\ArrayCache' => $baseDir.'/lib/private/Memcache/ArrayCache.php',  | 
                                                        |
| 1766 | + 'OC\\Memcache\\CADTrait' => $baseDir.'/lib/private/Memcache/CADTrait.php',  | 
                                                        |
| 1767 | + 'OC\\Memcache\\CASTrait' => $baseDir.'/lib/private/Memcache/CASTrait.php',  | 
                                                        |
| 1768 | + 'OC\\Memcache\\Cache' => $baseDir.'/lib/private/Memcache/Cache.php',  | 
                                                        |
| 1769 | + 'OC\\Memcache\\Factory' => $baseDir.'/lib/private/Memcache/Factory.php',  | 
                                                        |
| 1770 | + 'OC\\Memcache\\LoggerWrapperCache' => $baseDir.'/lib/private/Memcache/LoggerWrapperCache.php',  | 
                                                        |
| 1771 | + 'OC\\Memcache\\Memcached' => $baseDir.'/lib/private/Memcache/Memcached.php',  | 
                                                        |
| 1772 | + 'OC\\Memcache\\NullCache' => $baseDir.'/lib/private/Memcache/NullCache.php',  | 
                                                        |
| 1773 | + 'OC\\Memcache\\ProfilerWrapperCache' => $baseDir.'/lib/private/Memcache/ProfilerWrapperCache.php',  | 
                                                        |
| 1774 | + 'OC\\Memcache\\Redis' => $baseDir.'/lib/private/Memcache/Redis.php',  | 
                                                        |
| 1775 | + 'OC\\Memcache\\WithLocalCache' => $baseDir.'/lib/private/Memcache/WithLocalCache.php',  | 
                                                        |
| 1776 | + 'OC\\MemoryInfo' => $baseDir.'/lib/private/MemoryInfo.php',  | 
                                                        |
| 1777 | + 'OC\\Migration\\BackgroundRepair' => $baseDir.'/lib/private/Migration/BackgroundRepair.php',  | 
                                                        |
| 1778 | + 'OC\\Migration\\ConsoleOutput' => $baseDir.'/lib/private/Migration/ConsoleOutput.php',  | 
                                                        |
| 1779 | + 'OC\\Migration\\Exceptions\\AttributeException' => $baseDir.'/lib/private/Migration/Exceptions/AttributeException.php',  | 
                                                        |
| 1780 | + 'OC\\Migration\\MetadataManager' => $baseDir.'/lib/private/Migration/MetadataManager.php',  | 
                                                        |
| 1781 | + 'OC\\Migration\\NullOutput' => $baseDir.'/lib/private/Migration/NullOutput.php',  | 
                                                        |
| 1782 | + 'OC\\Migration\\SimpleOutput' => $baseDir.'/lib/private/Migration/SimpleOutput.php',  | 
                                                        |
| 1783 | + 'OC\\NaturalSort' => $baseDir.'/lib/private/NaturalSort.php',  | 
                                                        |
| 1784 | + 'OC\\NaturalSort_DefaultCollator' => $baseDir.'/lib/private/NaturalSort_DefaultCollator.php',  | 
                                                        |
| 1785 | + 'OC\\NavigationManager' => $baseDir.'/lib/private/NavigationManager.php',  | 
                                                        |
| 1786 | + 'OC\\NeedsUpdateException' => $baseDir.'/lib/private/NeedsUpdateException.php',  | 
                                                        |
| 1787 | + 'OC\\Net\\HostnameClassifier' => $baseDir.'/lib/private/Net/HostnameClassifier.php',  | 
                                                        |
| 1788 | + 'OC\\Net\\IpAddressClassifier' => $baseDir.'/lib/private/Net/IpAddressClassifier.php',  | 
                                                        |
| 1789 | + 'OC\\NotSquareException' => $baseDir.'/lib/private/NotSquareException.php',  | 
                                                        |
| 1790 | + 'OC\\Notification\\Action' => $baseDir.'/lib/private/Notification/Action.php',  | 
                                                        |
| 1791 | + 'OC\\Notification\\Manager' => $baseDir.'/lib/private/Notification/Manager.php',  | 
                                                        |
| 1792 | + 'OC\\Notification\\Notification' => $baseDir.'/lib/private/Notification/Notification.php',  | 
                                                        |
| 1793 | + 'OC\\OCM\\Model\\OCMProvider' => $baseDir.'/lib/private/OCM/Model/OCMProvider.php',  | 
                                                        |
| 1794 | + 'OC\\OCM\\Model\\OCMResource' => $baseDir.'/lib/private/OCM/Model/OCMResource.php',  | 
                                                        |
| 1795 | + 'OC\\OCM\\OCMDiscoveryService' => $baseDir.'/lib/private/OCM/OCMDiscoveryService.php',  | 
                                                        |
| 1796 | + 'OC\\OCM\\OCMSignatoryManager' => $baseDir.'/lib/private/OCM/OCMSignatoryManager.php',  | 
                                                        |
| 1797 | + 'OC\\OCS\\ApiHelper' => $baseDir.'/lib/private/OCS/ApiHelper.php',  | 
                                                        |
| 1798 | + 'OC\\OCS\\CoreCapabilities' => $baseDir.'/lib/private/OCS/CoreCapabilities.php',  | 
                                                        |
| 1799 | + 'OC\\OCS\\DiscoveryService' => $baseDir.'/lib/private/OCS/DiscoveryService.php',  | 
                                                        |
| 1800 | + 'OC\\OCS\\Provider' => $baseDir.'/lib/private/OCS/Provider.php',  | 
                                                        |
| 1801 | + 'OC\\PhoneNumberUtil' => $baseDir.'/lib/private/PhoneNumberUtil.php',  | 
                                                        |
| 1802 | + 'OC\\PreviewManager' => $baseDir.'/lib/private/PreviewManager.php',  | 
                                                        |
| 1803 | + 'OC\\PreviewNotAvailableException' => $baseDir.'/lib/private/PreviewNotAvailableException.php',  | 
                                                        |
| 1804 | + 'OC\\Preview\\BMP' => $baseDir.'/lib/private/Preview/BMP.php',  | 
                                                        |
| 1805 | + 'OC\\Preview\\BackgroundCleanupJob' => $baseDir.'/lib/private/Preview/BackgroundCleanupJob.php',  | 
                                                        |
| 1806 | + 'OC\\Preview\\Bitmap' => $baseDir.'/lib/private/Preview/Bitmap.php',  | 
                                                        |
| 1807 | + 'OC\\Preview\\Bundled' => $baseDir.'/lib/private/Preview/Bundled.php',  | 
                                                        |
| 1808 | + 'OC\\Preview\\EMF' => $baseDir.'/lib/private/Preview/EMF.php',  | 
                                                        |
| 1809 | + 'OC\\Preview\\Font' => $baseDir.'/lib/private/Preview/Font.php',  | 
                                                        |
| 1810 | + 'OC\\Preview\\GIF' => $baseDir.'/lib/private/Preview/GIF.php',  | 
                                                        |
| 1811 | + 'OC\\Preview\\Generator' => $baseDir.'/lib/private/Preview/Generator.php',  | 
                                                        |
| 1812 | + 'OC\\Preview\\GeneratorHelper' => $baseDir.'/lib/private/Preview/GeneratorHelper.php',  | 
                                                        |
| 1813 | + 'OC\\Preview\\HEIC' => $baseDir.'/lib/private/Preview/HEIC.php',  | 
                                                        |
| 1814 | + 'OC\\Preview\\IMagickSupport' => $baseDir.'/lib/private/Preview/IMagickSupport.php',  | 
                                                        |
| 1815 | + 'OC\\Preview\\Illustrator' => $baseDir.'/lib/private/Preview/Illustrator.php',  | 
                                                        |
| 1816 | + 'OC\\Preview\\Image' => $baseDir.'/lib/private/Preview/Image.php',  | 
                                                        |
| 1817 | + 'OC\\Preview\\Imaginary' => $baseDir.'/lib/private/Preview/Imaginary.php',  | 
                                                        |
| 1818 | + 'OC\\Preview\\ImaginaryPDF' => $baseDir.'/lib/private/Preview/ImaginaryPDF.php',  | 
                                                        |
| 1819 | + 'OC\\Preview\\JPEG' => $baseDir.'/lib/private/Preview/JPEG.php',  | 
                                                        |
| 1820 | + 'OC\\Preview\\Krita' => $baseDir.'/lib/private/Preview/Krita.php',  | 
                                                        |
| 1821 | + 'OC\\Preview\\MP3' => $baseDir.'/lib/private/Preview/MP3.php',  | 
                                                        |
| 1822 | + 'OC\\Preview\\MSOffice2003' => $baseDir.'/lib/private/Preview/MSOffice2003.php',  | 
                                                        |
| 1823 | + 'OC\\Preview\\MSOffice2007' => $baseDir.'/lib/private/Preview/MSOffice2007.php',  | 
                                                        |
| 1824 | + 'OC\\Preview\\MSOfficeDoc' => $baseDir.'/lib/private/Preview/MSOfficeDoc.php',  | 
                                                        |
| 1825 | + 'OC\\Preview\\MarkDown' => $baseDir.'/lib/private/Preview/MarkDown.php',  | 
                                                        |
| 1826 | + 'OC\\Preview\\MimeIconProvider' => $baseDir.'/lib/private/Preview/MimeIconProvider.php',  | 
                                                        |
| 1827 | + 'OC\\Preview\\Movie' => $baseDir.'/lib/private/Preview/Movie.php',  | 
                                                        |
| 1828 | + 'OC\\Preview\\Office' => $baseDir.'/lib/private/Preview/Office.php',  | 
                                                        |
| 1829 | + 'OC\\Preview\\OpenDocument' => $baseDir.'/lib/private/Preview/OpenDocument.php',  | 
                                                        |
| 1830 | + 'OC\\Preview\\PDF' => $baseDir.'/lib/private/Preview/PDF.php',  | 
                                                        |
| 1831 | + 'OC\\Preview\\PNG' => $baseDir.'/lib/private/Preview/PNG.php',  | 
                                                        |
| 1832 | + 'OC\\Preview\\Photoshop' => $baseDir.'/lib/private/Preview/Photoshop.php',  | 
                                                        |
| 1833 | + 'OC\\Preview\\Postscript' => $baseDir.'/lib/private/Preview/Postscript.php',  | 
                                                        |
| 1834 | + 'OC\\Preview\\Provider' => $baseDir.'/lib/private/Preview/Provider.php',  | 
                                                        |
| 1835 | + 'OC\\Preview\\ProviderV1Adapter' => $baseDir.'/lib/private/Preview/ProviderV1Adapter.php',  | 
                                                        |
| 1836 | + 'OC\\Preview\\ProviderV2' => $baseDir.'/lib/private/Preview/ProviderV2.php',  | 
                                                        |
| 1837 | + 'OC\\Preview\\SGI' => $baseDir.'/lib/private/Preview/SGI.php',  | 
                                                        |
| 1838 | + 'OC\\Preview\\SVG' => $baseDir.'/lib/private/Preview/SVG.php',  | 
                                                        |
| 1839 | + 'OC\\Preview\\StarOffice' => $baseDir.'/lib/private/Preview/StarOffice.php',  | 
                                                        |
| 1840 | + 'OC\\Preview\\Storage\\Root' => $baseDir.'/lib/private/Preview/Storage/Root.php',  | 
                                                        |
| 1841 | + 'OC\\Preview\\TGA' => $baseDir.'/lib/private/Preview/TGA.php',  | 
                                                        |
| 1842 | + 'OC\\Preview\\TIFF' => $baseDir.'/lib/private/Preview/TIFF.php',  | 
                                                        |
| 1843 | + 'OC\\Preview\\TXT' => $baseDir.'/lib/private/Preview/TXT.php',  | 
                                                        |
| 1844 | + 'OC\\Preview\\Watcher' => $baseDir.'/lib/private/Preview/Watcher.php',  | 
                                                        |
| 1845 | + 'OC\\Preview\\WatcherConnector' => $baseDir.'/lib/private/Preview/WatcherConnector.php',  | 
                                                        |
| 1846 | + 'OC\\Preview\\WebP' => $baseDir.'/lib/private/Preview/WebP.php',  | 
                                                        |
| 1847 | + 'OC\\Preview\\XBitmap' => $baseDir.'/lib/private/Preview/XBitmap.php',  | 
                                                        |
| 1848 | + 'OC\\Profile\\Actions\\EmailAction' => $baseDir.'/lib/private/Profile/Actions/EmailAction.php',  | 
                                                        |
| 1849 | + 'OC\\Profile\\Actions\\FediverseAction' => $baseDir.'/lib/private/Profile/Actions/FediverseAction.php',  | 
                                                        |
| 1850 | + 'OC\\Profile\\Actions\\PhoneAction' => $baseDir.'/lib/private/Profile/Actions/PhoneAction.php',  | 
                                                        |
| 1851 | + 'OC\\Profile\\Actions\\TwitterAction' => $baseDir.'/lib/private/Profile/Actions/TwitterAction.php',  | 
                                                        |
| 1852 | + 'OC\\Profile\\Actions\\WebsiteAction' => $baseDir.'/lib/private/Profile/Actions/WebsiteAction.php',  | 
                                                        |
| 1853 | + 'OC\\Profile\\ProfileManager' => $baseDir.'/lib/private/Profile/ProfileManager.php',  | 
                                                        |
| 1854 | + 'OC\\Profile\\TProfileHelper' => $baseDir.'/lib/private/Profile/TProfileHelper.php',  | 
                                                        |
| 1855 | + 'OC\\Profiler\\FileProfilerStorage' => $baseDir.'/lib/private/Profiler/FileProfilerStorage.php',  | 
                                                        |
| 1856 | + 'OC\\Profiler\\Profile' => $baseDir.'/lib/private/Profiler/Profile.php',  | 
                                                        |
| 1857 | + 'OC\\Profiler\\Profiler' => $baseDir.'/lib/private/Profiler/Profiler.php',  | 
                                                        |
| 1858 | + 'OC\\Profiler\\RoutingDataCollector' => $baseDir.'/lib/private/Profiler/RoutingDataCollector.php',  | 
                                                        |
| 1859 | + 'OC\\RedisFactory' => $baseDir.'/lib/private/RedisFactory.php',  | 
                                                        |
| 1860 | + 'OC\\Remote\\Api\\ApiBase' => $baseDir.'/lib/private/Remote/Api/ApiBase.php',  | 
                                                        |
| 1861 | + 'OC\\Remote\\Api\\ApiCollection' => $baseDir.'/lib/private/Remote/Api/ApiCollection.php',  | 
                                                        |
| 1862 | + 'OC\\Remote\\Api\\ApiFactory' => $baseDir.'/lib/private/Remote/Api/ApiFactory.php',  | 
                                                        |
| 1863 | + 'OC\\Remote\\Api\\NotFoundException' => $baseDir.'/lib/private/Remote/Api/NotFoundException.php',  | 
                                                        |
| 1864 | + 'OC\\Remote\\Api\\OCS' => $baseDir.'/lib/private/Remote/Api/OCS.php',  | 
                                                        |
| 1865 | + 'OC\\Remote\\Credentials' => $baseDir.'/lib/private/Remote/Credentials.php',  | 
                                                        |
| 1866 | + 'OC\\Remote\\Instance' => $baseDir.'/lib/private/Remote/Instance.php',  | 
                                                        |
| 1867 | + 'OC\\Remote\\InstanceFactory' => $baseDir.'/lib/private/Remote/InstanceFactory.php',  | 
                                                        |
| 1868 | + 'OC\\Remote\\User' => $baseDir.'/lib/private/Remote/User.php',  | 
                                                        |
| 1869 | + 'OC\\Repair' => $baseDir.'/lib/private/Repair.php',  | 
                                                        |
| 1870 | + 'OC\\RepairException' => $baseDir.'/lib/private/RepairException.php',  | 
                                                        |
| 1871 | + 'OC\\Repair\\AddAppConfigLazyMigration' => $baseDir.'/lib/private/Repair/AddAppConfigLazyMigration.php',  | 
                                                        |
| 1872 | + 'OC\\Repair\\AddBruteForceCleanupJob' => $baseDir.'/lib/private/Repair/AddBruteForceCleanupJob.php',  | 
                                                        |
| 1873 | + 'OC\\Repair\\AddCleanupDeletedUsersBackgroundJob' => $baseDir.'/lib/private/Repair/AddCleanupDeletedUsersBackgroundJob.php',  | 
                                                        |
| 1874 | + 'OC\\Repair\\AddCleanupUpdaterBackupsJob' => $baseDir.'/lib/private/Repair/AddCleanupUpdaterBackupsJob.php',  | 
                                                        |
| 1875 | + 'OC\\Repair\\AddMetadataGenerationJob' => $baseDir.'/lib/private/Repair/AddMetadataGenerationJob.php',  | 
                                                        |
| 1876 | + 'OC\\Repair\\AddRemoveOldTasksBackgroundJob' => $baseDir.'/lib/private/Repair/AddRemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 1877 | + 'OC\\Repair\\CleanTags' => $baseDir.'/lib/private/Repair/CleanTags.php',  | 
                                                        |
| 1878 | + 'OC\\Repair\\CleanUpAbandonedApps' => $baseDir.'/lib/private/Repair/CleanUpAbandonedApps.php',  | 
                                                        |
| 1879 | + 'OC\\Repair\\ClearFrontendCaches' => $baseDir.'/lib/private/Repair/ClearFrontendCaches.php',  | 
                                                        |
| 1880 | + 'OC\\Repair\\ClearGeneratedAvatarCache' => $baseDir.'/lib/private/Repair/ClearGeneratedAvatarCache.php',  | 
                                                        |
| 1881 | + 'OC\\Repair\\ClearGeneratedAvatarCacheJob' => $baseDir.'/lib/private/Repair/ClearGeneratedAvatarCacheJob.php',  | 
                                                        |
| 1882 | + 'OC\\Repair\\Collation' => $baseDir.'/lib/private/Repair/Collation.php',  | 
                                                        |
| 1883 | + 'OC\\Repair\\Events\\RepairAdvanceEvent' => $baseDir.'/lib/private/Repair/Events/RepairAdvanceEvent.php',  | 
                                                        |
| 1884 | + 'OC\\Repair\\Events\\RepairErrorEvent' => $baseDir.'/lib/private/Repair/Events/RepairErrorEvent.php',  | 
                                                        |
| 1885 | + 'OC\\Repair\\Events\\RepairFinishEvent' => $baseDir.'/lib/private/Repair/Events/RepairFinishEvent.php',  | 
                                                        |
| 1886 | + 'OC\\Repair\\Events\\RepairInfoEvent' => $baseDir.'/lib/private/Repair/Events/RepairInfoEvent.php',  | 
                                                        |
| 1887 | + 'OC\\Repair\\Events\\RepairStartEvent' => $baseDir.'/lib/private/Repair/Events/RepairStartEvent.php',  | 
                                                        |
| 1888 | + 'OC\\Repair\\Events\\RepairStepEvent' => $baseDir.'/lib/private/Repair/Events/RepairStepEvent.php',  | 
                                                        |
| 1889 | + 'OC\\Repair\\Events\\RepairWarningEvent' => $baseDir.'/lib/private/Repair/Events/RepairWarningEvent.php',  | 
                                                        |
| 1890 | + 'OC\\Repair\\MoveUpdaterStepFile' => $baseDir.'/lib/private/Repair/MoveUpdaterStepFile.php',  | 
                                                        |
| 1891 | + 'OC\\Repair\\NC13\\AddLogRotateJob' => $baseDir.'/lib/private/Repair/NC13/AddLogRotateJob.php',  | 
                                                        |
| 1892 | + 'OC\\Repair\\NC14\\AddPreviewBackgroundCleanupJob' => $baseDir.'/lib/private/Repair/NC14/AddPreviewBackgroundCleanupJob.php',  | 
                                                        |
| 1893 | + 'OC\\Repair\\NC16\\AddClenupLoginFlowV2BackgroundJob' => $baseDir.'/lib/private/Repair/NC16/AddClenupLoginFlowV2BackgroundJob.php',  | 
                                                        |
| 1894 | + 'OC\\Repair\\NC16\\CleanupCardDAVPhotoCache' => $baseDir.'/lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php',  | 
                                                        |
| 1895 | + 'OC\\Repair\\NC16\\ClearCollectionsAccessCache' => $baseDir.'/lib/private/Repair/NC16/ClearCollectionsAccessCache.php',  | 
                                                        |
| 1896 | + 'OC\\Repair\\NC18\\ResetGeneratedAvatarFlag' => $baseDir.'/lib/private/Repair/NC18/ResetGeneratedAvatarFlag.php',  | 
                                                        |
| 1897 | + 'OC\\Repair\\NC20\\EncryptionLegacyCipher' => $baseDir.'/lib/private/Repair/NC20/EncryptionLegacyCipher.php',  | 
                                                        |
| 1898 | + 'OC\\Repair\\NC20\\EncryptionMigration' => $baseDir.'/lib/private/Repair/NC20/EncryptionMigration.php',  | 
                                                        |
| 1899 | + 'OC\\Repair\\NC20\\ShippedDashboardEnable' => $baseDir.'/lib/private/Repair/NC20/ShippedDashboardEnable.php',  | 
                                                        |
| 1900 | + 'OC\\Repair\\NC21\\AddCheckForUserCertificatesJob' => $baseDir.'/lib/private/Repair/NC21/AddCheckForUserCertificatesJob.php',  | 
                                                        |
| 1901 | + 'OC\\Repair\\NC22\\LookupServerSendCheck' => $baseDir.'/lib/private/Repair/NC22/LookupServerSendCheck.php',  | 
                                                        |
| 1902 | + 'OC\\Repair\\NC24\\AddTokenCleanupJob' => $baseDir.'/lib/private/Repair/NC24/AddTokenCleanupJob.php',  | 
                                                        |
| 1903 | + 'OC\\Repair\\NC25\\AddMissingSecretJob' => $baseDir.'/lib/private/Repair/NC25/AddMissingSecretJob.php',  | 
                                                        |
| 1904 | + 'OC\\Repair\\NC29\\SanitizeAccountProperties' => $baseDir.'/lib/private/Repair/NC29/SanitizeAccountProperties.php',  | 
                                                        |
| 1905 | + 'OC\\Repair\\NC29\\SanitizeAccountPropertiesJob' => $baseDir.'/lib/private/Repair/NC29/SanitizeAccountPropertiesJob.php',  | 
                                                        |
| 1906 | + 'OC\\Repair\\NC30\\RemoveLegacyDatadirFile' => $baseDir.'/lib/private/Repair/NC30/RemoveLegacyDatadirFile.php',  | 
                                                        |
| 1907 | + 'OC\\Repair\\OldGroupMembershipShares' => $baseDir.'/lib/private/Repair/OldGroupMembershipShares.php',  | 
                                                        |
| 1908 | + 'OC\\Repair\\Owncloud\\CleanPreviews' => $baseDir.'/lib/private/Repair/Owncloud/CleanPreviews.php',  | 
                                                        |
| 1909 | + 'OC\\Repair\\Owncloud\\CleanPreviewsBackgroundJob' => $baseDir.'/lib/private/Repair/Owncloud/CleanPreviewsBackgroundJob.php',  | 
                                                        |
| 1910 | + 'OC\\Repair\\Owncloud\\DropAccountTermsTable' => $baseDir.'/lib/private/Repair/Owncloud/DropAccountTermsTable.php',  | 
                                                        |
| 1911 | + 'OC\\Repair\\Owncloud\\MigrateOauthTables' => $baseDir.'/lib/private/Repair/Owncloud/MigrateOauthTables.php',  | 
                                                        |
| 1912 | + 'OC\\Repair\\Owncloud\\MoveAvatars' => $baseDir.'/lib/private/Repair/Owncloud/MoveAvatars.php',  | 
                                                        |
| 1913 | + 'OC\\Repair\\Owncloud\\MoveAvatarsBackgroundJob' => $baseDir.'/lib/private/Repair/Owncloud/MoveAvatarsBackgroundJob.php',  | 
                                                        |
| 1914 | + 'OC\\Repair\\Owncloud\\SaveAccountsTableData' => $baseDir.'/lib/private/Repair/Owncloud/SaveAccountsTableData.php',  | 
                                                        |
| 1915 | + 'OC\\Repair\\Owncloud\\UpdateLanguageCodes' => $baseDir.'/lib/private/Repair/Owncloud/UpdateLanguageCodes.php',  | 
                                                        |
| 1916 | + 'OC\\Repair\\RemoveBrokenProperties' => $baseDir.'/lib/private/Repair/RemoveBrokenProperties.php',  | 
                                                        |
| 1917 | + 'OC\\Repair\\RemoveLinkShares' => $baseDir.'/lib/private/Repair/RemoveLinkShares.php',  | 
                                                        |
| 1918 | + 'OC\\Repair\\RepairDavShares' => $baseDir.'/lib/private/Repair/RepairDavShares.php',  | 
                                                        |
| 1919 | + 'OC\\Repair\\RepairInvalidShares' => $baseDir.'/lib/private/Repair/RepairInvalidShares.php',  | 
                                                        |
| 1920 | + 'OC\\Repair\\RepairLogoDimension' => $baseDir.'/lib/private/Repair/RepairLogoDimension.php',  | 
                                                        |
| 1921 | + 'OC\\Repair\\RepairMimeTypes' => $baseDir.'/lib/private/Repair/RepairMimeTypes.php',  | 
                                                        |
| 1922 | + 'OC\\RichObjectStrings\\RichTextFormatter' => $baseDir.'/lib/private/RichObjectStrings/RichTextFormatter.php',  | 
                                                        |
| 1923 | + 'OC\\RichObjectStrings\\Validator' => $baseDir.'/lib/private/RichObjectStrings/Validator.php',  | 
                                                        |
| 1924 | + 'OC\\Route\\CachingRouter' => $baseDir.'/lib/private/Route/CachingRouter.php',  | 
                                                        |
| 1925 | + 'OC\\Route\\Route' => $baseDir.'/lib/private/Route/Route.php',  | 
                                                        |
| 1926 | + 'OC\\Route\\Router' => $baseDir.'/lib/private/Route/Router.php',  | 
                                                        |
| 1927 | + 'OC\\Search\\FilterCollection' => $baseDir.'/lib/private/Search/FilterCollection.php',  | 
                                                        |
| 1928 | + 'OC\\Search\\FilterFactory' => $baseDir.'/lib/private/Search/FilterFactory.php',  | 
                                                        |
| 1929 | + 'OC\\Search\\Filter\\BooleanFilter' => $baseDir.'/lib/private/Search/Filter/BooleanFilter.php',  | 
                                                        |
| 1930 | + 'OC\\Search\\Filter\\DateTimeFilter' => $baseDir.'/lib/private/Search/Filter/DateTimeFilter.php',  | 
                                                        |
| 1931 | + 'OC\\Search\\Filter\\FloatFilter' => $baseDir.'/lib/private/Search/Filter/FloatFilter.php',  | 
                                                        |
| 1932 | + 'OC\\Search\\Filter\\GroupFilter' => $baseDir.'/lib/private/Search/Filter/GroupFilter.php',  | 
                                                        |
| 1933 | + 'OC\\Search\\Filter\\IntegerFilter' => $baseDir.'/lib/private/Search/Filter/IntegerFilter.php',  | 
                                                        |
| 1934 | + 'OC\\Search\\Filter\\StringFilter' => $baseDir.'/lib/private/Search/Filter/StringFilter.php',  | 
                                                        |
| 1935 | + 'OC\\Search\\Filter\\StringsFilter' => $baseDir.'/lib/private/Search/Filter/StringsFilter.php',  | 
                                                        |
| 1936 | + 'OC\\Search\\Filter\\UserFilter' => $baseDir.'/lib/private/Search/Filter/UserFilter.php',  | 
                                                        |
| 1937 | + 'OC\\Search\\SearchComposer' => $baseDir.'/lib/private/Search/SearchComposer.php',  | 
                                                        |
| 1938 | + 'OC\\Search\\SearchQuery' => $baseDir.'/lib/private/Search/SearchQuery.php',  | 
                                                        |
| 1939 | + 'OC\\Search\\UnsupportedFilter' => $baseDir.'/lib/private/Search/UnsupportedFilter.php',  | 
                                                        |
| 1940 | + 'OC\\Security\\Bruteforce\\Backend\\DatabaseBackend' => $baseDir.'/lib/private/Security/Bruteforce/Backend/DatabaseBackend.php',  | 
                                                        |
| 1941 | + 'OC\\Security\\Bruteforce\\Backend\\IBackend' => $baseDir.'/lib/private/Security/Bruteforce/Backend/IBackend.php',  | 
                                                        |
| 1942 | + 'OC\\Security\\Bruteforce\\Backend\\MemoryCacheBackend' => $baseDir.'/lib/private/Security/Bruteforce/Backend/MemoryCacheBackend.php',  | 
                                                        |
| 1943 | + 'OC\\Security\\Bruteforce\\Capabilities' => $baseDir.'/lib/private/Security/Bruteforce/Capabilities.php',  | 
                                                        |
| 1944 | + 'OC\\Security\\Bruteforce\\CleanupJob' => $baseDir.'/lib/private/Security/Bruteforce/CleanupJob.php',  | 
                                                        |
| 1945 | + 'OC\\Security\\Bruteforce\\Throttler' => $baseDir.'/lib/private/Security/Bruteforce/Throttler.php',  | 
                                                        |
| 1946 | + 'OC\\Security\\CSP\\ContentSecurityPolicy' => $baseDir.'/lib/private/Security/CSP/ContentSecurityPolicy.php',  | 
                                                        |
| 1947 | + 'OC\\Security\\CSP\\ContentSecurityPolicyManager' => $baseDir.'/lib/private/Security/CSP/ContentSecurityPolicyManager.php',  | 
                                                        |
| 1948 | + 'OC\\Security\\CSP\\ContentSecurityPolicyNonceManager' => $baseDir.'/lib/private/Security/CSP/ContentSecurityPolicyNonceManager.php',  | 
                                                        |
| 1949 | + 'OC\\Security\\CSRF\\CsrfToken' => $baseDir.'/lib/private/Security/CSRF/CsrfToken.php',  | 
                                                        |
| 1950 | + 'OC\\Security\\CSRF\\CsrfTokenGenerator' => $baseDir.'/lib/private/Security/CSRF/CsrfTokenGenerator.php',  | 
                                                        |
| 1951 | + 'OC\\Security\\CSRF\\CsrfTokenManager' => $baseDir.'/lib/private/Security/CSRF/CsrfTokenManager.php',  | 
                                                        |
| 1952 | + 'OC\\Security\\CSRF\\TokenStorage\\SessionStorage' => $baseDir.'/lib/private/Security/CSRF/TokenStorage/SessionStorage.php',  | 
                                                        |
| 1953 | + 'OC\\Security\\Certificate' => $baseDir.'/lib/private/Security/Certificate.php',  | 
                                                        |
| 1954 | + 'OC\\Security\\CertificateManager' => $baseDir.'/lib/private/Security/CertificateManager.php',  | 
                                                        |
| 1955 | + 'OC\\Security\\CredentialsManager' => $baseDir.'/lib/private/Security/CredentialsManager.php',  | 
                                                        |
| 1956 | + 'OC\\Security\\Crypto' => $baseDir.'/lib/private/Security/Crypto.php',  | 
                                                        |
| 1957 | + 'OC\\Security\\FeaturePolicy\\FeaturePolicy' => $baseDir.'/lib/private/Security/FeaturePolicy/FeaturePolicy.php',  | 
                                                        |
| 1958 | + 'OC\\Security\\FeaturePolicy\\FeaturePolicyManager' => $baseDir.'/lib/private/Security/FeaturePolicy/FeaturePolicyManager.php',  | 
                                                        |
| 1959 | + 'OC\\Security\\Hasher' => $baseDir.'/lib/private/Security/Hasher.php',  | 
                                                        |
| 1960 | + 'OC\\Security\\IdentityProof\\Key' => $baseDir.'/lib/private/Security/IdentityProof/Key.php',  | 
                                                        |
| 1961 | + 'OC\\Security\\IdentityProof\\Manager' => $baseDir.'/lib/private/Security/IdentityProof/Manager.php',  | 
                                                        |
| 1962 | + 'OC\\Security\\IdentityProof\\Signer' => $baseDir.'/lib/private/Security/IdentityProof/Signer.php',  | 
                                                        |
| 1963 | + 'OC\\Security\\Ip\\Address' => $baseDir.'/lib/private/Security/Ip/Address.php',  | 
                                                        |
| 1964 | + 'OC\\Security\\Ip\\BruteforceAllowList' => $baseDir.'/lib/private/Security/Ip/BruteforceAllowList.php',  | 
                                                        |
| 1965 | + 'OC\\Security\\Ip\\Factory' => $baseDir.'/lib/private/Security/Ip/Factory.php',  | 
                                                        |
| 1966 | + 'OC\\Security\\Ip\\Range' => $baseDir.'/lib/private/Security/Ip/Range.php',  | 
                                                        |
| 1967 | + 'OC\\Security\\Ip\\RemoteAddress' => $baseDir.'/lib/private/Security/Ip/RemoteAddress.php',  | 
                                                        |
| 1968 | + 'OC\\Security\\Normalizer\\IpAddress' => $baseDir.'/lib/private/Security/Normalizer/IpAddress.php',  | 
                                                        |
| 1969 | + 'OC\\Security\\RateLimiting\\Backend\\DatabaseBackend' => $baseDir.'/lib/private/Security/RateLimiting/Backend/DatabaseBackend.php',  | 
                                                        |
| 1970 | + 'OC\\Security\\RateLimiting\\Backend\\IBackend' => $baseDir.'/lib/private/Security/RateLimiting/Backend/IBackend.php',  | 
                                                        |
| 1971 | + 'OC\\Security\\RateLimiting\\Backend\\MemoryCacheBackend' => $baseDir.'/lib/private/Security/RateLimiting/Backend/MemoryCacheBackend.php',  | 
                                                        |
| 1972 | + 'OC\\Security\\RateLimiting\\Exception\\RateLimitExceededException' => $baseDir.'/lib/private/Security/RateLimiting/Exception/RateLimitExceededException.php',  | 
                                                        |
| 1973 | + 'OC\\Security\\RateLimiting\\Limiter' => $baseDir.'/lib/private/Security/RateLimiting/Limiter.php',  | 
                                                        |
| 1974 | + 'OC\\Security\\RemoteHostValidator' => $baseDir.'/lib/private/Security/RemoteHostValidator.php',  | 
                                                        |
| 1975 | + 'OC\\Security\\SecureRandom' => $baseDir.'/lib/private/Security/SecureRandom.php',  | 
                                                        |
| 1976 | + 'OC\\Security\\Signature\\Db\\SignatoryMapper' => $baseDir.'/lib/private/Security/Signature/Db/SignatoryMapper.php',  | 
                                                        |
| 1977 | + 'OC\\Security\\Signature\\Model\\IncomingSignedRequest' => $baseDir.'/lib/private/Security/Signature/Model/IncomingSignedRequest.php',  | 
                                                        |
| 1978 | + 'OC\\Security\\Signature\\Model\\OutgoingSignedRequest' => $baseDir.'/lib/private/Security/Signature/Model/OutgoingSignedRequest.php',  | 
                                                        |
| 1979 | + 'OC\\Security\\Signature\\Model\\SignedRequest' => $baseDir.'/lib/private/Security/Signature/Model/SignedRequest.php',  | 
                                                        |
| 1980 | + 'OC\\Security\\Signature\\SignatureManager' => $baseDir.'/lib/private/Security/Signature/SignatureManager.php',  | 
                                                        |
| 1981 | + 'OC\\Security\\TrustedDomainHelper' => $baseDir.'/lib/private/Security/TrustedDomainHelper.php',  | 
                                                        |
| 1982 | + 'OC\\Security\\VerificationToken\\CleanUpJob' => $baseDir.'/lib/private/Security/VerificationToken/CleanUpJob.php',  | 
                                                        |
| 1983 | + 'OC\\Security\\VerificationToken\\VerificationToken' => $baseDir.'/lib/private/Security/VerificationToken/VerificationToken.php',  | 
                                                        |
| 1984 | + 'OC\\Server' => $baseDir.'/lib/private/Server.php',  | 
                                                        |
| 1985 | + 'OC\\ServerContainer' => $baseDir.'/lib/private/ServerContainer.php',  | 
                                                        |
| 1986 | + 'OC\\ServerNotAvailableException' => $baseDir.'/lib/private/ServerNotAvailableException.php',  | 
                                                        |
| 1987 | + 'OC\\ServiceUnavailableException' => $baseDir.'/lib/private/ServiceUnavailableException.php',  | 
                                                        |
| 1988 | + 'OC\\Session\\CryptoSessionData' => $baseDir.'/lib/private/Session/CryptoSessionData.php',  | 
                                                        |
| 1989 | + 'OC\\Session\\CryptoWrapper' => $baseDir.'/lib/private/Session/CryptoWrapper.php',  | 
                                                        |
| 1990 | + 'OC\\Session\\Internal' => $baseDir.'/lib/private/Session/Internal.php',  | 
                                                        |
| 1991 | + 'OC\\Session\\Memory' => $baseDir.'/lib/private/Session/Memory.php',  | 
                                                        |
| 1992 | + 'OC\\Session\\Session' => $baseDir.'/lib/private/Session/Session.php',  | 
                                                        |
| 1993 | + 'OC\\Settings\\AuthorizedGroup' => $baseDir.'/lib/private/Settings/AuthorizedGroup.php',  | 
                                                        |
| 1994 | + 'OC\\Settings\\AuthorizedGroupMapper' => $baseDir.'/lib/private/Settings/AuthorizedGroupMapper.php',  | 
                                                        |
| 1995 | + 'OC\\Settings\\DeclarativeManager' => $baseDir.'/lib/private/Settings/DeclarativeManager.php',  | 
                                                        |
| 1996 | + 'OC\\Settings\\Manager' => $baseDir.'/lib/private/Settings/Manager.php',  | 
                                                        |
| 1997 | + 'OC\\Settings\\Section' => $baseDir.'/lib/private/Settings/Section.php',  | 
                                                        |
| 1998 | + 'OC\\Setup' => $baseDir.'/lib/private/Setup.php',  | 
                                                        |
| 1999 | + 'OC\\SetupCheck\\SetupCheckManager' => $baseDir.'/lib/private/SetupCheck/SetupCheckManager.php',  | 
                                                        |
| 2000 | + 'OC\\Setup\\AbstractDatabase' => $baseDir.'/lib/private/Setup/AbstractDatabase.php',  | 
                                                        |
| 2001 | + 'OC\\Setup\\MySQL' => $baseDir.'/lib/private/Setup/MySQL.php',  | 
                                                        |
| 2002 | + 'OC\\Setup\\OCI' => $baseDir.'/lib/private/Setup/OCI.php',  | 
                                                        |
| 2003 | + 'OC\\Setup\\PostgreSQL' => $baseDir.'/lib/private/Setup/PostgreSQL.php',  | 
                                                        |
| 2004 | + 'OC\\Setup\\Sqlite' => $baseDir.'/lib/private/Setup/Sqlite.php',  | 
                                                        |
| 2005 | + 'OC\\Share20\\DefaultShareProvider' => $baseDir.'/lib/private/Share20/DefaultShareProvider.php',  | 
                                                        |
| 2006 | + 'OC\\Share20\\Exception\\BackendError' => $baseDir.'/lib/private/Share20/Exception/BackendError.php',  | 
                                                        |
| 2007 | + 'OC\\Share20\\Exception\\InvalidShare' => $baseDir.'/lib/private/Share20/Exception/InvalidShare.php',  | 
                                                        |
| 2008 | + 'OC\\Share20\\Exception\\ProviderException' => $baseDir.'/lib/private/Share20/Exception/ProviderException.php',  | 
                                                        |
| 2009 | + 'OC\\Share20\\GroupDeletedListener' => $baseDir.'/lib/private/Share20/GroupDeletedListener.php',  | 
                                                        |
| 2010 | + 'OC\\Share20\\LegacyHooks' => $baseDir.'/lib/private/Share20/LegacyHooks.php',  | 
                                                        |
| 2011 | + 'OC\\Share20\\Manager' => $baseDir.'/lib/private/Share20/Manager.php',  | 
                                                        |
| 2012 | + 'OC\\Share20\\ProviderFactory' => $baseDir.'/lib/private/Share20/ProviderFactory.php',  | 
                                                        |
| 2013 | + 'OC\\Share20\\PublicShareTemplateFactory' => $baseDir.'/lib/private/Share20/PublicShareTemplateFactory.php',  | 
                                                        |
| 2014 | + 'OC\\Share20\\Share' => $baseDir.'/lib/private/Share20/Share.php',  | 
                                                        |
| 2015 | + 'OC\\Share20\\ShareAttributes' => $baseDir.'/lib/private/Share20/ShareAttributes.php',  | 
                                                        |
| 2016 | + 'OC\\Share20\\ShareDisableChecker' => $baseDir.'/lib/private/Share20/ShareDisableChecker.php',  | 
                                                        |
| 2017 | + 'OC\\Share20\\ShareHelper' => $baseDir.'/lib/private/Share20/ShareHelper.php',  | 
                                                        |
| 2018 | + 'OC\\Share20\\UserDeletedListener' => $baseDir.'/lib/private/Share20/UserDeletedListener.php',  | 
                                                        |
| 2019 | + 'OC\\Share20\\UserRemovedListener' => $baseDir.'/lib/private/Share20/UserRemovedListener.php',  | 
                                                        |
| 2020 | + 'OC\\Share\\Constants' => $baseDir.'/lib/private/Share/Constants.php',  | 
                                                        |
| 2021 | + 'OC\\Share\\Helper' => $baseDir.'/lib/private/Share/Helper.php',  | 
                                                        |
| 2022 | + 'OC\\Share\\Share' => $baseDir.'/lib/private/Share/Share.php',  | 
                                                        |
| 2023 | + 'OC\\SpeechToText\\SpeechToTextManager' => $baseDir.'/lib/private/SpeechToText/SpeechToTextManager.php',  | 
                                                        |
| 2024 | + 'OC\\SpeechToText\\TranscriptionJob' => $baseDir.'/lib/private/SpeechToText/TranscriptionJob.php',  | 
                                                        |
| 2025 | + 'OC\\StreamImage' => $baseDir.'/lib/private/StreamImage.php',  | 
                                                        |
| 2026 | + 'OC\\Streamer' => $baseDir.'/lib/private/Streamer.php',  | 
                                                        |
| 2027 | + 'OC\\SubAdmin' => $baseDir.'/lib/private/SubAdmin.php',  | 
                                                        |
| 2028 | + 'OC\\Support\\CrashReport\\Registry' => $baseDir.'/lib/private/Support/CrashReport/Registry.php',  | 
                                                        |
| 2029 | + 'OC\\Support\\Subscription\\Assertion' => $baseDir.'/lib/private/Support/Subscription/Assertion.php',  | 
                                                        |
| 2030 | + 'OC\\Support\\Subscription\\Registry' => $baseDir.'/lib/private/Support/Subscription/Registry.php',  | 
                                                        |
| 2031 | + 'OC\\SystemConfig' => $baseDir.'/lib/private/SystemConfig.php',  | 
                                                        |
| 2032 | + 'OC\\SystemTag\\ManagerFactory' => $baseDir.'/lib/private/SystemTag/ManagerFactory.php',  | 
                                                        |
| 2033 | + 'OC\\SystemTag\\SystemTag' => $baseDir.'/lib/private/SystemTag/SystemTag.php',  | 
                                                        |
| 2034 | + 'OC\\SystemTag\\SystemTagManager' => $baseDir.'/lib/private/SystemTag/SystemTagManager.php',  | 
                                                        |
| 2035 | + 'OC\\SystemTag\\SystemTagObjectMapper' => $baseDir.'/lib/private/SystemTag/SystemTagObjectMapper.php',  | 
                                                        |
| 2036 | + 'OC\\SystemTag\\SystemTagsInFilesDetector' => $baseDir.'/lib/private/SystemTag/SystemTagsInFilesDetector.php',  | 
                                                        |
| 2037 | + 'OC\\TagManager' => $baseDir.'/lib/private/TagManager.php',  | 
                                                        |
| 2038 | + 'OC\\Tagging\\Tag' => $baseDir.'/lib/private/Tagging/Tag.php',  | 
                                                        |
| 2039 | + 'OC\\Tagging\\TagMapper' => $baseDir.'/lib/private/Tagging/TagMapper.php',  | 
                                                        |
| 2040 | + 'OC\\Tags' => $baseDir.'/lib/private/Tags.php',  | 
                                                        |
| 2041 | + 'OC\\Talk\\Broker' => $baseDir.'/lib/private/Talk/Broker.php',  | 
                                                        |
| 2042 | + 'OC\\Talk\\ConversationOptions' => $baseDir.'/lib/private/Talk/ConversationOptions.php',  | 
                                                        |
| 2043 | + 'OC\\TaskProcessing\\Db\\Task' => $baseDir.'/lib/private/TaskProcessing/Db/Task.php',  | 
                                                        |
| 2044 | + 'OC\\TaskProcessing\\Db\\TaskMapper' => $baseDir.'/lib/private/TaskProcessing/Db/TaskMapper.php',  | 
                                                        |
| 2045 | + 'OC\\TaskProcessing\\Manager' => $baseDir.'/lib/private/TaskProcessing/Manager.php',  | 
                                                        |
| 2046 | + 'OC\\TaskProcessing\\RemoveOldTasksBackgroundJob' => $baseDir.'/lib/private/TaskProcessing/RemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 2047 | + 'OC\\TaskProcessing\\SynchronousBackgroundJob' => $baseDir.'/lib/private/TaskProcessing/SynchronousBackgroundJob.php',  | 
                                                        |
| 2048 | + 'OC\\Teams\\TeamManager' => $baseDir.'/lib/private/Teams/TeamManager.php',  | 
                                                        |
| 2049 | + 'OC\\TempManager' => $baseDir.'/lib/private/TempManager.php',  | 
                                                        |
| 2050 | + 'OC\\TemplateLayout' => $baseDir.'/lib/private/TemplateLayout.php',  | 
                                                        |
| 2051 | + 'OC\\Template\\Base' => $baseDir.'/lib/private/Template/Base.php',  | 
                                                        |
| 2052 | + 'OC\\Template\\CSSResourceLocator' => $baseDir.'/lib/private/Template/CSSResourceLocator.php',  | 
                                                        |
| 2053 | + 'OC\\Template\\JSCombiner' => $baseDir.'/lib/private/Template/JSCombiner.php',  | 
                                                        |
| 2054 | + 'OC\\Template\\JSConfigHelper' => $baseDir.'/lib/private/Template/JSConfigHelper.php',  | 
                                                        |
| 2055 | + 'OC\\Template\\JSResourceLocator' => $baseDir.'/lib/private/Template/JSResourceLocator.php',  | 
                                                        |
| 2056 | + 'OC\\Template\\ResourceLocator' => $baseDir.'/lib/private/Template/ResourceLocator.php',  | 
                                                        |
| 2057 | + 'OC\\Template\\ResourceNotFoundException' => $baseDir.'/lib/private/Template/ResourceNotFoundException.php',  | 
                                                        |
| 2058 | + 'OC\\Template\\Template' => $baseDir.'/lib/private/Template/Template.php',  | 
                                                        |
| 2059 | + 'OC\\Template\\TemplateFileLocator' => $baseDir.'/lib/private/Template/TemplateFileLocator.php',  | 
                                                        |
| 2060 | + 'OC\\Template\\TemplateManager' => $baseDir.'/lib/private/Template/TemplateManager.php',  | 
                                                        |
| 2061 | + 'OC\\TextProcessing\\Db\\Task' => $baseDir.'/lib/private/TextProcessing/Db/Task.php',  | 
                                                        |
| 2062 | + 'OC\\TextProcessing\\Db\\TaskMapper' => $baseDir.'/lib/private/TextProcessing/Db/TaskMapper.php',  | 
                                                        |
| 2063 | + 'OC\\TextProcessing\\Manager' => $baseDir.'/lib/private/TextProcessing/Manager.php',  | 
                                                        |
| 2064 | + 'OC\\TextProcessing\\RemoveOldTasksBackgroundJob' => $baseDir.'/lib/private/TextProcessing/RemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 2065 | + 'OC\\TextProcessing\\TaskBackgroundJob' => $baseDir.'/lib/private/TextProcessing/TaskBackgroundJob.php',  | 
                                                        |
| 2066 | + 'OC\\TextToImage\\Db\\Task' => $baseDir.'/lib/private/TextToImage/Db/Task.php',  | 
                                                        |
| 2067 | + 'OC\\TextToImage\\Db\\TaskMapper' => $baseDir.'/lib/private/TextToImage/Db/TaskMapper.php',  | 
                                                        |
| 2068 | + 'OC\\TextToImage\\Manager' => $baseDir.'/lib/private/TextToImage/Manager.php',  | 
                                                        |
| 2069 | + 'OC\\TextToImage\\RemoveOldTasksBackgroundJob' => $baseDir.'/lib/private/TextToImage/RemoveOldTasksBackgroundJob.php',  | 
                                                        |
| 2070 | + 'OC\\TextToImage\\TaskBackgroundJob' => $baseDir.'/lib/private/TextToImage/TaskBackgroundJob.php',  | 
                                                        |
| 2071 | + 'OC\\Translation\\TranslationManager' => $baseDir.'/lib/private/Translation/TranslationManager.php',  | 
                                                        |
| 2072 | + 'OC\\URLGenerator' => $baseDir.'/lib/private/URLGenerator.php',  | 
                                                        |
| 2073 | + 'OC\\Updater' => $baseDir.'/lib/private/Updater.php',  | 
                                                        |
| 2074 | + 'OC\\Updater\\Changes' => $baseDir.'/lib/private/Updater/Changes.php',  | 
                                                        |
| 2075 | + 'OC\\Updater\\ChangesCheck' => $baseDir.'/lib/private/Updater/ChangesCheck.php',  | 
                                                        |
| 2076 | + 'OC\\Updater\\ChangesMapper' => $baseDir.'/lib/private/Updater/ChangesMapper.php',  | 
                                                        |
| 2077 | + 'OC\\Updater\\Exceptions\\ReleaseMetadataException' => $baseDir.'/lib/private/Updater/Exceptions/ReleaseMetadataException.php',  | 
                                                        |
| 2078 | + 'OC\\Updater\\ReleaseMetadata' => $baseDir.'/lib/private/Updater/ReleaseMetadata.php',  | 
                                                        |
| 2079 | + 'OC\\Updater\\VersionCheck' => $baseDir.'/lib/private/Updater/VersionCheck.php',  | 
                                                        |
| 2080 | + 'OC\\UserStatus\\ISettableProvider' => $baseDir.'/lib/private/UserStatus/ISettableProvider.php',  | 
                                                        |
| 2081 | + 'OC\\UserStatus\\Manager' => $baseDir.'/lib/private/UserStatus/Manager.php',  | 
                                                        |
| 2082 | + 'OC\\User\\AvailabilityCoordinator' => $baseDir.'/lib/private/User/AvailabilityCoordinator.php',  | 
                                                        |
| 2083 | + 'OC\\User\\Backend' => $baseDir.'/lib/private/User/Backend.php',  | 
                                                        |
| 2084 | + 'OC\\User\\BackgroundJobs\\CleanupDeletedUsers' => $baseDir.'/lib/private/User/BackgroundJobs/CleanupDeletedUsers.php',  | 
                                                        |
| 2085 | + 'OC\\User\\Database' => $baseDir.'/lib/private/User/Database.php',  | 
                                                        |
| 2086 | + 'OC\\User\\DisplayNameCache' => $baseDir.'/lib/private/User/DisplayNameCache.php',  | 
                                                        |
| 2087 | + 'OC\\User\\LazyUser' => $baseDir.'/lib/private/User/LazyUser.php',  | 
                                                        |
| 2088 | + 'OC\\User\\Listeners\\BeforeUserDeletedListener' => $baseDir.'/lib/private/User/Listeners/BeforeUserDeletedListener.php',  | 
                                                        |
| 2089 | + 'OC\\User\\Listeners\\UserChangedListener' => $baseDir.'/lib/private/User/Listeners/UserChangedListener.php',  | 
                                                        |
| 2090 | + 'OC\\User\\LoginException' => $baseDir.'/lib/private/User/LoginException.php',  | 
                                                        |
| 2091 | + 'OC\\User\\Manager' => $baseDir.'/lib/private/User/Manager.php',  | 
                                                        |
| 2092 | + 'OC\\User\\NoUserException' => $baseDir.'/lib/private/User/NoUserException.php',  | 
                                                        |
| 2093 | + 'OC\\User\\OutOfOfficeData' => $baseDir.'/lib/private/User/OutOfOfficeData.php',  | 
                                                        |
| 2094 | + 'OC\\User\\PartiallyDeletedUsersBackend' => $baseDir.'/lib/private/User/PartiallyDeletedUsersBackend.php',  | 
                                                        |
| 2095 | + 'OC\\User\\Session' => $baseDir.'/lib/private/User/Session.php',  | 
                                                        |
| 2096 | + 'OC\\User\\User' => $baseDir.'/lib/private/User/User.php',  | 
                                                        |
| 2097 | + 'OC_App' => $baseDir.'/lib/private/legacy/OC_App.php',  | 
                                                        |
| 2098 | + 'OC_Defaults' => $baseDir.'/lib/private/legacy/OC_Defaults.php',  | 
                                                        |
| 2099 | + 'OC_Helper' => $baseDir.'/lib/private/legacy/OC_Helper.php',  | 
                                                        |
| 2100 | + 'OC_Hook' => $baseDir.'/lib/private/legacy/OC_Hook.php',  | 
                                                        |
| 2101 | + 'OC_JSON' => $baseDir.'/lib/private/legacy/OC_JSON.php',  | 
                                                        |
| 2102 | + 'OC_Response' => $baseDir.'/lib/private/legacy/OC_Response.php',  | 
                                                        |
| 2103 | + 'OC_Template' => $baseDir.'/lib/private/legacy/OC_Template.php',  | 
                                                        |
| 2104 | + 'OC_User' => $baseDir.'/lib/private/legacy/OC_User.php',  | 
                                                        |
| 2105 | + 'OC_Util' => $baseDir.'/lib/private/legacy/OC_Util.php',  | 
                                                        |
| 2106 | 2106 | );  | 
                                                        
@@ -15,289 +15,289 @@  | 
                                                    ||
| 15 | 15 | * @since 8.0.0  | 
                                                        
| 16 | 16 | */  | 
                                                        
| 17 | 17 |  interface IUser { | 
                                                        
| 18 | - /**  | 
                                                        |
| 19 | - * get the user id  | 
                                                        |
| 20 | - *  | 
                                                        |
| 21 | - * @return string  | 
                                                        |
| 22 | - * @since 8.0.0  | 
                                                        |
| 23 | - */  | 
                                                        |
| 24 | - public function getUID();  | 
                                                        |
| 25 | -  | 
                                                        |
| 26 | - /**  | 
                                                        |
| 27 | - * get the display name for the user, if no specific display name is set it will fallback to the user id  | 
                                                        |
| 28 | - *  | 
                                                        |
| 29 | - * @return string  | 
                                                        |
| 30 | - * @since 8.0.0  | 
                                                        |
| 31 | - */  | 
                                                        |
| 32 | - public function getDisplayName();  | 
                                                        |
| 33 | -  | 
                                                        |
| 34 | - /**  | 
                                                        |
| 35 | - * set the display name for the user  | 
                                                        |
| 36 | - *  | 
                                                        |
| 37 | - * @param string $displayName  | 
                                                        |
| 38 | - * @return bool  | 
                                                        |
| 39 | - * @since 8.0.0  | 
                                                        |
| 40 | - *  | 
                                                        |
| 41 | - * @since 25.0.0 Throw InvalidArgumentException  | 
                                                        |
| 42 | - * @throws \InvalidArgumentException  | 
                                                        |
| 43 | - */  | 
                                                        |
| 44 | - public function setDisplayName($displayName);  | 
                                                        |
| 45 | -  | 
                                                        |
| 46 | - /**  | 
                                                        |
| 47 | - * returns the timestamp of the user's last login or 0 if the user did never  | 
                                                        |
| 48 | - * login  | 
                                                        |
| 49 | - *  | 
                                                        |
| 50 | - * @return int  | 
                                                        |
| 51 | - * @since 8.0.0  | 
                                                        |
| 52 | - */  | 
                                                        |
| 53 | - public function getLastLogin(): int;  | 
                                                        |
| 54 | -  | 
                                                        |
| 55 | - /**  | 
                                                        |
| 56 | - * Returns the timestamp of the user's first login, 0 if the user did never login, or -1 if the data is unknown (first login was on an older version)  | 
                                                        |
| 57 | - *  | 
                                                        |
| 58 | - * @since 31.0.0  | 
                                                        |
| 59 | - */  | 
                                                        |
| 60 | - public function getFirstLogin(): int;  | 
                                                        |
| 61 | -  | 
                                                        |
| 62 | - /**  | 
                                                        |
| 63 | - * Updates the timestamp of the most recent login of this user (and first login if needed)  | 
                                                        |
| 64 | - *  | 
                                                        |
| 65 | - * @return bool whether this is the first login  | 
                                                        |
| 66 | - * @since 8.0.0  | 
                                                        |
| 67 | - */  | 
                                                        |
| 68 | - public function updateLastLoginTimestamp(): bool;  | 
                                                        |
| 69 | -  | 
                                                        |
| 70 | - /**  | 
                                                        |
| 71 | - * Delete the user  | 
                                                        |
| 72 | - *  | 
                                                        |
| 73 | - * @return bool  | 
                                                        |
| 74 | - * @since 8.0.0  | 
                                                        |
| 75 | - */  | 
                                                        |
| 76 | - public function delete();  | 
                                                        |
| 77 | -  | 
                                                        |
| 78 | - /**  | 
                                                        |
| 79 | - * Set the password of the user  | 
                                                        |
| 80 | - *  | 
                                                        |
| 81 | - * @param string $password  | 
                                                        |
| 82 | - * @param string $recoveryPassword for the encryption app to reset encryption keys  | 
                                                        |
| 83 | - * @return bool  | 
                                                        |
| 84 | - * @since 8.0.0  | 
                                                        |
| 85 | - */  | 
                                                        |
| 86 | - public function setPassword($password, $recoveryPassword = null);  | 
                                                        |
| 87 | -  | 
                                                        |
| 88 | - /**  | 
                                                        |
| 89 | - * Get the password hash of the user  | 
                                                        |
| 90 | - *  | 
                                                        |
| 91 | - * @return ?string the password hash hashed by `\OCP\Security\IHasher::hash()`  | 
                                                        |
| 92 | - * @since 30.0.0  | 
                                                        |
| 93 | - */  | 
                                                        |
| 94 | - public function getPasswordHash(): ?string;  | 
                                                        |
| 95 | -  | 
                                                        |
| 96 | - /**  | 
                                                        |
| 97 | - * Set the password hash of the user  | 
                                                        |
| 98 | - *  | 
                                                        |
| 99 | - * @param string $passwordHash the password hash hashed by `\OCP\Security\IHasher::hash()`  | 
                                                        |
| 100 | - * @throws InvalidArgumentException when `$passwordHash` is not a valid hash  | 
                                                        |
| 101 | - * @since 30.0.0  | 
                                                        |
| 102 | - */  | 
                                                        |
| 103 | - public function setPasswordHash(string $passwordHash): bool;  | 
                                                        |
| 104 | -  | 
                                                        |
| 105 | - /**  | 
                                                        |
| 106 | - * get the users home folder to mount  | 
                                                        |
| 107 | - *  | 
                                                        |
| 108 | - * @return string  | 
                                                        |
| 109 | - * @since 8.0.0  | 
                                                        |
| 110 | - */  | 
                                                        |
| 111 | - public function getHome();  | 
                                                        |
| 112 | -  | 
                                                        |
| 113 | - /**  | 
                                                        |
| 114 | - * Get the name of the backend class the user is connected with  | 
                                                        |
| 115 | - *  | 
                                                        |
| 116 | - * @return string  | 
                                                        |
| 117 | - * @since 8.0.0  | 
                                                        |
| 118 | - */  | 
                                                        |
| 119 | - public function getBackendClassName();  | 
                                                        |
| 120 | -  | 
                                                        |
| 121 | - /**  | 
                                                        |
| 122 | - * Get the backend for the current user object  | 
                                                        |
| 123 | - * @return ?UserInterface  | 
                                                        |
| 124 | - * @since 15.0.0  | 
                                                        |
| 125 | - */  | 
                                                        |
| 126 | - public function getBackend();  | 
                                                        |
| 127 | -  | 
                                                        |
| 128 | - /**  | 
                                                        |
| 129 | - * check if the backend allows the user to change their avatar on Personal page  | 
                                                        |
| 130 | - *  | 
                                                        |
| 131 | - * @return bool  | 
                                                        |
| 132 | - * @since 8.0.0  | 
                                                        |
| 133 | - */  | 
                                                        |
| 134 | - public function canChangeAvatar();  | 
                                                        |
| 135 | -  | 
                                                        |
| 136 | - /**  | 
                                                        |
| 137 | - * check if the backend supports changing passwords  | 
                                                        |
| 138 | - *  | 
                                                        |
| 139 | - * @return bool  | 
                                                        |
| 140 | - * @since 8.0.0  | 
                                                        |
| 141 | - */  | 
                                                        |
| 142 | - public function canChangePassword();  | 
                                                        |
| 143 | -  | 
                                                        |
| 144 | - /**  | 
                                                        |
| 145 | - * check if the backend supports changing display names  | 
                                                        |
| 146 | - *  | 
                                                        |
| 147 | - * @return bool  | 
                                                        |
| 148 | - * @since 8.0.0  | 
                                                        |
| 149 | - */  | 
                                                        |
| 150 | - public function canChangeDisplayName();  | 
                                                        |
| 151 | -  | 
                                                        |
| 152 | - /**  | 
                                                        |
| 153 | - * Check if the backend supports changing email  | 
                                                        |
| 154 | - *  | 
                                                        |
| 155 | - * @since 32.0.0  | 
                                                        |
| 156 | - */  | 
                                                        |
| 157 | - public function canChangeEmail(): bool;  | 
                                                        |
| 158 | -  | 
                                                        |
| 159 | - /**  | 
                                                        |
| 160 | - * check if the user is enabled  | 
                                                        |
| 161 | - *  | 
                                                        |
| 162 | - * @return bool  | 
                                                        |
| 163 | - * @since 8.0.0  | 
                                                        |
| 164 | - */  | 
                                                        |
| 165 | - public function isEnabled();  | 
                                                        |
| 166 | -  | 
                                                        |
| 167 | - /**  | 
                                                        |
| 168 | - * set the enabled status for the user  | 
                                                        |
| 169 | - *  | 
                                                        |
| 170 | - * @param bool $enabled  | 
                                                        |
| 171 | - * @since 8.0.0  | 
                                                        |
| 172 | - */  | 
                                                        |
| 173 | - public function setEnabled(bool $enabled = true);  | 
                                                        |
| 174 | -  | 
                                                        |
| 175 | - /**  | 
                                                        |
| 176 | - * get the user's email address  | 
                                                        |
| 177 | - *  | 
                                                        |
| 178 | - * @return string|null  | 
                                                        |
| 179 | - * @since 9.0.0  | 
                                                        |
| 180 | - */  | 
                                                        |
| 181 | - public function getEMailAddress();  | 
                                                        |
| 182 | -  | 
                                                        |
| 183 | - /**  | 
                                                        |
| 184 | - * get the user's system email address  | 
                                                        |
| 185 | - *  | 
                                                        |
| 186 | - * The system mail address may be read only and may be set from different  | 
                                                        |
| 187 | - * sources like LDAP, SAML or simply the admin.  | 
                                                        |
| 188 | - *  | 
                                                        |
| 189 | - * Use this getter only when the system address is needed. For picking the  | 
                                                        |
| 190 | - * proper address to e.g. send a mail to, use getEMailAddress().  | 
                                                        |
| 191 | - *  | 
                                                        |
| 192 | - * @return string|null  | 
                                                        |
| 193 | - * @since 23.0.0  | 
                                                        |
| 194 | - */  | 
                                                        |
| 195 | - public function getSystemEMailAddress(): ?string;  | 
                                                        |
| 196 | -  | 
                                                        |
| 197 | - /**  | 
                                                        |
| 198 | - * get the user's preferred email address  | 
                                                        |
| 199 | - *  | 
                                                        |
| 200 | - * The primary mail address may be set be the user to specify a different  | 
                                                        |
| 201 | - * email address where mails by Nextcloud are sent to. It is not necessarily  | 
                                                        |
| 202 | - * set.  | 
                                                        |
| 203 | - *  | 
                                                        |
| 204 | - * Use this getter only when the primary address is needed. For picking the  | 
                                                        |
| 205 | - * proper address to e.g. send a mail to, use getEMailAddress().  | 
                                                        |
| 206 | - *  | 
                                                        |
| 207 | - * @return string|null  | 
                                                        |
| 208 | - * @since 23.0.0  | 
                                                        |
| 209 | - */  | 
                                                        |
| 210 | - public function getPrimaryEMailAddress(): ?string;  | 
                                                        |
| 211 | -  | 
                                                        |
| 212 | - /**  | 
                                                        |
| 213 | - * get the avatar image if it exists  | 
                                                        |
| 214 | - *  | 
                                                        |
| 215 | - * @param int $size  | 
                                                        |
| 216 | - * @return IImage|null  | 
                                                        |
| 217 | - * @since 9.0.0  | 
                                                        |
| 218 | - */  | 
                                                        |
| 219 | - public function getAvatarImage($size);  | 
                                                        |
| 220 | -  | 
                                                        |
| 221 | - /**  | 
                                                        |
| 222 | - * get the federation cloud id  | 
                                                        |
| 223 | - *  | 
                                                        |
| 224 | - * @return string  | 
                                                        |
| 225 | - * @since 9.0.0  | 
                                                        |
| 226 | - */  | 
                                                        |
| 227 | - public function getCloudId();  | 
                                                        |
| 228 | -  | 
                                                        |
| 229 | - /**  | 
                                                        |
| 230 | - * set the email address of the user  | 
                                                        |
| 231 | - *  | 
                                                        |
| 232 | - * It is an alias to setSystemEMailAddress()  | 
                                                        |
| 233 | - *  | 
                                                        |
| 234 | - * @param string|null $mailAddress  | 
                                                        |
| 235 | - * @return void  | 
                                                        |
| 236 | - * @since 9.0.0  | 
                                                        |
| 237 | - * @deprecated 23.0.0 use setSystemEMailAddress() or setPrimaryEMailAddress()  | 
                                                        |
| 238 | - */  | 
                                                        |
| 239 | - public function setEMailAddress($mailAddress);  | 
                                                        |
| 240 | -  | 
                                                        |
| 241 | - /**  | 
                                                        |
| 242 | - * Set the system email address of the user  | 
                                                        |
| 243 | - *  | 
                                                        |
| 244 | - * This is supposed to be used when the email is set from different sources  | 
                                                        |
| 245 | - * (i.e. other user backends, admin).  | 
                                                        |
| 246 | - *  | 
                                                        |
| 247 | - * @since 23.0.0  | 
                                                        |
| 248 | - */  | 
                                                        |
| 249 | - public function setSystemEMailAddress(string $mailAddress): void;  | 
                                                        |
| 250 | -  | 
                                                        |
| 251 | - /**  | 
                                                        |
| 252 | - * Set the primary email address of the user.  | 
                                                        |
| 253 | - *  | 
                                                        |
| 254 | - * This method should be typically called when the user is changing their  | 
                                                        |
| 255 | - * own primary address and is not allowed to change their system email.  | 
                                                        |
| 256 | - *  | 
                                                        |
| 257 | - * The mail address provided here must be already registered as an  | 
                                                        |
| 258 | - * additional mail in the user account and also be verified locally. Also  | 
                                                        |
| 259 | - * an empty string is allowed to delete this preference.  | 
                                                        |
| 260 | - *  | 
                                                        |
| 261 | - * @throws InvalidArgumentException when the provided email address does not  | 
                                                        |
| 262 | - * satisfy constraints.  | 
                                                        |
| 263 | - *  | 
                                                        |
| 264 | - * @since 23.0.0  | 
                                                        |
| 265 | - */  | 
                                                        |
| 266 | - public function setPrimaryEMailAddress(string $mailAddress): void;  | 
                                                        |
| 267 | -  | 
                                                        |
| 268 | - /**  | 
                                                        |
| 269 | - * get the users' quota in human readable form. If a specific quota is not  | 
                                                        |
| 270 | - * set for the user, the default value is returned. If a default setting  | 
                                                        |
| 271 | - * was not set otherwise, it is return as 'none', i.e. quota is not limited.  | 
                                                        |
| 272 | - *  | 
                                                        |
| 273 | - * @return string  | 
                                                        |
| 274 | - * @since 9.0.0  | 
                                                        |
| 275 | - */  | 
                                                        |
| 276 | - public function getQuota();  | 
                                                        |
| 277 | -  | 
                                                        |
| 278 | - /**  | 
                                                        |
| 279 | - * set the users' quota  | 
                                                        |
| 280 | - *  | 
                                                        |
| 281 | - * @param string $quota  | 
                                                        |
| 282 | - * @return void  | 
                                                        |
| 283 | - * @since 9.0.0  | 
                                                        |
| 284 | - */  | 
                                                        |
| 285 | - public function setQuota($quota);  | 
                                                        |
| 286 | -  | 
                                                        |
| 287 | - /**  | 
                                                        |
| 288 | - * Get the user's manager UIDs  | 
                                                        |
| 289 | - *  | 
                                                        |
| 290 | - * @since 27.0.0  | 
                                                        |
| 291 | - * @return string[]  | 
                                                        |
| 292 | - */  | 
                                                        |
| 293 | - public function getManagerUids(): array;  | 
                                                        |
| 294 | -  | 
                                                        |
| 295 | - /**  | 
                                                        |
| 296 | - * Set the user's manager UIDs  | 
                                                        |
| 297 | - *  | 
                                                        |
| 298 | - * @param string[] $uids UIDs of all managers  | 
                                                        |
| 299 | - * @return void  | 
                                                        |
| 300 | - * @since 27.0.0  | 
                                                        |
| 301 | - */  | 
                                                        |
| 302 | - public function setManagerUids(array $uids): void;  | 
                                                        |
| 18 | + /**  | 
                                                        |
| 19 | + * get the user id  | 
                                                        |
| 20 | + *  | 
                                                        |
| 21 | + * @return string  | 
                                                        |
| 22 | + * @since 8.0.0  | 
                                                        |
| 23 | + */  | 
                                                        |
| 24 | + public function getUID();  | 
                                                        |
| 25 | +  | 
                                                        |
| 26 | + /**  | 
                                                        |
| 27 | + * get the display name for the user, if no specific display name is set it will fallback to the user id  | 
                                                        |
| 28 | + *  | 
                                                        |
| 29 | + * @return string  | 
                                                        |
| 30 | + * @since 8.0.0  | 
                                                        |
| 31 | + */  | 
                                                        |
| 32 | + public function getDisplayName();  | 
                                                        |
| 33 | +  | 
                                                        |
| 34 | + /**  | 
                                                        |
| 35 | + * set the display name for the user  | 
                                                        |
| 36 | + *  | 
                                                        |
| 37 | + * @param string $displayName  | 
                                                        |
| 38 | + * @return bool  | 
                                                        |
| 39 | + * @since 8.0.0  | 
                                                        |
| 40 | + *  | 
                                                        |
| 41 | + * @since 25.0.0 Throw InvalidArgumentException  | 
                                                        |
| 42 | + * @throws \InvalidArgumentException  | 
                                                        |
| 43 | + */  | 
                                                        |
| 44 | + public function setDisplayName($displayName);  | 
                                                        |
| 45 | +  | 
                                                        |
| 46 | + /**  | 
                                                        |
| 47 | + * returns the timestamp of the user's last login or 0 if the user did never  | 
                                                        |
| 48 | + * login  | 
                                                        |
| 49 | + *  | 
                                                        |
| 50 | + * @return int  | 
                                                        |
| 51 | + * @since 8.0.0  | 
                                                        |
| 52 | + */  | 
                                                        |
| 53 | + public function getLastLogin(): int;  | 
                                                        |
| 54 | +  | 
                                                        |
| 55 | + /**  | 
                                                        |
| 56 | + * Returns the timestamp of the user's first login, 0 if the user did never login, or -1 if the data is unknown (first login was on an older version)  | 
                                                        |
| 57 | + *  | 
                                                        |
| 58 | + * @since 31.0.0  | 
                                                        |
| 59 | + */  | 
                                                        |
| 60 | + public function getFirstLogin(): int;  | 
                                                        |
| 61 | +  | 
                                                        |
| 62 | + /**  | 
                                                        |
| 63 | + * Updates the timestamp of the most recent login of this user (and first login if needed)  | 
                                                        |
| 64 | + *  | 
                                                        |
| 65 | + * @return bool whether this is the first login  | 
                                                        |
| 66 | + * @since 8.0.0  | 
                                                        |
| 67 | + */  | 
                                                        |
| 68 | + public function updateLastLoginTimestamp(): bool;  | 
                                                        |
| 69 | +  | 
                                                        |
| 70 | + /**  | 
                                                        |
| 71 | + * Delete the user  | 
                                                        |
| 72 | + *  | 
                                                        |
| 73 | + * @return bool  | 
                                                        |
| 74 | + * @since 8.0.0  | 
                                                        |
| 75 | + */  | 
                                                        |
| 76 | + public function delete();  | 
                                                        |
| 77 | +  | 
                                                        |
| 78 | + /**  | 
                                                        |
| 79 | + * Set the password of the user  | 
                                                        |
| 80 | + *  | 
                                                        |
| 81 | + * @param string $password  | 
                                                        |
| 82 | + * @param string $recoveryPassword for the encryption app to reset encryption keys  | 
                                                        |
| 83 | + * @return bool  | 
                                                        |
| 84 | + * @since 8.0.0  | 
                                                        |
| 85 | + */  | 
                                                        |
| 86 | + public function setPassword($password, $recoveryPassword = null);  | 
                                                        |
| 87 | +  | 
                                                        |
| 88 | + /**  | 
                                                        |
| 89 | + * Get the password hash of the user  | 
                                                        |
| 90 | + *  | 
                                                        |
| 91 | + * @return ?string the password hash hashed by `\OCP\Security\IHasher::hash()`  | 
                                                        |
| 92 | + * @since 30.0.0  | 
                                                        |
| 93 | + */  | 
                                                        |
| 94 | + public function getPasswordHash(): ?string;  | 
                                                        |
| 95 | +  | 
                                                        |
| 96 | + /**  | 
                                                        |
| 97 | + * Set the password hash of the user  | 
                                                        |
| 98 | + *  | 
                                                        |
| 99 | + * @param string $passwordHash the password hash hashed by `\OCP\Security\IHasher::hash()`  | 
                                                        |
| 100 | + * @throws InvalidArgumentException when `$passwordHash` is not a valid hash  | 
                                                        |
| 101 | + * @since 30.0.0  | 
                                                        |
| 102 | + */  | 
                                                        |
| 103 | + public function setPasswordHash(string $passwordHash): bool;  | 
                                                        |
| 104 | +  | 
                                                        |
| 105 | + /**  | 
                                                        |
| 106 | + * get the users home folder to mount  | 
                                                        |
| 107 | + *  | 
                                                        |
| 108 | + * @return string  | 
                                                        |
| 109 | + * @since 8.0.0  | 
                                                        |
| 110 | + */  | 
                                                        |
| 111 | + public function getHome();  | 
                                                        |
| 112 | +  | 
                                                        |
| 113 | + /**  | 
                                                        |
| 114 | + * Get the name of the backend class the user is connected with  | 
                                                        |
| 115 | + *  | 
                                                        |
| 116 | + * @return string  | 
                                                        |
| 117 | + * @since 8.0.0  | 
                                                        |
| 118 | + */  | 
                                                        |
| 119 | + public function getBackendClassName();  | 
                                                        |
| 120 | +  | 
                                                        |
| 121 | + /**  | 
                                                        |
| 122 | + * Get the backend for the current user object  | 
                                                        |
| 123 | + * @return ?UserInterface  | 
                                                        |
| 124 | + * @since 15.0.0  | 
                                                        |
| 125 | + */  | 
                                                        |
| 126 | + public function getBackend();  | 
                                                        |
| 127 | +  | 
                                                        |
| 128 | + /**  | 
                                                        |
| 129 | + * check if the backend allows the user to change their avatar on Personal page  | 
                                                        |
| 130 | + *  | 
                                                        |
| 131 | + * @return bool  | 
                                                        |
| 132 | + * @since 8.0.0  | 
                                                        |
| 133 | + */  | 
                                                        |
| 134 | + public function canChangeAvatar();  | 
                                                        |
| 135 | +  | 
                                                        |
| 136 | + /**  | 
                                                        |
| 137 | + * check if the backend supports changing passwords  | 
                                                        |
| 138 | + *  | 
                                                        |
| 139 | + * @return bool  | 
                                                        |
| 140 | + * @since 8.0.0  | 
                                                        |
| 141 | + */  | 
                                                        |
| 142 | + public function canChangePassword();  | 
                                                        |
| 143 | +  | 
                                                        |
| 144 | + /**  | 
                                                        |
| 145 | + * check if the backend supports changing display names  | 
                                                        |
| 146 | + *  | 
                                                        |
| 147 | + * @return bool  | 
                                                        |
| 148 | + * @since 8.0.0  | 
                                                        |
| 149 | + */  | 
                                                        |
| 150 | + public function canChangeDisplayName();  | 
                                                        |
| 151 | +  | 
                                                        |
| 152 | + /**  | 
                                                        |
| 153 | + * Check if the backend supports changing email  | 
                                                        |
| 154 | + *  | 
                                                        |
| 155 | + * @since 32.0.0  | 
                                                        |
| 156 | + */  | 
                                                        |
| 157 | + public function canChangeEmail(): bool;  | 
                                                        |
| 158 | +  | 
                                                        |
| 159 | + /**  | 
                                                        |
| 160 | + * check if the user is enabled  | 
                                                        |
| 161 | + *  | 
                                                        |
| 162 | + * @return bool  | 
                                                        |
| 163 | + * @since 8.0.0  | 
                                                        |
| 164 | + */  | 
                                                        |
| 165 | + public function isEnabled();  | 
                                                        |
| 166 | +  | 
                                                        |
| 167 | + /**  | 
                                                        |
| 168 | + * set the enabled status for the user  | 
                                                        |
| 169 | + *  | 
                                                        |
| 170 | + * @param bool $enabled  | 
                                                        |
| 171 | + * @since 8.0.0  | 
                                                        |
| 172 | + */  | 
                                                        |
| 173 | + public function setEnabled(bool $enabled = true);  | 
                                                        |
| 174 | +  | 
                                                        |
| 175 | + /**  | 
                                                        |
| 176 | + * get the user's email address  | 
                                                        |
| 177 | + *  | 
                                                        |
| 178 | + * @return string|null  | 
                                                        |
| 179 | + * @since 9.0.0  | 
                                                        |
| 180 | + */  | 
                                                        |
| 181 | + public function getEMailAddress();  | 
                                                        |
| 182 | +  | 
                                                        |
| 183 | + /**  | 
                                                        |
| 184 | + * get the user's system email address  | 
                                                        |
| 185 | + *  | 
                                                        |
| 186 | + * The system mail address may be read only and may be set from different  | 
                                                        |
| 187 | + * sources like LDAP, SAML or simply the admin.  | 
                                                        |
| 188 | + *  | 
                                                        |
| 189 | + * Use this getter only when the system address is needed. For picking the  | 
                                                        |
| 190 | + * proper address to e.g. send a mail to, use getEMailAddress().  | 
                                                        |
| 191 | + *  | 
                                                        |
| 192 | + * @return string|null  | 
                                                        |
| 193 | + * @since 23.0.0  | 
                                                        |
| 194 | + */  | 
                                                        |
| 195 | + public function getSystemEMailAddress(): ?string;  | 
                                                        |
| 196 | +  | 
                                                        |
| 197 | + /**  | 
                                                        |
| 198 | + * get the user's preferred email address  | 
                                                        |
| 199 | + *  | 
                                                        |
| 200 | + * The primary mail address may be set be the user to specify a different  | 
                                                        |
| 201 | + * email address where mails by Nextcloud are sent to. It is not necessarily  | 
                                                        |
| 202 | + * set.  | 
                                                        |
| 203 | + *  | 
                                                        |
| 204 | + * Use this getter only when the primary address is needed. For picking the  | 
                                                        |
| 205 | + * proper address to e.g. send a mail to, use getEMailAddress().  | 
                                                        |
| 206 | + *  | 
                                                        |
| 207 | + * @return string|null  | 
                                                        |
| 208 | + * @since 23.0.0  | 
                                                        |
| 209 | + */  | 
                                                        |
| 210 | + public function getPrimaryEMailAddress(): ?string;  | 
                                                        |
| 211 | +  | 
                                                        |
| 212 | + /**  | 
                                                        |
| 213 | + * get the avatar image if it exists  | 
                                                        |
| 214 | + *  | 
                                                        |
| 215 | + * @param int $size  | 
                                                        |
| 216 | + * @return IImage|null  | 
                                                        |
| 217 | + * @since 9.0.0  | 
                                                        |
| 218 | + */  | 
                                                        |
| 219 | + public function getAvatarImage($size);  | 
                                                        |
| 220 | +  | 
                                                        |
| 221 | + /**  | 
                                                        |
| 222 | + * get the federation cloud id  | 
                                                        |
| 223 | + *  | 
                                                        |
| 224 | + * @return string  | 
                                                        |
| 225 | + * @since 9.0.0  | 
                                                        |
| 226 | + */  | 
                                                        |
| 227 | + public function getCloudId();  | 
                                                        |
| 228 | +  | 
                                                        |
| 229 | + /**  | 
                                                        |
| 230 | + * set the email address of the user  | 
                                                        |
| 231 | + *  | 
                                                        |
| 232 | + * It is an alias to setSystemEMailAddress()  | 
                                                        |
| 233 | + *  | 
                                                        |
| 234 | + * @param string|null $mailAddress  | 
                                                        |
| 235 | + * @return void  | 
                                                        |
| 236 | + * @since 9.0.0  | 
                                                        |
| 237 | + * @deprecated 23.0.0 use setSystemEMailAddress() or setPrimaryEMailAddress()  | 
                                                        |
| 238 | + */  | 
                                                        |
| 239 | + public function setEMailAddress($mailAddress);  | 
                                                        |
| 240 | +  | 
                                                        |
| 241 | + /**  | 
                                                        |
| 242 | + * Set the system email address of the user  | 
                                                        |
| 243 | + *  | 
                                                        |
| 244 | + * This is supposed to be used when the email is set from different sources  | 
                                                        |
| 245 | + * (i.e. other user backends, admin).  | 
                                                        |
| 246 | + *  | 
                                                        |
| 247 | + * @since 23.0.0  | 
                                                        |
| 248 | + */  | 
                                                        |
| 249 | + public function setSystemEMailAddress(string $mailAddress): void;  | 
                                                        |
| 250 | +  | 
                                                        |
| 251 | + /**  | 
                                                        |
| 252 | + * Set the primary email address of the user.  | 
                                                        |
| 253 | + *  | 
                                                        |
| 254 | + * This method should be typically called when the user is changing their  | 
                                                        |
| 255 | + * own primary address and is not allowed to change their system email.  | 
                                                        |
| 256 | + *  | 
                                                        |
| 257 | + * The mail address provided here must be already registered as an  | 
                                                        |
| 258 | + * additional mail in the user account and also be verified locally. Also  | 
                                                        |
| 259 | + * an empty string is allowed to delete this preference.  | 
                                                        |
| 260 | + *  | 
                                                        |
| 261 | + * @throws InvalidArgumentException when the provided email address does not  | 
                                                        |
| 262 | + * satisfy constraints.  | 
                                                        |
| 263 | + *  | 
                                                        |
| 264 | + * @since 23.0.0  | 
                                                        |
| 265 | + */  | 
                                                        |
| 266 | + public function setPrimaryEMailAddress(string $mailAddress): void;  | 
                                                        |
| 267 | +  | 
                                                        |
| 268 | + /**  | 
                                                        |
| 269 | + * get the users' quota in human readable form. If a specific quota is not  | 
                                                        |
| 270 | + * set for the user, the default value is returned. If a default setting  | 
                                                        |
| 271 | + * was not set otherwise, it is return as 'none', i.e. quota is not limited.  | 
                                                        |
| 272 | + *  | 
                                                        |
| 273 | + * @return string  | 
                                                        |
| 274 | + * @since 9.0.0  | 
                                                        |
| 275 | + */  | 
                                                        |
| 276 | + public function getQuota();  | 
                                                        |
| 277 | +  | 
                                                        |
| 278 | + /**  | 
                                                        |
| 279 | + * set the users' quota  | 
                                                        |
| 280 | + *  | 
                                                        |
| 281 | + * @param string $quota  | 
                                                        |
| 282 | + * @return void  | 
                                                        |
| 283 | + * @since 9.0.0  | 
                                                        |
| 284 | + */  | 
                                                        |
| 285 | + public function setQuota($quota);  | 
                                                        |
| 286 | +  | 
                                                        |
| 287 | + /**  | 
                                                        |
| 288 | + * Get the user's manager UIDs  | 
                                                        |
| 289 | + *  | 
                                                        |
| 290 | + * @since 27.0.0  | 
                                                        |
| 291 | + * @return string[]  | 
                                                        |
| 292 | + */  | 
                                                        |
| 293 | + public function getManagerUids(): array;  | 
                                                        |
| 294 | +  | 
                                                        |
| 295 | + /**  | 
                                                        |
| 296 | + * Set the user's manager UIDs  | 
                                                        |
| 297 | + *  | 
                                                        |
| 298 | + * @param string[] $uids UIDs of all managers  | 
                                                        |
| 299 | + * @return void  | 
                                                        |
| 300 | + * @since 27.0.0  | 
                                                        |
| 301 | + */  | 
                                                        |
| 302 | + public function setManagerUids(array $uids): void;  | 
                                                        |
| 303 | 303 | }  | 
                                                        
@@ -15,19 +15,19 @@  | 
                                                    ||
| 15 | 15 | */  | 
                                                        
| 16 | 16 |  class Version32000Date20250402182800 extends SimpleMigrationStep { | 
                                                        
| 17 | 17 | |
| 18 | - public function __construct(  | 
                                                        |
| 19 | - private IConfig $config,  | 
                                                        |
| 20 | -	) { | 
                                                        |
| 21 | - }  | 
                                                        |
| 18 | + public function __construct(  | 
                                                        |
| 19 | + private IConfig $config,  | 
                                                        |
| 20 | +    ) { | 
                                                        |
| 21 | + }  | 
                                                        |
| 22 | 22 | |
| 23 | -	public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { | 
                                                        |
| 24 | -		$allowDisplayName = $this->config->getSystemValue('allow_user_to_change_display_name', null); | 
                                                        |
| 25 | -		$allowEmail = $this->config->getSystemValue('allow_user_to_change_email', null); | 
                                                        |
| 23 | +    public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { | 
                                                        |
| 24 | +        $allowDisplayName = $this->config->getSystemValue('allow_user_to_change_display_name', null); | 
                                                        |
| 25 | +        $allowEmail = $this->config->getSystemValue('allow_user_to_change_email', null); | 
                                                        |
| 26 | 26 | |
| 27 | - // if displayname was set, but not the email setting, then set the email setting to the same as the email setting  | 
                                                        |
| 28 | -		if ($allowDisplayName !== null && $allowEmail === null) { | 
                                                        |
| 29 | -			$this->config->setSystemValue('allow_user_to_change_email', $allowDisplayName === true); | 
                                                        |
| 30 | - }  | 
                                                        |
| 31 | - }  | 
                                                        |
| 27 | + // if displayname was set, but not the email setting, then set the email setting to the same as the email setting  | 
                                                        |
| 28 | +        if ($allowDisplayName !== null && $allowEmail === null) { | 
                                                        |
| 29 | +            $this->config->setSystemValue('allow_user_to_change_email', $allowDisplayName === true); | 
                                                        |
| 30 | + }  | 
                                                        |
| 31 | + }  | 
                                                        |
| 32 | 32 | |
| 33 | 33 | }  |