Code Duplication    Length = 3-3 lines in 2 locations

src/voku/helper/UTF8.php 2 locations

@@ 6265-6267 (lines=3) @@
6262
          if ($ordC0 >= 248) {
6263
            $ordC4 = self::$ORD[$c[4]];
6264
6265
            if ($ordC0 <= 251) {
6266
              $ord = ($ordC0 - 248) * 16777216 + ($ordC1 - 128) * 262144 + ($ordC2 - 128) * 4096 + ($ordC3 - 128) * 64 + ($ordC4 - 128);
6267
            }
6268
6269
            if ($ordC0 >= 252) {
6270
              $ordC5 = self::$ORD[$c[5]];
@@ 6272-6274 (lines=3) @@
6269
            if ($ordC0 >= 252) {
6270
              $ordC5 = self::$ORD[$c[5]];
6271
6272
              if ($ordC0 <= 253) {
6273
                $ord = ($ordC0 - 252) * 1073741824 + ($ordC1 - 128) * 16777216 + ($ordC2 - 128) * 262144 + ($ordC3 - 128) * 4096 + ($ordC4 - 128) * 64 + ($ordC5 - 128);
6274
              }
6275
            }
6276
          }
6277
        }