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

@@ 223-227 (lines=5) @@
220
			return;
221
		}
222
223
		if (key_exists('EMAIL', $contact) && $contact['EMAIL'] !== '') {
224
			$display = $contact['EMAIL'];
225
226
			return;
227
		}
228
	}
229
230
	/**