Code Duplication    Length = 3-5 lines in 2 locations

lib/Search/Contacts.php 1 location

@@ 71-73 (lines=3) @@
68
			'organization' => ''
69
		];
70
71
		if (key_exists('EMAIL', $contact)) {
72
			$data['display'] = $data['email'] = $contact['EMAIL'];
73
		}
74
75
		if (key_exists('FN', $contact)) {
76
			$data['display'] = $contact['FN'];

lib/Service/MiscService.php 1 location

@@ 163-167 (lines=5) @@
160
			return;
161
		}
162
163
		if (key_exists('EMAIL', $contact) && $contact['EMAIL'] !== '') {
164
			$display = $contact['EMAIL'];
165
166
			return;
167
		}
168
	}
169
170
	/**