Code Duplication    Length = 3-3 lines in 2 locations

src/voku/helper/UTF8.php 2 locations

@@ 6527-6529 (lines=3) @@
6524
          if ($ordC0 >= 248) {
6525
            $ordC4 = self::$ORD[$c[4]];
6526
6527
            if ($ordC0 <= 251) {
6528
              $ord = ($ordC0 - 248) * 16777216 + ($ordC1 - 128) * 262144 + ($ordC2 - 128) * 4096 + ($ordC3 - 128) * 64 + ($ordC4 - 128);
6529
            }
6530
6531
            if ($ordC0 >= 252) {
6532
              $ordC5 = self::$ORD[$c[5]];
@@ 6534-6536 (lines=3) @@
6531
            if ($ordC0 >= 252) {
6532
              $ordC5 = self::$ORD[$c[5]];
6533
6534
              if ($ordC0 <= 253) {
6535
                $ord = ($ordC0 - 252) * 1073741824 + ($ordC1 - 128) * 16777216 + ($ordC2 - 128) * 262144 + ($ordC3 - 128) * 4096 + ($ordC4 - 128) * 64 + ($ordC5 - 128);
6536
              }
6537
            }
6538
          }
6539
        }