Code Duplication    Length = 7-7 lines in 2 locations

apps/federatedfilesharing/lib/Controller/RequestHandlerController.php 1 location

@@ 441-447 (lines=7) @@
438
	 *
439
	 * @return bool
440
	 */
441
	protected function hasNull($param) {
442
		if (\is_array($param)) {
443
			return \in_array(null, $param, true);
444
		} else {
445
			return $param === null;
446
		}
447
	}
448
}
449

apps/federatedfilesharing/lib/Controller/OcmController.php 1 location

@@ 273-279 (lines=7) @@
270
	 *
271
	 * @return bool
272
	 */
273
	protected function hasNull($param) {
274
		if (\is_array($param)) {
275
			return \in_array(null, $param, true);
276
		} else {
277
			return $param === null;
278
		}
279
	}
280
}
281