Code Duplication    Length = 3-3 lines in 2 locations

apps/files_external/lib/Command/ListCommand.php 2 locations

@@ 175-177 (lines=3) @@
172
					$values[] = $config->getApplicableUsers();
173
					$values[] = $config->getApplicableGroups();
174
				}
175
				if ($userId === self::ALL) {
176
					$values[] = $config->getType() === StorageConfig::MOUNT_TYPE_ADMIN ? 'admin' : 'personal';
177
				}
178
179
				return array_combine($keys, $values);
180
			}, $mounts);
@@ 248-250 (lines=3) @@
245
					$values[] = $applicableUsers;
246
					$values[] = $applicableGroups;
247
				}
248
				if ($userId === self::ALL) {
249
					$values[] = $config->getType() === StorageConfig::MOUNT_TYPE_ADMIN ? 'Admin' : 'Personal';
250
				}
251
252
				return $values;
253
			}, $mounts);