Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 200-202 (lines=3) @@
197
						$values[] = $config->getApplicableUsers();
198
						$values[] = $config->getApplicableGroups();
199
					}
200
					if ($userId === self::ALL) {
201
						$values[] = $config->getType() === IStorageConfig::MOUNT_TYPE_ADMIN ? 'admin' : 'personal';
202
					}
203
204
					return \array_combine($keys, $values);
205
				}, $mounts);
@@ 284-286 (lines=3) @@
281
					$values[] = $applicableGroups;
282
				}
283
				// This MUST stay the last entry
284
				if ($shortView || $userId === self::ALL) {
285
					$values[] = $config->getType() === IStorageConfig::MOUNT_TYPE_ADMIN ? 'Admin' : 'Personal';
286
				}
287
288
				return $values;
289
			}, $mounts);