Code Duplication    Length = 5-5 lines in 2 locations

includes/libs/objectcache/MemcachedClient.php 2 locations

@@ 933-937 (lines=5) @@
930
		}
931
932
		$key = is_array( $key ) ? $key[1] : $key;
933
		if ( isset( $this->stats[$cmd] ) ) {
934
			$this->stats[$cmd]++;
935
		} else {
936
			$this->stats[$cmd] = 1;
937
		}
938
		if ( !$this->_fwrite( $sock, "$cmd $key $amt\r\n" ) ) {
939
			return null;
940
		}
@@ 1067-1071 (lines=5) @@
1064
			return false;
1065
		}
1066
1067
		if ( isset( $this->stats[$cmd] ) ) {
1068
			$this->stats[$cmd]++;
1069
		} else {
1070
			$this->stats[$cmd] = 1;
1071
		}
1072
1073
		$flags = 0;
1074