Code Duplication    Length = 4-5 lines in 2 locations

src/Cornford/Notifier/NotifierAbstract.php 2 locations

@@ 205-209 (lines=5) @@
202
		$return = [];
203
204
		switch ($type) {
205
			case 'cdn':
206
				$return[] = self::JS_JQUERY_CDN;
207
				$return[] = self::JS_NOTIFY_CDN;
208
				$return[] = self::JS_NOTIFYER_CDN;
209
				break;
210
			case 'local':
211
			default:
212
				$return[] = self::JS_JQUERY_LOCAL;
@@ 211-214 (lines=4) @@
208
				$return[] = self::JS_NOTIFYER_CDN;
209
				break;
210
			case 'local':
211
			default:
212
				$return[] = self::JS_JQUERY_LOCAL;
213
				$return[] = self::JS_NOTIFY_LOCAL;
214
				$return[] = self::JS_NOTIFYER_LOCAL;
215
		}
216
217
		return $return;