Code Duplication    Length = 3-3 lines in 2 locations

src/voku/helper/UTF8.php 2 locations

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