Code Duplication    Length = 4-6 lines in 2 locations

maintenance/convertExtensionToRegistration.php 1 location

@@ 129-132 (lines=4) @@
126
		// Move some keys to the top
127
		$out = [];
128
		foreach ( $this->promote as $key ) {
129
			if ( isset( $this->json[$key] ) ) {
130
				$out[$key] = $this->json[$key];
131
				unset( $this->json[$key] );
132
			}
133
		}
134
		$out += $this->json;
135
		// Put this at the bottom

includes/WebRequest.php 1 location

@@ 436-441 (lines=6) @@
433
	 * @return mixed Old value if one was present, null otherwise
434
	 */
435
	public function unsetVal( $key ) {
436
		if ( !isset( $this->data[$key] ) ) {
437
			$ret = null;
438
		} else {
439
			$ret = $this->data[$key];
440
			unset( $this->data[$key] );
441
		}
442
		return $ret;
443
	}
444