Code Duplication    Length = 3-3 lines in 2 locations

src/voku/helper/UTF8.php 2 locations

@@ 6518-6520 (lines=3) @@
6515
          if ($ordC0 >= 248) {
6516
            $ordC4 = self::$ORD[$c[4]];
6517
6518
            if ($ordC0 <= 251) {
6519
              $ord = ($ordC0 - 248) * 16777216 + ($ordC1 - 128) * 262144 + ($ordC2 - 128) * 4096 + ($ordC3 - 128) * 64 + ($ordC4 - 128);
6520
            }
6521
6522
            if ($ordC0 >= 252) {
6523
              $ordC5 = self::$ORD[$c[5]];
@@ 6525-6527 (lines=3) @@
6522
            if ($ordC0 >= 252) {
6523
              $ordC5 = self::$ORD[$c[5]];
6524
6525
              if ($ordC0 <= 253) {
6526
                $ord = ($ordC0 - 252) * 1073741824 + ($ordC1 - 128) * 16777216 + ($ordC2 - 128) * 262144 + ($ordC3 - 128) * 4096 + ($ordC4 - 128) * 64 + ($ordC5 - 128);
6527
              }
6528
            }
6529
          }
6530
        }