Code Duplication    Length = 4-4 lines in 2 locations

src/MySQLReplication/Event/RowEvent/RowEvent.php 2 locations

@@ 460-463 (lines=4) @@
457
            $res .= $value;
458
        }
459
460
        for ($i = 0; $i < $unCompIntegral; ++$i) {
461
            $value = $this->binaryDataReader->readInt32Be() ^ $mask;
462
            $res .= sprintf('%09d', $value);
463
        }
464
465
        $res .= '.';
466
@@ 467-470 (lines=4) @@
464
465
        $res .= '.';
466
467
        for ($i = 0; $i < $unCompFractional; ++$i) {
468
            $value = $this->binaryDataReader->readInt32Be() ^ $mask;
469
            $res .= sprintf('%09d', $value);
470
        }
471
472
        $size = $compressedBytes[$compFractional];
473
        if ($size > 0) {