@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | throw new \Exception('Internal error: Invalid object type', 500); |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - return (int)$result; |
|
| 87 | + return (int) $result; |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | /** |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | |
| 170 | 170 | $filter = $this->access->combineFilterWithAnd([ |
| 171 | 171 | $this->configuration->ldapUserFilter, |
| 172 | - $attr . '=*' |
|
| 172 | + $attr.'=*' |
|
| 173 | 173 | ]); |
| 174 | 174 | |
| 175 | 175 | $limit = $existsCheck ? null : 1; |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | if ($attr !== '' && $attr !== 'displayName') { |
| 197 | 197 | // most likely not the default value with upper case N, |
| 198 | 198 | // verify it still produces a result |
| 199 | - $count = (int)$this->countUsersWithAttribute($attr, true); |
|
| 199 | + $count = (int) $this->countUsersWithAttribute($attr, true); |
|
| 200 | 200 | if ($count > 0) { |
| 201 | 201 | //no change, but we sent it back to make sure the user interface |
| 202 | 202 | //is still correct, even if the call was cancelled meanwhile |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | // first attribute that has at least one result wins |
| 209 | 209 | $displayNameAttrs = ['displayname', 'cn']; |
| 210 | 210 | foreach ($displayNameAttrs as $attr) { |
| 211 | - $count = (int)$this->countUsersWithAttribute($attr, true); |
|
| 211 | + $count = (int) $this->countUsersWithAttribute($attr, true); |
|
| 212 | 212 | |
| 213 | 213 | if ($count > 0) { |
| 214 | 214 | $this->applyFind('ldap_display_name', $attr); |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | |
| 237 | 237 | $attr = $this->configuration->ldapEmailAttribute; |
| 238 | 238 | if ($attr !== '') { |
| 239 | - $count = (int)$this->countUsersWithAttribute($attr, true); |
|
| 239 | + $count = (int) $this->countUsersWithAttribute($attr, true); |
|
| 240 | 240 | if ($count > 0) { |
| 241 | 241 | return false; |
| 242 | 242 | } |
@@ -380,7 +380,7 @@ discard block |
||
| 380 | 380 | $this->fetchGroups($dbKey, $confKey); |
| 381 | 381 | |
| 382 | 382 | if ($testMemberOf) { |
| 383 | - $this->configuration->hasMemberOfFilterSupport = (string)$this->testMemberOf(); |
|
| 383 | + $this->configuration->hasMemberOfFilterSupport = (string) $this->testMemberOf(); |
|
| 384 | 384 | $this->result->markChange(); |
| 385 | 385 | if (!$this->configuration->hasMemberOfFilterSupport) { |
| 386 | 386 | throw new \Exception('memberOf is not supported by the server'); |
@@ -400,7 +400,7 @@ discard block |
||
| 400 | 400 | |
| 401 | 401 | $filterParts = []; |
| 402 | 402 | foreach ($obclasses as $obclass) { |
| 403 | - $filterParts[] = 'objectclass=' . $obclass; |
|
| 403 | + $filterParts[] = 'objectclass='.$obclass; |
|
| 404 | 404 | } |
| 405 | 405 | //we filter for everything |
| 406 | 406 | //- that looks like a group and |
@@ -645,7 +645,7 @@ discard block |
||
| 645 | 645 | $p = $setting['port']; |
| 646 | 646 | $t = $setting['tls']; |
| 647 | 647 | $this->logger->debug( |
| 648 | - 'Wiz: trying port ' . $p . ', TLS ' . $t, |
|
| 648 | + 'Wiz: trying port '.$p.', TLS '.$t, |
|
| 649 | 649 | ['app' => 'user_ldap'] |
| 650 | 650 | ); |
| 651 | 651 | //connectAndBind may throw Exception, it needs to be caught by the |
@@ -666,12 +666,12 @@ discard block |
||
| 666 | 666 | |
| 667 | 667 | if ($settingsFound === true) { |
| 668 | 668 | $config = [ |
| 669 | - 'ldapPort' => (string)$p, |
|
| 670 | - 'ldapTLS' => (string)$t, |
|
| 669 | + 'ldapPort' => (string) $p, |
|
| 670 | + 'ldapTLS' => (string) $t, |
|
| 671 | 671 | ]; |
| 672 | 672 | $this->configuration->setConfiguration($config); |
| 673 | 673 | $this->logger->debug( |
| 674 | - 'Wiz: detected Port ' . $p, |
|
| 674 | + 'Wiz: detected Port '.$p, |
|
| 675 | 675 | ['app' => 'user_ldap'] |
| 676 | 676 | ); |
| 677 | 677 | $this->result->addChange('ldap_port', $p); |
@@ -718,7 +718,7 @@ discard block |
||
| 718 | 718 | |
| 719 | 719 | $dparts = explode('.', $domain); |
| 720 | 720 | while (count($dparts) > 0) { |
| 721 | - $base2 = 'dc=' . implode(',dc=', $dparts); |
|
| 721 | + $base2 = 'dc='.implode(',dc=', $dparts); |
|
| 722 | 722 | if ($base !== $base2 && $this->testBaseDN($base2)) { |
| 723 | 723 | $this->applyFind('ldap_base', $base2); |
| 724 | 724 | return $this->result; |
@@ -753,9 +753,9 @@ discard block |
||
| 753 | 753 | //removes Port from Host |
| 754 | 754 | if (is_array($hostInfo) && isset($hostInfo['port'])) { |
| 755 | 755 | $port = $hostInfo['port']; |
| 756 | - $host = str_replace(':' . $port, '', $host); |
|
| 756 | + $host = str_replace(':'.$port, '', $host); |
|
| 757 | 757 | $this->applyFind('ldap_host', $host); |
| 758 | - $this->applyFind('ldap_port', (string)$port); |
|
| 758 | + $this->applyFind('ldap_port', (string) $port); |
|
| 759 | 759 | } |
| 760 | 760 | } |
| 761 | 761 | |
@@ -822,7 +822,7 @@ discard block |
||
| 822 | 822 | $errorNo = $this->ldap->errno($cr); |
| 823 | 823 | $errorMsg = $this->ldap->error($cr); |
| 824 | 824 | $this->logger->info( |
| 825 | - 'Wiz: Could not search base ' . $base . ' Error ' . $errorNo . ': ' . $errorMsg, |
|
| 825 | + 'Wiz: Could not search base '.$base.' Error '.$errorNo.': '.$errorMsg, |
|
| 826 | 826 | ['app' => 'user_ldap'] |
| 827 | 827 | ); |
| 828 | 828 | return false; |
@@ -870,7 +870,7 @@ discard block |
||
| 870 | 870 | if (is_array($objcs) && count($objcs) > 0) { |
| 871 | 871 | $filter .= '(|'; |
| 872 | 872 | foreach ($objcs as $objc) { |
| 873 | - $filter .= '(objectclass=' . ldap_escape($objc, '', LDAP_ESCAPE_FILTER) . ')'; |
|
| 873 | + $filter .= '(objectclass='.ldap_escape($objc, '', LDAP_ESCAPE_FILTER).')'; |
|
| 874 | 874 | } |
| 875 | 875 | $filter .= ')'; |
| 876 | 876 | $parts++; |
@@ -886,7 +886,7 @@ discard block |
||
| 886 | 886 | } |
| 887 | 887 | $base = $this->configuration->ldapBase[0]; |
| 888 | 888 | foreach ($cns as $cn) { |
| 889 | - $rr = $this->ldap->search($cr, $base, 'cn=' . ldap_escape($cn, '', LDAP_ESCAPE_FILTER), ['dn', 'primaryGroupToken']); |
|
| 889 | + $rr = $this->ldap->search($cr, $base, 'cn='.ldap_escape($cn, '', LDAP_ESCAPE_FILTER), ['dn', 'primaryGroupToken']); |
|
| 890 | 890 | if (!$this->ldap->isResource($rr)) { |
| 891 | 891 | continue; |
| 892 | 892 | } |
@@ -897,11 +897,11 @@ discard block |
||
| 897 | 897 | if ($dn === false || $dn === '') { |
| 898 | 898 | continue; |
| 899 | 899 | } |
| 900 | - $filterPart = '(memberof=' . ldap_escape($dn, '', LDAP_ESCAPE_FILTER) . ')'; |
|
| 900 | + $filterPart = '(memberof='.ldap_escape($dn, '', LDAP_ESCAPE_FILTER).')'; |
|
| 901 | 901 | if (isset($attrs['primaryGroupToken'])) { |
| 902 | 902 | $pgt = $attrs['primaryGroupToken'][0]; |
| 903 | - $primaryFilterPart = '(primaryGroupID=' . ldap_escape($pgt, '', LDAP_ESCAPE_FILTER) . ')'; |
|
| 904 | - $filterPart = '(|' . $filterPart . $primaryFilterPart . ')'; |
|
| 903 | + $primaryFilterPart = '(primaryGroupID='.ldap_escape($pgt, '', LDAP_ESCAPE_FILTER).')'; |
|
| 904 | + $filterPart = '(|'.$filterPart.$primaryFilterPart.')'; |
|
| 905 | 905 | } |
| 906 | 906 | $filter .= $filterPart; |
| 907 | 907 | } |
@@ -911,7 +911,7 @@ discard block |
||
| 911 | 911 | } |
| 912 | 912 | //wrap parts in AND condition |
| 913 | 913 | if ($parts > 1) { |
| 914 | - $filter = '(&' . $filter . ')'; |
|
| 914 | + $filter = '(&'.$filter.')'; |
|
| 915 | 915 | } |
| 916 | 916 | if ($filter === '') { |
| 917 | 917 | $filter = '(objectclass=*)'; |
@@ -924,7 +924,7 @@ discard block |
||
| 924 | 924 | if (is_array($objcs) && count($objcs) > 0) { |
| 925 | 925 | $filter .= '(|'; |
| 926 | 926 | foreach ($objcs as $objc) { |
| 927 | - $filter .= '(objectclass=' . ldap_escape($objc, '', LDAP_ESCAPE_FILTER) . ')'; |
|
| 927 | + $filter .= '(objectclass='.ldap_escape($objc, '', LDAP_ESCAPE_FILTER).')'; |
|
| 928 | 928 | } |
| 929 | 929 | $filter .= ')'; |
| 930 | 930 | $parts++; |
@@ -934,14 +934,14 @@ discard block |
||
| 934 | 934 | if (is_array($cns) && count($cns) > 0) { |
| 935 | 935 | $filter .= '(|'; |
| 936 | 936 | foreach ($cns as $cn) { |
| 937 | - $filter .= '(cn=' . ldap_escape($cn, '', LDAP_ESCAPE_FILTER) . ')'; |
|
| 937 | + $filter .= '(cn='.ldap_escape($cn, '', LDAP_ESCAPE_FILTER).')'; |
|
| 938 | 938 | } |
| 939 | 939 | $filter .= ')'; |
| 940 | 940 | } |
| 941 | 941 | $parts++; |
| 942 | 942 | //wrap parts in AND condition |
| 943 | 943 | if ($parts > 1) { |
| 944 | - $filter = '(&' . $filter . ')'; |
|
| 944 | + $filter = '(&'.$filter.')'; |
|
| 945 | 945 | } |
| 946 | 946 | break; |
| 947 | 947 | |
@@ -967,7 +967,7 @@ discard block |
||
| 967 | 967 | $attr = 'cn'; |
| 968 | 968 | } |
| 969 | 969 | if ($attr !== '') { |
| 970 | - $filterUsername = '(' . $attr . $loginpart . ')'; |
|
| 970 | + $filterUsername = '('.$attr.$loginpart.')'; |
|
| 971 | 971 | $parts++; |
| 972 | 972 | } |
| 973 | 973 | } |
@@ -983,7 +983,7 @@ discard block |
||
| 983 | 983 | if (is_array($attrsToFilter) && count($attrsToFilter) > 0) { |
| 984 | 984 | $filterAttributes = '(|'; |
| 985 | 985 | foreach ($attrsToFilter as $attribute) { |
| 986 | - $filterAttributes .= '(' . $attribute . $loginpart . ')'; |
|
| 986 | + $filterAttributes .= '('.$attribute.$loginpart.')'; |
|
| 987 | 987 | } |
| 988 | 988 | $filterAttributes .= ')'; |
| 989 | 989 | $parts++; |
@@ -1000,12 +1000,12 @@ discard block |
||
| 1000 | 1000 | $filterLogin .= ')'; |
| 1001 | 1001 | } |
| 1002 | 1002 | |
| 1003 | - $filter = '(&' . $ulf . $filterLogin . ')'; |
|
| 1003 | + $filter = '(&'.$ulf.$filterLogin.')'; |
|
| 1004 | 1004 | break; |
| 1005 | 1005 | } |
| 1006 | 1006 | |
| 1007 | 1007 | $this->logger->debug( |
| 1008 | - 'Wiz: Final filter ' . $filter, |
|
| 1008 | + 'Wiz: Final filter '.$filter, |
|
| 1009 | 1009 | ['app' => 'user_ldap'] |
| 1010 | 1010 | ); |
| 1011 | 1011 | |
@@ -1022,7 +1022,7 @@ discard block |
||
| 1022 | 1022 | private function connectAndBind(int $port, bool $tls): bool { |
| 1023 | 1023 | //connect, does not really trigger any server communication |
| 1024 | 1024 | $host = $this->configuration->ldapHost; |
| 1025 | - $hostInfo = parse_url((string)$host); |
|
| 1025 | + $hostInfo = parse_url((string) $host); |
|
| 1026 | 1026 | if (!is_string($host) || !$hostInfo) { |
| 1027 | 1027 | throw new \Exception(self::$l->t('Invalid Host')); |
| 1028 | 1028 | } |
@@ -1030,7 +1030,7 @@ discard block |
||
| 1030 | 1030 | 'Wiz: Attempting to connect', |
| 1031 | 1031 | ['app' => 'user_ldap'] |
| 1032 | 1032 | ); |
| 1033 | - $cr = $this->ldap->connect($host, (string)$port); |
|
| 1033 | + $cr = $this->ldap->connect($host, (string) $port); |
|
| 1034 | 1034 | if (!$this->ldap->isResource($cr)) { |
| 1035 | 1035 | throw new \Exception(self::$l->t('Invalid Host')); |
| 1036 | 1036 | } |
@@ -1067,7 +1067,7 @@ discard block |
||
| 1067 | 1067 | |
| 1068 | 1068 | if ($login === true) { |
| 1069 | 1069 | $this->logger->debug( |
| 1070 | - 'Wiz: Bind successful to Port ' . $port . ' TLS ' . (int)$tls, |
|
| 1070 | + 'Wiz: Bind successful to Port '.$port.' TLS '.(int) $tls, |
|
| 1071 | 1071 | ['app' => 'user_ldap'] |
| 1072 | 1072 | ); |
| 1073 | 1073 | return true; |
@@ -1201,7 +1201,7 @@ discard block |
||
| 1201 | 1201 | } |
| 1202 | 1202 | $p = 'objectclass='; |
| 1203 | 1203 | foreach ($objectclasses as $key => $value) { |
| 1204 | - $objectclasses[$key] = $p . $value; |
|
| 1204 | + $objectclasses[$key] = $p.$value; |
|
| 1205 | 1205 | } |
| 1206 | 1206 | $maxEntryObjC = ''; |
| 1207 | 1207 | |
@@ -1271,7 +1271,7 @@ discard block |
||
| 1271 | 1271 | /** |
| 1272 | 1272 | * @return \LDAP\Connection|false a link resource on success, otherwise false |
| 1273 | 1273 | */ |
| 1274 | - private function getConnection(): \LDAP\Connection|false { |
|
| 1274 | + private function getConnection(): \LDAP\Connection | false { |
|
| 1275 | 1275 | if (!is_null($this->cr)) { |
| 1276 | 1276 | return $this->cr; |
| 1277 | 1277 | } |
@@ -1326,7 +1326,7 @@ discard block |
||
| 1326 | 1326 | //636 ← LDAPS / SSL |
| 1327 | 1327 | //7xxx ← UCS. need to be checked first, because both ports may be open |
| 1328 | 1328 | $host = $this->configuration->ldapHost; |
| 1329 | - $port = (int)$this->configuration->ldapPort; |
|
| 1329 | + $port = (int) $this->configuration->ldapPort; |
|
| 1330 | 1330 | $portSettings = []; |
| 1331 | 1331 | |
| 1332 | 1332 | //In case the port is already provided, we will check this first |
@@ -134,12 +134,12 @@ discard block |
||
| 134 | 134 | if ($subject === 'user') { |
| 135 | 135 | $mapping = Server::get(UserMapping::class); |
| 136 | 136 | $result = $mapping->clearCb( |
| 137 | - function (string $uid): void { |
|
| 137 | + function(string $uid): void { |
|
| 138 | 138 | $this->eventDispatcher->dispatchTyped(new BeforeUserIdUnassignedEvent($uid)); |
| 139 | 139 | /** @psalm-suppress UndefinedInterfaceMethod For now we have to emit, will be removed when all hooks are removed */ |
| 140 | 140 | Server::get(IUserManager::class)->emit('\OC\User', 'preUnassignedUserId', [$uid]); |
| 141 | 141 | }, |
| 142 | - function (string $uid): void { |
|
| 142 | + function(string $uid): void { |
|
| 143 | 143 | $this->eventDispatcher->dispatchTyped(new UserIdUnassignedEvent($uid)); |
| 144 | 144 | /** @psalm-suppress UndefinedInterfaceMethod For now we have to emit, will be removed when all hooks are removed */ |
| 145 | 145 | Server::get(IUserManager::class)->emit('\OC\User', 'postUnassignedUserId', [$uid]); |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | $mapping = Server::get(GroupMapping::class); |
| 150 | 150 | $result = $mapping->clear(); |
| 151 | 151 | } else { |
| 152 | - throw new OCSException($this->l->t('Unsupported subject ' . $subject)); |
|
| 152 | + throw new OCSException($this->l->t('Unsupported subject '.$subject)); |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | if (!$result) { |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | /** |
| 25 | 25 | * @param int|string|int[]|string[] $value |
| 26 | 26 | */ |
| 27 | - public function addChange(string $key, int|string|array $value): void { |
|
| 27 | + public function addChange(string $key, int | string | array $value): void { |
|
| 28 | 28 | $this->changes[$key] = $value; |
| 29 | 29 | } |
| 30 | 30 | |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | /** |
| 37 | 37 | * @param string|string[] $values |
| 38 | 38 | */ |
| 39 | - public function addOptions(string $key, string|array $values): void { |
|
| 39 | + public function addOptions(string $key, string | array $values): void { |
|
| 40 | 40 | if (!is_array($values)) { |
| 41 | 41 | $values = [$values]; |
| 42 | 42 | } |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | |
| 22 | 22 | $connection = new Connection($this->ldap, $configID, null); |
| 23 | 23 | $connection->setConfiguration($configuration->getConfiguration()); |
| 24 | - $connection->ldapConfigurationActive = (string)true; |
|
| 24 | + $connection->ldapConfigurationActive = (string) true; |
|
| 25 | 25 | $connection->setIgnoreValidation(true); |
| 26 | 26 | |
| 27 | 27 | $access = $this->accessFactory->get($connection); |
@@ -6,118 +6,118 @@ |
||
| 6 | 6 | |
| 7 | 7 | class ComposerStaticInitUser_LDAP |
| 8 | 8 | { |
| 9 | - public static $prefixLengthsPsr4 = array ( |
|
| 9 | + public static $prefixLengthsPsr4 = array( |
|
| 10 | 10 | 'O' => |
| 11 | - array ( |
|
| 11 | + array( |
|
| 12 | 12 | 'OCA\\User_LDAP\\' => 14, |
| 13 | 13 | ), |
| 14 | 14 | ); |
| 15 | 15 | |
| 16 | - public static $prefixDirsPsr4 = array ( |
|
| 16 | + public static $prefixDirsPsr4 = array( |
|
| 17 | 17 | 'OCA\\User_LDAP\\' => |
| 18 | - array ( |
|
| 19 | - 0 => __DIR__ . '/..' . '/../lib', |
|
| 18 | + array( |
|
| 19 | + 0 => __DIR__.'/..'.'/../lib', |
|
| 20 | 20 | ), |
| 21 | 21 | ); |
| 22 | 22 | |
| 23 | - public static $classMap = array ( |
|
| 24 | - 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', |
|
| 25 | - 'OCA\\User_LDAP\\Access' => __DIR__ . '/..' . '/../lib/Access.php', |
|
| 26 | - 'OCA\\User_LDAP\\AccessFactory' => __DIR__ . '/..' . '/../lib/AccessFactory.php', |
|
| 27 | - 'OCA\\User_LDAP\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', |
|
| 28 | - 'OCA\\User_LDAP\\BackendUtility' => __DIR__ . '/..' . '/../lib/BackendUtility.php', |
|
| 29 | - 'OCA\\User_LDAP\\Command\\CheckGroup' => __DIR__ . '/..' . '/../lib/Command/CheckGroup.php', |
|
| 30 | - 'OCA\\User_LDAP\\Command\\CheckUser' => __DIR__ . '/..' . '/../lib/Command/CheckUser.php', |
|
| 31 | - 'OCA\\User_LDAP\\Command\\CreateEmptyConfig' => __DIR__ . '/..' . '/../lib/Command/CreateEmptyConfig.php', |
|
| 32 | - 'OCA\\User_LDAP\\Command\\DeleteConfig' => __DIR__ . '/..' . '/../lib/Command/DeleteConfig.php', |
|
| 33 | - 'OCA\\User_LDAP\\Command\\PromoteGroup' => __DIR__ . '/..' . '/../lib/Command/PromoteGroup.php', |
|
| 34 | - 'OCA\\User_LDAP\\Command\\ResetGroup' => __DIR__ . '/..' . '/../lib/Command/ResetGroup.php', |
|
| 35 | - 'OCA\\User_LDAP\\Command\\ResetUser' => __DIR__ . '/..' . '/../lib/Command/ResetUser.php', |
|
| 36 | - 'OCA\\User_LDAP\\Command\\Search' => __DIR__ . '/..' . '/../lib/Command/Search.php', |
|
| 37 | - 'OCA\\User_LDAP\\Command\\SetConfig' => __DIR__ . '/..' . '/../lib/Command/SetConfig.php', |
|
| 38 | - 'OCA\\User_LDAP\\Command\\ShowConfig' => __DIR__ . '/..' . '/../lib/Command/ShowConfig.php', |
|
| 39 | - 'OCA\\User_LDAP\\Command\\ShowRemnants' => __DIR__ . '/..' . '/../lib/Command/ShowRemnants.php', |
|
| 40 | - 'OCA\\User_LDAP\\Command\\TestConfig' => __DIR__ . '/..' . '/../lib/Command/TestConfig.php', |
|
| 41 | - 'OCA\\User_LDAP\\Command\\TestUserSettings' => __DIR__ . '/..' . '/../lib/Command/TestUserSettings.php', |
|
| 42 | - 'OCA\\User_LDAP\\Command\\UpdateUUID' => __DIR__ . '/..' . '/../lib/Command/UpdateUUID.php', |
|
| 43 | - 'OCA\\User_LDAP\\Configuration' => __DIR__ . '/..' . '/../lib/Configuration.php', |
|
| 44 | - 'OCA\\User_LDAP\\Connection' => __DIR__ . '/..' . '/../lib/Connection.php', |
|
| 45 | - 'OCA\\User_LDAP\\ConnectionFactory' => __DIR__ . '/..' . '/../lib/ConnectionFactory.php', |
|
| 46 | - 'OCA\\User_LDAP\\Controller\\ConfigAPIController' => __DIR__ . '/..' . '/../lib/Controller/ConfigAPIController.php', |
|
| 47 | - 'OCA\\User_LDAP\\Controller\\RenewPasswordController' => __DIR__ . '/..' . '/../lib/Controller/RenewPasswordController.php', |
|
| 48 | - 'OCA\\User_LDAP\\Controller\\WizardController' => __DIR__ . '/..' . '/../lib/Controller/WizardController.php', |
|
| 49 | - 'OCA\\User_LDAP\\DataCollector\\LdapDataCollector' => __DIR__ . '/..' . '/../lib/DataCollector/LdapDataCollector.php', |
|
| 50 | - 'OCA\\User_LDAP\\Db\\GroupMembership' => __DIR__ . '/..' . '/../lib/Db/GroupMembership.php', |
|
| 51 | - 'OCA\\User_LDAP\\Db\\GroupMembershipMapper' => __DIR__ . '/..' . '/../lib/Db/GroupMembershipMapper.php', |
|
| 52 | - 'OCA\\User_LDAP\\Events\\GroupBackendRegistered' => __DIR__ . '/..' . '/../lib/Events/GroupBackendRegistered.php', |
|
| 53 | - 'OCA\\User_LDAP\\Events\\UserBackendRegistered' => __DIR__ . '/..' . '/../lib/Events/UserBackendRegistered.php', |
|
| 54 | - 'OCA\\User_LDAP\\Exceptions\\AttributeNotSet' => __DIR__ . '/..' . '/../lib/Exceptions/AttributeNotSet.php', |
|
| 55 | - 'OCA\\User_LDAP\\Exceptions\\ConfigurationIssueException' => __DIR__ . '/..' . '/../lib/Exceptions/ConfigurationIssueException.php', |
|
| 56 | - 'OCA\\User_LDAP\\Exceptions\\ConstraintViolationException' => __DIR__ . '/..' . '/../lib/Exceptions/ConstraintViolationException.php', |
|
| 57 | - 'OCA\\User_LDAP\\Exceptions\\NoMoreResults' => __DIR__ . '/..' . '/../lib/Exceptions/NoMoreResults.php', |
|
| 58 | - 'OCA\\User_LDAP\\Exceptions\\NotOnLDAP' => __DIR__ . '/..' . '/../lib/Exceptions/NotOnLDAP.php', |
|
| 59 | - 'OCA\\User_LDAP\\GroupPluginManager' => __DIR__ . '/..' . '/../lib/GroupPluginManager.php', |
|
| 60 | - 'OCA\\User_LDAP\\Group_LDAP' => __DIR__ . '/..' . '/../lib/Group_LDAP.php', |
|
| 61 | - 'OCA\\User_LDAP\\Group_Proxy' => __DIR__ . '/..' . '/../lib/Group_Proxy.php', |
|
| 62 | - 'OCA\\User_LDAP\\Handler\\ExtStorageConfigHandler' => __DIR__ . '/..' . '/../lib/Handler/ExtStorageConfigHandler.php', |
|
| 63 | - 'OCA\\User_LDAP\\Helper' => __DIR__ . '/..' . '/../lib/Helper.php', |
|
| 64 | - 'OCA\\User_LDAP\\IGroupLDAP' => __DIR__ . '/..' . '/../lib/IGroupLDAP.php', |
|
| 65 | - 'OCA\\User_LDAP\\ILDAPGroupPlugin' => __DIR__ . '/..' . '/../lib/ILDAPGroupPlugin.php', |
|
| 66 | - 'OCA\\User_LDAP\\ILDAPUserPlugin' => __DIR__ . '/..' . '/../lib/ILDAPUserPlugin.php', |
|
| 67 | - 'OCA\\User_LDAP\\ILDAPWrapper' => __DIR__ . '/..' . '/../lib/ILDAPWrapper.php', |
|
| 68 | - 'OCA\\User_LDAP\\IUserLDAP' => __DIR__ . '/..' . '/../lib/IUserLDAP.php', |
|
| 69 | - 'OCA\\User_LDAP\\Jobs\\CleanUp' => __DIR__ . '/..' . '/../lib/Jobs/CleanUp.php', |
|
| 70 | - 'OCA\\User_LDAP\\Jobs\\Sync' => __DIR__ . '/..' . '/../lib/Jobs/Sync.php', |
|
| 71 | - 'OCA\\User_LDAP\\Jobs\\UpdateGroups' => __DIR__ . '/..' . '/../lib/Jobs/UpdateGroups.php', |
|
| 72 | - 'OCA\\User_LDAP\\LDAP' => __DIR__ . '/..' . '/../lib/LDAP.php', |
|
| 73 | - 'OCA\\User_LDAP\\LDAPProvider' => __DIR__ . '/..' . '/../lib/LDAPProvider.php', |
|
| 74 | - 'OCA\\User_LDAP\\LDAPProviderFactory' => __DIR__ . '/..' . '/../lib/LDAPProviderFactory.php', |
|
| 75 | - 'OCA\\User_LDAP\\LDAPUtility' => __DIR__ . '/..' . '/../lib/LDAPUtility.php', |
|
| 76 | - 'OCA\\User_LDAP\\LoginListener' => __DIR__ . '/..' . '/../lib/LoginListener.php', |
|
| 77 | - 'OCA\\User_LDAP\\Mapping\\AbstractMapping' => __DIR__ . '/..' . '/../lib/Mapping/AbstractMapping.php', |
|
| 78 | - 'OCA\\User_LDAP\\Mapping\\GroupMapping' => __DIR__ . '/..' . '/../lib/Mapping/GroupMapping.php', |
|
| 79 | - 'OCA\\User_LDAP\\Mapping\\UserMapping' => __DIR__ . '/..' . '/../lib/Mapping/UserMapping.php', |
|
| 80 | - 'OCA\\User_LDAP\\Migration\\GroupMappingMigration' => __DIR__ . '/..' . '/../lib/Migration/GroupMappingMigration.php', |
|
| 81 | - 'OCA\\User_LDAP\\Migration\\RemoveRefreshTime' => __DIR__ . '/..' . '/../lib/Migration/RemoveRefreshTime.php', |
|
| 82 | - 'OCA\\User_LDAP\\Migration\\SetDefaultProvider' => __DIR__ . '/..' . '/../lib/Migration/SetDefaultProvider.php', |
|
| 83 | - 'OCA\\User_LDAP\\Migration\\UUIDFix' => __DIR__ . '/..' . '/../lib/Migration/UUIDFix.php', |
|
| 84 | - 'OCA\\User_LDAP\\Migration\\UUIDFixGroup' => __DIR__ . '/..' . '/../lib/Migration/UUIDFixGroup.php', |
|
| 85 | - 'OCA\\User_LDAP\\Migration\\UUIDFixInsert' => __DIR__ . '/..' . '/../lib/Migration/UUIDFixInsert.php', |
|
| 86 | - 'OCA\\User_LDAP\\Migration\\UUIDFixUser' => __DIR__ . '/..' . '/../lib/Migration/UUIDFixUser.php', |
|
| 87 | - 'OCA\\User_LDAP\\Migration\\UnsetDefaultProvider' => __DIR__ . '/..' . '/../lib/Migration/UnsetDefaultProvider.php', |
|
| 88 | - 'OCA\\User_LDAP\\Migration\\Version1010Date20200630192842' => __DIR__ . '/..' . '/../lib/Migration/Version1010Date20200630192842.php', |
|
| 89 | - 'OCA\\User_LDAP\\Migration\\Version1120Date20210917155206' => __DIR__ . '/..' . '/../lib/Migration/Version1120Date20210917155206.php', |
|
| 90 | - 'OCA\\User_LDAP\\Migration\\Version1130Date20211102154716' => __DIR__ . '/..' . '/../lib/Migration/Version1130Date20211102154716.php', |
|
| 91 | - 'OCA\\User_LDAP\\Migration\\Version1130Date20220110154717' => __DIR__ . '/..' . '/../lib/Migration/Version1130Date20220110154717.php', |
|
| 92 | - 'OCA\\User_LDAP\\Migration\\Version1130Date20220110154718' => __DIR__ . '/..' . '/../lib/Migration/Version1130Date20220110154718.php', |
|
| 93 | - 'OCA\\User_LDAP\\Migration\\Version1130Date20220110154719' => __DIR__ . '/..' . '/../lib/Migration/Version1130Date20220110154719.php', |
|
| 94 | - 'OCA\\User_LDAP\\Migration\\Version1141Date20220323143801' => __DIR__ . '/..' . '/../lib/Migration/Version1141Date20220323143801.php', |
|
| 95 | - 'OCA\\User_LDAP\\Migration\\Version1190Date20230706134108' => __DIR__ . '/..' . '/../lib/Migration/Version1190Date20230706134108.php', |
|
| 96 | - 'OCA\\User_LDAP\\Migration\\Version1190Date20230706134109' => __DIR__ . '/..' . '/../lib/Migration/Version1190Date20230706134109.php', |
|
| 97 | - 'OCA\\User_LDAP\\Notification\\Notifier' => __DIR__ . '/..' . '/../lib/Notification/Notifier.php', |
|
| 98 | - 'OCA\\User_LDAP\\PagedResults\\TLinkId' => __DIR__ . '/..' . '/../lib/PagedResults/TLinkId.php', |
|
| 99 | - 'OCA\\User_LDAP\\Proxy' => __DIR__ . '/..' . '/../lib/Proxy.php', |
|
| 100 | - 'OCA\\User_LDAP\\Service\\BirthdateParserService' => __DIR__ . '/..' . '/../lib/Service/BirthdateParserService.php', |
|
| 101 | - 'OCA\\User_LDAP\\Service\\UpdateGroupsService' => __DIR__ . '/..' . '/../lib/Service/UpdateGroupsService.php', |
|
| 102 | - 'OCA\\User_LDAP\\Settings\\Admin' => __DIR__ . '/..' . '/../lib/Settings/Admin.php', |
|
| 103 | - 'OCA\\User_LDAP\\Settings\\Section' => __DIR__ . '/..' . '/../lib/Settings/Section.php', |
|
| 104 | - 'OCA\\User_LDAP\\SetupChecks\\LdapConnection' => __DIR__ . '/..' . '/../lib/SetupChecks/LdapConnection.php', |
|
| 105 | - 'OCA\\User_LDAP\\SetupChecks\\LdapInvalidUuids' => __DIR__ . '/..' . '/../lib/SetupChecks/LdapInvalidUuids.php', |
|
| 106 | - 'OCA\\User_LDAP\\UserPluginManager' => __DIR__ . '/..' . '/../lib/UserPluginManager.php', |
|
| 107 | - 'OCA\\User_LDAP\\User\\DeletedUsersIndex' => __DIR__ . '/..' . '/../lib/User/DeletedUsersIndex.php', |
|
| 108 | - 'OCA\\User_LDAP\\User\\Manager' => __DIR__ . '/..' . '/../lib/User/Manager.php', |
|
| 109 | - 'OCA\\User_LDAP\\User\\OfflineUser' => __DIR__ . '/..' . '/../lib/User/OfflineUser.php', |
|
| 110 | - 'OCA\\User_LDAP\\User\\User' => __DIR__ . '/..' . '/../lib/User/User.php', |
|
| 111 | - 'OCA\\User_LDAP\\User_LDAP' => __DIR__ . '/..' . '/../lib/User_LDAP.php', |
|
| 112 | - 'OCA\\User_LDAP\\User_Proxy' => __DIR__ . '/..' . '/../lib/User_Proxy.php', |
|
| 113 | - 'OCA\\User_LDAP\\Wizard' => __DIR__ . '/..' . '/../lib/Wizard.php', |
|
| 114 | - 'OCA\\User_LDAP\\WizardFactory' => __DIR__ . '/..' . '/../lib/WizardFactory.php', |
|
| 115 | - 'OCA\\User_LDAP\\WizardResult' => __DIR__ . '/..' . '/../lib/WizardResult.php', |
|
| 23 | + public static $classMap = array( |
|
| 24 | + 'Composer\\InstalledVersions' => __DIR__.'/..'.'/composer/InstalledVersions.php', |
|
| 25 | + 'OCA\\User_LDAP\\Access' => __DIR__.'/..'.'/../lib/Access.php', |
|
| 26 | + 'OCA\\User_LDAP\\AccessFactory' => __DIR__.'/..'.'/../lib/AccessFactory.php', |
|
| 27 | + 'OCA\\User_LDAP\\AppInfo\\Application' => __DIR__.'/..'.'/../lib/AppInfo/Application.php', |
|
| 28 | + 'OCA\\User_LDAP\\BackendUtility' => __DIR__.'/..'.'/../lib/BackendUtility.php', |
|
| 29 | + 'OCA\\User_LDAP\\Command\\CheckGroup' => __DIR__.'/..'.'/../lib/Command/CheckGroup.php', |
|
| 30 | + 'OCA\\User_LDAP\\Command\\CheckUser' => __DIR__.'/..'.'/../lib/Command/CheckUser.php', |
|
| 31 | + 'OCA\\User_LDAP\\Command\\CreateEmptyConfig' => __DIR__.'/..'.'/../lib/Command/CreateEmptyConfig.php', |
|
| 32 | + 'OCA\\User_LDAP\\Command\\DeleteConfig' => __DIR__.'/..'.'/../lib/Command/DeleteConfig.php', |
|
| 33 | + 'OCA\\User_LDAP\\Command\\PromoteGroup' => __DIR__.'/..'.'/../lib/Command/PromoteGroup.php', |
|
| 34 | + 'OCA\\User_LDAP\\Command\\ResetGroup' => __DIR__.'/..'.'/../lib/Command/ResetGroup.php', |
|
| 35 | + 'OCA\\User_LDAP\\Command\\ResetUser' => __DIR__.'/..'.'/../lib/Command/ResetUser.php', |
|
| 36 | + 'OCA\\User_LDAP\\Command\\Search' => __DIR__.'/..'.'/../lib/Command/Search.php', |
|
| 37 | + 'OCA\\User_LDAP\\Command\\SetConfig' => __DIR__.'/..'.'/../lib/Command/SetConfig.php', |
|
| 38 | + 'OCA\\User_LDAP\\Command\\ShowConfig' => __DIR__.'/..'.'/../lib/Command/ShowConfig.php', |
|
| 39 | + 'OCA\\User_LDAP\\Command\\ShowRemnants' => __DIR__.'/..'.'/../lib/Command/ShowRemnants.php', |
|
| 40 | + 'OCA\\User_LDAP\\Command\\TestConfig' => __DIR__.'/..'.'/../lib/Command/TestConfig.php', |
|
| 41 | + 'OCA\\User_LDAP\\Command\\TestUserSettings' => __DIR__.'/..'.'/../lib/Command/TestUserSettings.php', |
|
| 42 | + 'OCA\\User_LDAP\\Command\\UpdateUUID' => __DIR__.'/..'.'/../lib/Command/UpdateUUID.php', |
|
| 43 | + 'OCA\\User_LDAP\\Configuration' => __DIR__.'/..'.'/../lib/Configuration.php', |
|
| 44 | + 'OCA\\User_LDAP\\Connection' => __DIR__.'/..'.'/../lib/Connection.php', |
|
| 45 | + 'OCA\\User_LDAP\\ConnectionFactory' => __DIR__.'/..'.'/../lib/ConnectionFactory.php', |
|
| 46 | + 'OCA\\User_LDAP\\Controller\\ConfigAPIController' => __DIR__.'/..'.'/../lib/Controller/ConfigAPIController.php', |
|
| 47 | + 'OCA\\User_LDAP\\Controller\\RenewPasswordController' => __DIR__.'/..'.'/../lib/Controller/RenewPasswordController.php', |
|
| 48 | + 'OCA\\User_LDAP\\Controller\\WizardController' => __DIR__.'/..'.'/../lib/Controller/WizardController.php', |
|
| 49 | + 'OCA\\User_LDAP\\DataCollector\\LdapDataCollector' => __DIR__.'/..'.'/../lib/DataCollector/LdapDataCollector.php', |
|
| 50 | + 'OCA\\User_LDAP\\Db\\GroupMembership' => __DIR__.'/..'.'/../lib/Db/GroupMembership.php', |
|
| 51 | + 'OCA\\User_LDAP\\Db\\GroupMembershipMapper' => __DIR__.'/..'.'/../lib/Db/GroupMembershipMapper.php', |
|
| 52 | + 'OCA\\User_LDAP\\Events\\GroupBackendRegistered' => __DIR__.'/..'.'/../lib/Events/GroupBackendRegistered.php', |
|
| 53 | + 'OCA\\User_LDAP\\Events\\UserBackendRegistered' => __DIR__.'/..'.'/../lib/Events/UserBackendRegistered.php', |
|
| 54 | + 'OCA\\User_LDAP\\Exceptions\\AttributeNotSet' => __DIR__.'/..'.'/../lib/Exceptions/AttributeNotSet.php', |
|
| 55 | + 'OCA\\User_LDAP\\Exceptions\\ConfigurationIssueException' => __DIR__.'/..'.'/../lib/Exceptions/ConfigurationIssueException.php', |
|
| 56 | + 'OCA\\User_LDAP\\Exceptions\\ConstraintViolationException' => __DIR__.'/..'.'/../lib/Exceptions/ConstraintViolationException.php', |
|
| 57 | + 'OCA\\User_LDAP\\Exceptions\\NoMoreResults' => __DIR__.'/..'.'/../lib/Exceptions/NoMoreResults.php', |
|
| 58 | + 'OCA\\User_LDAP\\Exceptions\\NotOnLDAP' => __DIR__.'/..'.'/../lib/Exceptions/NotOnLDAP.php', |
|
| 59 | + 'OCA\\User_LDAP\\GroupPluginManager' => __DIR__.'/..'.'/../lib/GroupPluginManager.php', |
|
| 60 | + 'OCA\\User_LDAP\\Group_LDAP' => __DIR__.'/..'.'/../lib/Group_LDAP.php', |
|
| 61 | + 'OCA\\User_LDAP\\Group_Proxy' => __DIR__.'/..'.'/../lib/Group_Proxy.php', |
|
| 62 | + 'OCA\\User_LDAP\\Handler\\ExtStorageConfigHandler' => __DIR__.'/..'.'/../lib/Handler/ExtStorageConfigHandler.php', |
|
| 63 | + 'OCA\\User_LDAP\\Helper' => __DIR__.'/..'.'/../lib/Helper.php', |
|
| 64 | + 'OCA\\User_LDAP\\IGroupLDAP' => __DIR__.'/..'.'/../lib/IGroupLDAP.php', |
|
| 65 | + 'OCA\\User_LDAP\\ILDAPGroupPlugin' => __DIR__.'/..'.'/../lib/ILDAPGroupPlugin.php', |
|
| 66 | + 'OCA\\User_LDAP\\ILDAPUserPlugin' => __DIR__.'/..'.'/../lib/ILDAPUserPlugin.php', |
|
| 67 | + 'OCA\\User_LDAP\\ILDAPWrapper' => __DIR__.'/..'.'/../lib/ILDAPWrapper.php', |
|
| 68 | + 'OCA\\User_LDAP\\IUserLDAP' => __DIR__.'/..'.'/../lib/IUserLDAP.php', |
|
| 69 | + 'OCA\\User_LDAP\\Jobs\\CleanUp' => __DIR__.'/..'.'/../lib/Jobs/CleanUp.php', |
|
| 70 | + 'OCA\\User_LDAP\\Jobs\\Sync' => __DIR__.'/..'.'/../lib/Jobs/Sync.php', |
|
| 71 | + 'OCA\\User_LDAP\\Jobs\\UpdateGroups' => __DIR__.'/..'.'/../lib/Jobs/UpdateGroups.php', |
|
| 72 | + 'OCA\\User_LDAP\\LDAP' => __DIR__.'/..'.'/../lib/LDAP.php', |
|
| 73 | + 'OCA\\User_LDAP\\LDAPProvider' => __DIR__.'/..'.'/../lib/LDAPProvider.php', |
|
| 74 | + 'OCA\\User_LDAP\\LDAPProviderFactory' => __DIR__.'/..'.'/../lib/LDAPProviderFactory.php', |
|
| 75 | + 'OCA\\User_LDAP\\LDAPUtility' => __DIR__.'/..'.'/../lib/LDAPUtility.php', |
|
| 76 | + 'OCA\\User_LDAP\\LoginListener' => __DIR__.'/..'.'/../lib/LoginListener.php', |
|
| 77 | + 'OCA\\User_LDAP\\Mapping\\AbstractMapping' => __DIR__.'/..'.'/../lib/Mapping/AbstractMapping.php', |
|
| 78 | + 'OCA\\User_LDAP\\Mapping\\GroupMapping' => __DIR__.'/..'.'/../lib/Mapping/GroupMapping.php', |
|
| 79 | + 'OCA\\User_LDAP\\Mapping\\UserMapping' => __DIR__.'/..'.'/../lib/Mapping/UserMapping.php', |
|
| 80 | + 'OCA\\User_LDAP\\Migration\\GroupMappingMigration' => __DIR__.'/..'.'/../lib/Migration/GroupMappingMigration.php', |
|
| 81 | + 'OCA\\User_LDAP\\Migration\\RemoveRefreshTime' => __DIR__.'/..'.'/../lib/Migration/RemoveRefreshTime.php', |
|
| 82 | + 'OCA\\User_LDAP\\Migration\\SetDefaultProvider' => __DIR__.'/..'.'/../lib/Migration/SetDefaultProvider.php', |
|
| 83 | + 'OCA\\User_LDAP\\Migration\\UUIDFix' => __DIR__.'/..'.'/../lib/Migration/UUIDFix.php', |
|
| 84 | + 'OCA\\User_LDAP\\Migration\\UUIDFixGroup' => __DIR__.'/..'.'/../lib/Migration/UUIDFixGroup.php', |
|
| 85 | + 'OCA\\User_LDAP\\Migration\\UUIDFixInsert' => __DIR__.'/..'.'/../lib/Migration/UUIDFixInsert.php', |
|
| 86 | + 'OCA\\User_LDAP\\Migration\\UUIDFixUser' => __DIR__.'/..'.'/../lib/Migration/UUIDFixUser.php', |
|
| 87 | + 'OCA\\User_LDAP\\Migration\\UnsetDefaultProvider' => __DIR__.'/..'.'/../lib/Migration/UnsetDefaultProvider.php', |
|
| 88 | + 'OCA\\User_LDAP\\Migration\\Version1010Date20200630192842' => __DIR__.'/..'.'/../lib/Migration/Version1010Date20200630192842.php', |
|
| 89 | + 'OCA\\User_LDAP\\Migration\\Version1120Date20210917155206' => __DIR__.'/..'.'/../lib/Migration/Version1120Date20210917155206.php', |
|
| 90 | + 'OCA\\User_LDAP\\Migration\\Version1130Date20211102154716' => __DIR__.'/..'.'/../lib/Migration/Version1130Date20211102154716.php', |
|
| 91 | + 'OCA\\User_LDAP\\Migration\\Version1130Date20220110154717' => __DIR__.'/..'.'/../lib/Migration/Version1130Date20220110154717.php', |
|
| 92 | + 'OCA\\User_LDAP\\Migration\\Version1130Date20220110154718' => __DIR__.'/..'.'/../lib/Migration/Version1130Date20220110154718.php', |
|
| 93 | + 'OCA\\User_LDAP\\Migration\\Version1130Date20220110154719' => __DIR__.'/..'.'/../lib/Migration/Version1130Date20220110154719.php', |
|
| 94 | + 'OCA\\User_LDAP\\Migration\\Version1141Date20220323143801' => __DIR__.'/..'.'/../lib/Migration/Version1141Date20220323143801.php', |
|
| 95 | + 'OCA\\User_LDAP\\Migration\\Version1190Date20230706134108' => __DIR__.'/..'.'/../lib/Migration/Version1190Date20230706134108.php', |
|
| 96 | + 'OCA\\User_LDAP\\Migration\\Version1190Date20230706134109' => __DIR__.'/..'.'/../lib/Migration/Version1190Date20230706134109.php', |
|
| 97 | + 'OCA\\User_LDAP\\Notification\\Notifier' => __DIR__.'/..'.'/../lib/Notification/Notifier.php', |
|
| 98 | + 'OCA\\User_LDAP\\PagedResults\\TLinkId' => __DIR__.'/..'.'/../lib/PagedResults/TLinkId.php', |
|
| 99 | + 'OCA\\User_LDAP\\Proxy' => __DIR__.'/..'.'/../lib/Proxy.php', |
|
| 100 | + 'OCA\\User_LDAP\\Service\\BirthdateParserService' => __DIR__.'/..'.'/../lib/Service/BirthdateParserService.php', |
|
| 101 | + 'OCA\\User_LDAP\\Service\\UpdateGroupsService' => __DIR__.'/..'.'/../lib/Service/UpdateGroupsService.php', |
|
| 102 | + 'OCA\\User_LDAP\\Settings\\Admin' => __DIR__.'/..'.'/../lib/Settings/Admin.php', |
|
| 103 | + 'OCA\\User_LDAP\\Settings\\Section' => __DIR__.'/..'.'/../lib/Settings/Section.php', |
|
| 104 | + 'OCA\\User_LDAP\\SetupChecks\\LdapConnection' => __DIR__.'/..'.'/../lib/SetupChecks/LdapConnection.php', |
|
| 105 | + 'OCA\\User_LDAP\\SetupChecks\\LdapInvalidUuids' => __DIR__.'/..'.'/../lib/SetupChecks/LdapInvalidUuids.php', |
|
| 106 | + 'OCA\\User_LDAP\\UserPluginManager' => __DIR__.'/..'.'/../lib/UserPluginManager.php', |
|
| 107 | + 'OCA\\User_LDAP\\User\\DeletedUsersIndex' => __DIR__.'/..'.'/../lib/User/DeletedUsersIndex.php', |
|
| 108 | + 'OCA\\User_LDAP\\User\\Manager' => __DIR__.'/..'.'/../lib/User/Manager.php', |
|
| 109 | + 'OCA\\User_LDAP\\User\\OfflineUser' => __DIR__.'/..'.'/../lib/User/OfflineUser.php', |
|
| 110 | + 'OCA\\User_LDAP\\User\\User' => __DIR__.'/..'.'/../lib/User/User.php', |
|
| 111 | + 'OCA\\User_LDAP\\User_LDAP' => __DIR__.'/..'.'/../lib/User_LDAP.php', |
|
| 112 | + 'OCA\\User_LDAP\\User_Proxy' => __DIR__.'/..'.'/../lib/User_Proxy.php', |
|
| 113 | + 'OCA\\User_LDAP\\Wizard' => __DIR__.'/..'.'/../lib/Wizard.php', |
|
| 114 | + 'OCA\\User_LDAP\\WizardFactory' => __DIR__.'/..'.'/../lib/WizardFactory.php', |
|
| 115 | + 'OCA\\User_LDAP\\WizardResult' => __DIR__.'/..'.'/../lib/WizardResult.php', |
|
| 116 | 116 | ); |
| 117 | 117 | |
| 118 | 118 | public static function getInitializer(ClassLoader $loader) |
| 119 | 119 | { |
| 120 | - return \Closure::bind(function () use ($loader) { |
|
| 120 | + return \Closure::bind(function() use ($loader) { |
|
| 121 | 121 | $loader->prefixLengthsPsr4 = ComposerStaticInitUser_LDAP::$prefixLengthsPsr4; |
| 122 | 122 | $loader->prefixDirsPsr4 = ComposerStaticInitUser_LDAP::$prefixDirsPsr4; |
| 123 | 123 | $loader->classMap = ComposerStaticInitUser_LDAP::$classMap; |
@@ -6,96 +6,96 @@ |
||
| 6 | 6 | $baseDir = $vendorDir; |
| 7 | 7 | |
| 8 | 8 | return array( |
| 9 | - 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', |
|
| 10 | - 'OCA\\User_LDAP\\Access' => $baseDir . '/../lib/Access.php', |
|
| 11 | - 'OCA\\User_LDAP\\AccessFactory' => $baseDir . '/../lib/AccessFactory.php', |
|
| 12 | - 'OCA\\User_LDAP\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php', |
|
| 13 | - 'OCA\\User_LDAP\\BackendUtility' => $baseDir . '/../lib/BackendUtility.php', |
|
| 14 | - 'OCA\\User_LDAP\\Command\\CheckGroup' => $baseDir . '/../lib/Command/CheckGroup.php', |
|
| 15 | - 'OCA\\User_LDAP\\Command\\CheckUser' => $baseDir . '/../lib/Command/CheckUser.php', |
|
| 16 | - 'OCA\\User_LDAP\\Command\\CreateEmptyConfig' => $baseDir . '/../lib/Command/CreateEmptyConfig.php', |
|
| 17 | - 'OCA\\User_LDAP\\Command\\DeleteConfig' => $baseDir . '/../lib/Command/DeleteConfig.php', |
|
| 18 | - 'OCA\\User_LDAP\\Command\\PromoteGroup' => $baseDir . '/../lib/Command/PromoteGroup.php', |
|
| 19 | - 'OCA\\User_LDAP\\Command\\ResetGroup' => $baseDir . '/../lib/Command/ResetGroup.php', |
|
| 20 | - 'OCA\\User_LDAP\\Command\\ResetUser' => $baseDir . '/../lib/Command/ResetUser.php', |
|
| 21 | - 'OCA\\User_LDAP\\Command\\Search' => $baseDir . '/../lib/Command/Search.php', |
|
| 22 | - 'OCA\\User_LDAP\\Command\\SetConfig' => $baseDir . '/../lib/Command/SetConfig.php', |
|
| 23 | - 'OCA\\User_LDAP\\Command\\ShowConfig' => $baseDir . '/../lib/Command/ShowConfig.php', |
|
| 24 | - 'OCA\\User_LDAP\\Command\\ShowRemnants' => $baseDir . '/../lib/Command/ShowRemnants.php', |
|
| 25 | - 'OCA\\User_LDAP\\Command\\TestConfig' => $baseDir . '/../lib/Command/TestConfig.php', |
|
| 26 | - 'OCA\\User_LDAP\\Command\\TestUserSettings' => $baseDir . '/../lib/Command/TestUserSettings.php', |
|
| 27 | - 'OCA\\User_LDAP\\Command\\UpdateUUID' => $baseDir . '/../lib/Command/UpdateUUID.php', |
|
| 28 | - 'OCA\\User_LDAP\\Configuration' => $baseDir . '/../lib/Configuration.php', |
|
| 29 | - 'OCA\\User_LDAP\\Connection' => $baseDir . '/../lib/Connection.php', |
|
| 30 | - 'OCA\\User_LDAP\\ConnectionFactory' => $baseDir . '/../lib/ConnectionFactory.php', |
|
| 31 | - 'OCA\\User_LDAP\\Controller\\ConfigAPIController' => $baseDir . '/../lib/Controller/ConfigAPIController.php', |
|
| 32 | - 'OCA\\User_LDAP\\Controller\\RenewPasswordController' => $baseDir . '/../lib/Controller/RenewPasswordController.php', |
|
| 33 | - 'OCA\\User_LDAP\\Controller\\WizardController' => $baseDir . '/../lib/Controller/WizardController.php', |
|
| 34 | - 'OCA\\User_LDAP\\DataCollector\\LdapDataCollector' => $baseDir . '/../lib/DataCollector/LdapDataCollector.php', |
|
| 35 | - 'OCA\\User_LDAP\\Db\\GroupMembership' => $baseDir . '/../lib/Db/GroupMembership.php', |
|
| 36 | - 'OCA\\User_LDAP\\Db\\GroupMembershipMapper' => $baseDir . '/../lib/Db/GroupMembershipMapper.php', |
|
| 37 | - 'OCA\\User_LDAP\\Events\\GroupBackendRegistered' => $baseDir . '/../lib/Events/GroupBackendRegistered.php', |
|
| 38 | - 'OCA\\User_LDAP\\Events\\UserBackendRegistered' => $baseDir . '/../lib/Events/UserBackendRegistered.php', |
|
| 39 | - 'OCA\\User_LDAP\\Exceptions\\AttributeNotSet' => $baseDir . '/../lib/Exceptions/AttributeNotSet.php', |
|
| 40 | - 'OCA\\User_LDAP\\Exceptions\\ConfigurationIssueException' => $baseDir . '/../lib/Exceptions/ConfigurationIssueException.php', |
|
| 41 | - 'OCA\\User_LDAP\\Exceptions\\ConstraintViolationException' => $baseDir . '/../lib/Exceptions/ConstraintViolationException.php', |
|
| 42 | - 'OCA\\User_LDAP\\Exceptions\\NoMoreResults' => $baseDir . '/../lib/Exceptions/NoMoreResults.php', |
|
| 43 | - 'OCA\\User_LDAP\\Exceptions\\NotOnLDAP' => $baseDir . '/../lib/Exceptions/NotOnLDAP.php', |
|
| 44 | - 'OCA\\User_LDAP\\GroupPluginManager' => $baseDir . '/../lib/GroupPluginManager.php', |
|
| 45 | - 'OCA\\User_LDAP\\Group_LDAP' => $baseDir . '/../lib/Group_LDAP.php', |
|
| 46 | - 'OCA\\User_LDAP\\Group_Proxy' => $baseDir . '/../lib/Group_Proxy.php', |
|
| 47 | - 'OCA\\User_LDAP\\Handler\\ExtStorageConfigHandler' => $baseDir . '/../lib/Handler/ExtStorageConfigHandler.php', |
|
| 48 | - 'OCA\\User_LDAP\\Helper' => $baseDir . '/../lib/Helper.php', |
|
| 49 | - 'OCA\\User_LDAP\\IGroupLDAP' => $baseDir . '/../lib/IGroupLDAP.php', |
|
| 50 | - 'OCA\\User_LDAP\\ILDAPGroupPlugin' => $baseDir . '/../lib/ILDAPGroupPlugin.php', |
|
| 51 | - 'OCA\\User_LDAP\\ILDAPUserPlugin' => $baseDir . '/../lib/ILDAPUserPlugin.php', |
|
| 52 | - 'OCA\\User_LDAP\\ILDAPWrapper' => $baseDir . '/../lib/ILDAPWrapper.php', |
|
| 53 | - 'OCA\\User_LDAP\\IUserLDAP' => $baseDir . '/../lib/IUserLDAP.php', |
|
| 54 | - 'OCA\\User_LDAP\\Jobs\\CleanUp' => $baseDir . '/../lib/Jobs/CleanUp.php', |
|
| 55 | - 'OCA\\User_LDAP\\Jobs\\Sync' => $baseDir . '/../lib/Jobs/Sync.php', |
|
| 56 | - 'OCA\\User_LDAP\\Jobs\\UpdateGroups' => $baseDir . '/../lib/Jobs/UpdateGroups.php', |
|
| 57 | - 'OCA\\User_LDAP\\LDAP' => $baseDir . '/../lib/LDAP.php', |
|
| 58 | - 'OCA\\User_LDAP\\LDAPProvider' => $baseDir . '/../lib/LDAPProvider.php', |
|
| 59 | - 'OCA\\User_LDAP\\LDAPProviderFactory' => $baseDir . '/../lib/LDAPProviderFactory.php', |
|
| 60 | - 'OCA\\User_LDAP\\LDAPUtility' => $baseDir . '/../lib/LDAPUtility.php', |
|
| 61 | - 'OCA\\User_LDAP\\LoginListener' => $baseDir . '/../lib/LoginListener.php', |
|
| 62 | - 'OCA\\User_LDAP\\Mapping\\AbstractMapping' => $baseDir . '/../lib/Mapping/AbstractMapping.php', |
|
| 63 | - 'OCA\\User_LDAP\\Mapping\\GroupMapping' => $baseDir . '/../lib/Mapping/GroupMapping.php', |
|
| 64 | - 'OCA\\User_LDAP\\Mapping\\UserMapping' => $baseDir . '/../lib/Mapping/UserMapping.php', |
|
| 65 | - 'OCA\\User_LDAP\\Migration\\GroupMappingMigration' => $baseDir . '/../lib/Migration/GroupMappingMigration.php', |
|
| 66 | - 'OCA\\User_LDAP\\Migration\\RemoveRefreshTime' => $baseDir . '/../lib/Migration/RemoveRefreshTime.php', |
|
| 67 | - 'OCA\\User_LDAP\\Migration\\SetDefaultProvider' => $baseDir . '/../lib/Migration/SetDefaultProvider.php', |
|
| 68 | - 'OCA\\User_LDAP\\Migration\\UUIDFix' => $baseDir . '/../lib/Migration/UUIDFix.php', |
|
| 69 | - 'OCA\\User_LDAP\\Migration\\UUIDFixGroup' => $baseDir . '/../lib/Migration/UUIDFixGroup.php', |
|
| 70 | - 'OCA\\User_LDAP\\Migration\\UUIDFixInsert' => $baseDir . '/../lib/Migration/UUIDFixInsert.php', |
|
| 71 | - 'OCA\\User_LDAP\\Migration\\UUIDFixUser' => $baseDir . '/../lib/Migration/UUIDFixUser.php', |
|
| 72 | - 'OCA\\User_LDAP\\Migration\\UnsetDefaultProvider' => $baseDir . '/../lib/Migration/UnsetDefaultProvider.php', |
|
| 73 | - 'OCA\\User_LDAP\\Migration\\Version1010Date20200630192842' => $baseDir . '/../lib/Migration/Version1010Date20200630192842.php', |
|
| 74 | - 'OCA\\User_LDAP\\Migration\\Version1120Date20210917155206' => $baseDir . '/../lib/Migration/Version1120Date20210917155206.php', |
|
| 75 | - 'OCA\\User_LDAP\\Migration\\Version1130Date20211102154716' => $baseDir . '/../lib/Migration/Version1130Date20211102154716.php', |
|
| 76 | - 'OCA\\User_LDAP\\Migration\\Version1130Date20220110154717' => $baseDir . '/../lib/Migration/Version1130Date20220110154717.php', |
|
| 77 | - 'OCA\\User_LDAP\\Migration\\Version1130Date20220110154718' => $baseDir . '/../lib/Migration/Version1130Date20220110154718.php', |
|
| 78 | - 'OCA\\User_LDAP\\Migration\\Version1130Date20220110154719' => $baseDir . '/../lib/Migration/Version1130Date20220110154719.php', |
|
| 79 | - 'OCA\\User_LDAP\\Migration\\Version1141Date20220323143801' => $baseDir . '/../lib/Migration/Version1141Date20220323143801.php', |
|
| 80 | - 'OCA\\User_LDAP\\Migration\\Version1190Date20230706134108' => $baseDir . '/../lib/Migration/Version1190Date20230706134108.php', |
|
| 81 | - 'OCA\\User_LDAP\\Migration\\Version1190Date20230706134109' => $baseDir . '/../lib/Migration/Version1190Date20230706134109.php', |
|
| 82 | - 'OCA\\User_LDAP\\Notification\\Notifier' => $baseDir . '/../lib/Notification/Notifier.php', |
|
| 83 | - 'OCA\\User_LDAP\\PagedResults\\TLinkId' => $baseDir . '/../lib/PagedResults/TLinkId.php', |
|
| 84 | - 'OCA\\User_LDAP\\Proxy' => $baseDir . '/../lib/Proxy.php', |
|
| 85 | - 'OCA\\User_LDAP\\Service\\BirthdateParserService' => $baseDir . '/../lib/Service/BirthdateParserService.php', |
|
| 86 | - 'OCA\\User_LDAP\\Service\\UpdateGroupsService' => $baseDir . '/../lib/Service/UpdateGroupsService.php', |
|
| 87 | - 'OCA\\User_LDAP\\Settings\\Admin' => $baseDir . '/../lib/Settings/Admin.php', |
|
| 88 | - 'OCA\\User_LDAP\\Settings\\Section' => $baseDir . '/../lib/Settings/Section.php', |
|
| 89 | - 'OCA\\User_LDAP\\SetupChecks\\LdapConnection' => $baseDir . '/../lib/SetupChecks/LdapConnection.php', |
|
| 90 | - 'OCA\\User_LDAP\\SetupChecks\\LdapInvalidUuids' => $baseDir . '/../lib/SetupChecks/LdapInvalidUuids.php', |
|
| 91 | - 'OCA\\User_LDAP\\UserPluginManager' => $baseDir . '/../lib/UserPluginManager.php', |
|
| 92 | - 'OCA\\User_LDAP\\User\\DeletedUsersIndex' => $baseDir . '/../lib/User/DeletedUsersIndex.php', |
|
| 93 | - 'OCA\\User_LDAP\\User\\Manager' => $baseDir . '/../lib/User/Manager.php', |
|
| 94 | - 'OCA\\User_LDAP\\User\\OfflineUser' => $baseDir . '/../lib/User/OfflineUser.php', |
|
| 95 | - 'OCA\\User_LDAP\\User\\User' => $baseDir . '/../lib/User/User.php', |
|
| 96 | - 'OCA\\User_LDAP\\User_LDAP' => $baseDir . '/../lib/User_LDAP.php', |
|
| 97 | - 'OCA\\User_LDAP\\User_Proxy' => $baseDir . '/../lib/User_Proxy.php', |
|
| 98 | - 'OCA\\User_LDAP\\Wizard' => $baseDir . '/../lib/Wizard.php', |
|
| 99 | - 'OCA\\User_LDAP\\WizardFactory' => $baseDir . '/../lib/WizardFactory.php', |
|
| 100 | - 'OCA\\User_LDAP\\WizardResult' => $baseDir . '/../lib/WizardResult.php', |
|
| 9 | + 'Composer\\InstalledVersions' => $vendorDir.'/composer/InstalledVersions.php', |
|
| 10 | + 'OCA\\User_LDAP\\Access' => $baseDir.'/../lib/Access.php', |
|
| 11 | + 'OCA\\User_LDAP\\AccessFactory' => $baseDir.'/../lib/AccessFactory.php', |
|
| 12 | + 'OCA\\User_LDAP\\AppInfo\\Application' => $baseDir.'/../lib/AppInfo/Application.php', |
|
| 13 | + 'OCA\\User_LDAP\\BackendUtility' => $baseDir.'/../lib/BackendUtility.php', |
|
| 14 | + 'OCA\\User_LDAP\\Command\\CheckGroup' => $baseDir.'/../lib/Command/CheckGroup.php', |
|
| 15 | + 'OCA\\User_LDAP\\Command\\CheckUser' => $baseDir.'/../lib/Command/CheckUser.php', |
|
| 16 | + 'OCA\\User_LDAP\\Command\\CreateEmptyConfig' => $baseDir.'/../lib/Command/CreateEmptyConfig.php', |
|
| 17 | + 'OCA\\User_LDAP\\Command\\DeleteConfig' => $baseDir.'/../lib/Command/DeleteConfig.php', |
|
| 18 | + 'OCA\\User_LDAP\\Command\\PromoteGroup' => $baseDir.'/../lib/Command/PromoteGroup.php', |
|
| 19 | + 'OCA\\User_LDAP\\Command\\ResetGroup' => $baseDir.'/../lib/Command/ResetGroup.php', |
|
| 20 | + 'OCA\\User_LDAP\\Command\\ResetUser' => $baseDir.'/../lib/Command/ResetUser.php', |
|
| 21 | + 'OCA\\User_LDAP\\Command\\Search' => $baseDir.'/../lib/Command/Search.php', |
|
| 22 | + 'OCA\\User_LDAP\\Command\\SetConfig' => $baseDir.'/../lib/Command/SetConfig.php', |
|
| 23 | + 'OCA\\User_LDAP\\Command\\ShowConfig' => $baseDir.'/../lib/Command/ShowConfig.php', |
|
| 24 | + 'OCA\\User_LDAP\\Command\\ShowRemnants' => $baseDir.'/../lib/Command/ShowRemnants.php', |
|
| 25 | + 'OCA\\User_LDAP\\Command\\TestConfig' => $baseDir.'/../lib/Command/TestConfig.php', |
|
| 26 | + 'OCA\\User_LDAP\\Command\\TestUserSettings' => $baseDir.'/../lib/Command/TestUserSettings.php', |
|
| 27 | + 'OCA\\User_LDAP\\Command\\UpdateUUID' => $baseDir.'/../lib/Command/UpdateUUID.php', |
|
| 28 | + 'OCA\\User_LDAP\\Configuration' => $baseDir.'/../lib/Configuration.php', |
|
| 29 | + 'OCA\\User_LDAP\\Connection' => $baseDir.'/../lib/Connection.php', |
|
| 30 | + 'OCA\\User_LDAP\\ConnectionFactory' => $baseDir.'/../lib/ConnectionFactory.php', |
|
| 31 | + 'OCA\\User_LDAP\\Controller\\ConfigAPIController' => $baseDir.'/../lib/Controller/ConfigAPIController.php', |
|
| 32 | + 'OCA\\User_LDAP\\Controller\\RenewPasswordController' => $baseDir.'/../lib/Controller/RenewPasswordController.php', |
|
| 33 | + 'OCA\\User_LDAP\\Controller\\WizardController' => $baseDir.'/../lib/Controller/WizardController.php', |
|
| 34 | + 'OCA\\User_LDAP\\DataCollector\\LdapDataCollector' => $baseDir.'/../lib/DataCollector/LdapDataCollector.php', |
|
| 35 | + 'OCA\\User_LDAP\\Db\\GroupMembership' => $baseDir.'/../lib/Db/GroupMembership.php', |
|
| 36 | + 'OCA\\User_LDAP\\Db\\GroupMembershipMapper' => $baseDir.'/../lib/Db/GroupMembershipMapper.php', |
|
| 37 | + 'OCA\\User_LDAP\\Events\\GroupBackendRegistered' => $baseDir.'/../lib/Events/GroupBackendRegistered.php', |
|
| 38 | + 'OCA\\User_LDAP\\Events\\UserBackendRegistered' => $baseDir.'/../lib/Events/UserBackendRegistered.php', |
|
| 39 | + 'OCA\\User_LDAP\\Exceptions\\AttributeNotSet' => $baseDir.'/../lib/Exceptions/AttributeNotSet.php', |
|
| 40 | + 'OCA\\User_LDAP\\Exceptions\\ConfigurationIssueException' => $baseDir.'/../lib/Exceptions/ConfigurationIssueException.php', |
|
| 41 | + 'OCA\\User_LDAP\\Exceptions\\ConstraintViolationException' => $baseDir.'/../lib/Exceptions/ConstraintViolationException.php', |
|
| 42 | + 'OCA\\User_LDAP\\Exceptions\\NoMoreResults' => $baseDir.'/../lib/Exceptions/NoMoreResults.php', |
|
| 43 | + 'OCA\\User_LDAP\\Exceptions\\NotOnLDAP' => $baseDir.'/../lib/Exceptions/NotOnLDAP.php', |
|
| 44 | + 'OCA\\User_LDAP\\GroupPluginManager' => $baseDir.'/../lib/GroupPluginManager.php', |
|
| 45 | + 'OCA\\User_LDAP\\Group_LDAP' => $baseDir.'/../lib/Group_LDAP.php', |
|
| 46 | + 'OCA\\User_LDAP\\Group_Proxy' => $baseDir.'/../lib/Group_Proxy.php', |
|
| 47 | + 'OCA\\User_LDAP\\Handler\\ExtStorageConfigHandler' => $baseDir.'/../lib/Handler/ExtStorageConfigHandler.php', |
|
| 48 | + 'OCA\\User_LDAP\\Helper' => $baseDir.'/../lib/Helper.php', |
|
| 49 | + 'OCA\\User_LDAP\\IGroupLDAP' => $baseDir.'/../lib/IGroupLDAP.php', |
|
| 50 | + 'OCA\\User_LDAP\\ILDAPGroupPlugin' => $baseDir.'/../lib/ILDAPGroupPlugin.php', |
|
| 51 | + 'OCA\\User_LDAP\\ILDAPUserPlugin' => $baseDir.'/../lib/ILDAPUserPlugin.php', |
|
| 52 | + 'OCA\\User_LDAP\\ILDAPWrapper' => $baseDir.'/../lib/ILDAPWrapper.php', |
|
| 53 | + 'OCA\\User_LDAP\\IUserLDAP' => $baseDir.'/../lib/IUserLDAP.php', |
|
| 54 | + 'OCA\\User_LDAP\\Jobs\\CleanUp' => $baseDir.'/../lib/Jobs/CleanUp.php', |
|
| 55 | + 'OCA\\User_LDAP\\Jobs\\Sync' => $baseDir.'/../lib/Jobs/Sync.php', |
|
| 56 | + 'OCA\\User_LDAP\\Jobs\\UpdateGroups' => $baseDir.'/../lib/Jobs/UpdateGroups.php', |
|
| 57 | + 'OCA\\User_LDAP\\LDAP' => $baseDir.'/../lib/LDAP.php', |
|
| 58 | + 'OCA\\User_LDAP\\LDAPProvider' => $baseDir.'/../lib/LDAPProvider.php', |
|
| 59 | + 'OCA\\User_LDAP\\LDAPProviderFactory' => $baseDir.'/../lib/LDAPProviderFactory.php', |
|
| 60 | + 'OCA\\User_LDAP\\LDAPUtility' => $baseDir.'/../lib/LDAPUtility.php', |
|
| 61 | + 'OCA\\User_LDAP\\LoginListener' => $baseDir.'/../lib/LoginListener.php', |
|
| 62 | + 'OCA\\User_LDAP\\Mapping\\AbstractMapping' => $baseDir.'/../lib/Mapping/AbstractMapping.php', |
|
| 63 | + 'OCA\\User_LDAP\\Mapping\\GroupMapping' => $baseDir.'/../lib/Mapping/GroupMapping.php', |
|
| 64 | + 'OCA\\User_LDAP\\Mapping\\UserMapping' => $baseDir.'/../lib/Mapping/UserMapping.php', |
|
| 65 | + 'OCA\\User_LDAP\\Migration\\GroupMappingMigration' => $baseDir.'/../lib/Migration/GroupMappingMigration.php', |
|
| 66 | + 'OCA\\User_LDAP\\Migration\\RemoveRefreshTime' => $baseDir.'/../lib/Migration/RemoveRefreshTime.php', |
|
| 67 | + 'OCA\\User_LDAP\\Migration\\SetDefaultProvider' => $baseDir.'/../lib/Migration/SetDefaultProvider.php', |
|
| 68 | + 'OCA\\User_LDAP\\Migration\\UUIDFix' => $baseDir.'/../lib/Migration/UUIDFix.php', |
|
| 69 | + 'OCA\\User_LDAP\\Migration\\UUIDFixGroup' => $baseDir.'/../lib/Migration/UUIDFixGroup.php', |
|
| 70 | + 'OCA\\User_LDAP\\Migration\\UUIDFixInsert' => $baseDir.'/../lib/Migration/UUIDFixInsert.php', |
|
| 71 | + 'OCA\\User_LDAP\\Migration\\UUIDFixUser' => $baseDir.'/../lib/Migration/UUIDFixUser.php', |
|
| 72 | + 'OCA\\User_LDAP\\Migration\\UnsetDefaultProvider' => $baseDir.'/../lib/Migration/UnsetDefaultProvider.php', |
|
| 73 | + 'OCA\\User_LDAP\\Migration\\Version1010Date20200630192842' => $baseDir.'/../lib/Migration/Version1010Date20200630192842.php', |
|
| 74 | + 'OCA\\User_LDAP\\Migration\\Version1120Date20210917155206' => $baseDir.'/../lib/Migration/Version1120Date20210917155206.php', |
|
| 75 | + 'OCA\\User_LDAP\\Migration\\Version1130Date20211102154716' => $baseDir.'/../lib/Migration/Version1130Date20211102154716.php', |
|
| 76 | + 'OCA\\User_LDAP\\Migration\\Version1130Date20220110154717' => $baseDir.'/../lib/Migration/Version1130Date20220110154717.php', |
|
| 77 | + 'OCA\\User_LDAP\\Migration\\Version1130Date20220110154718' => $baseDir.'/../lib/Migration/Version1130Date20220110154718.php', |
|
| 78 | + 'OCA\\User_LDAP\\Migration\\Version1130Date20220110154719' => $baseDir.'/../lib/Migration/Version1130Date20220110154719.php', |
|
| 79 | + 'OCA\\User_LDAP\\Migration\\Version1141Date20220323143801' => $baseDir.'/../lib/Migration/Version1141Date20220323143801.php', |
|
| 80 | + 'OCA\\User_LDAP\\Migration\\Version1190Date20230706134108' => $baseDir.'/../lib/Migration/Version1190Date20230706134108.php', |
|
| 81 | + 'OCA\\User_LDAP\\Migration\\Version1190Date20230706134109' => $baseDir.'/../lib/Migration/Version1190Date20230706134109.php', |
|
| 82 | + 'OCA\\User_LDAP\\Notification\\Notifier' => $baseDir.'/../lib/Notification/Notifier.php', |
|
| 83 | + 'OCA\\User_LDAP\\PagedResults\\TLinkId' => $baseDir.'/../lib/PagedResults/TLinkId.php', |
|
| 84 | + 'OCA\\User_LDAP\\Proxy' => $baseDir.'/../lib/Proxy.php', |
|
| 85 | + 'OCA\\User_LDAP\\Service\\BirthdateParserService' => $baseDir.'/../lib/Service/BirthdateParserService.php', |
|
| 86 | + 'OCA\\User_LDAP\\Service\\UpdateGroupsService' => $baseDir.'/../lib/Service/UpdateGroupsService.php', |
|
| 87 | + 'OCA\\User_LDAP\\Settings\\Admin' => $baseDir.'/../lib/Settings/Admin.php', |
|
| 88 | + 'OCA\\User_LDAP\\Settings\\Section' => $baseDir.'/../lib/Settings/Section.php', |
|
| 89 | + 'OCA\\User_LDAP\\SetupChecks\\LdapConnection' => $baseDir.'/../lib/SetupChecks/LdapConnection.php', |
|
| 90 | + 'OCA\\User_LDAP\\SetupChecks\\LdapInvalidUuids' => $baseDir.'/../lib/SetupChecks/LdapInvalidUuids.php', |
|
| 91 | + 'OCA\\User_LDAP\\UserPluginManager' => $baseDir.'/../lib/UserPluginManager.php', |
|
| 92 | + 'OCA\\User_LDAP\\User\\DeletedUsersIndex' => $baseDir.'/../lib/User/DeletedUsersIndex.php', |
|
| 93 | + 'OCA\\User_LDAP\\User\\Manager' => $baseDir.'/../lib/User/Manager.php', |
|
| 94 | + 'OCA\\User_LDAP\\User\\OfflineUser' => $baseDir.'/../lib/User/OfflineUser.php', |
|
| 95 | + 'OCA\\User_LDAP\\User\\User' => $baseDir.'/../lib/User/User.php', |
|
| 96 | + 'OCA\\User_LDAP\\User_LDAP' => $baseDir.'/../lib/User_LDAP.php', |
|
| 97 | + 'OCA\\User_LDAP\\User_Proxy' => $baseDir.'/../lib/User_Proxy.php', |
|
| 98 | + 'OCA\\User_LDAP\\Wizard' => $baseDir.'/../lib/Wizard.php', |
|
| 99 | + 'OCA\\User_LDAP\\WizardFactory' => $baseDir.'/../lib/WizardFactory.php', |
|
| 100 | + 'OCA\\User_LDAP\\WizardResult' => $baseDir.'/../lib/WizardResult.php', |
|
| 101 | 101 | ); |