Code Duplication    Length = 3-3 lines in 2 locations

src/voku/helper/UTF8.php 2 locations

@@ 7283-7285 (lines=3) @@
7280
          if ($ordC0 >= 248) {
7281
            $ordC4 = self::$ORD[$c[4]];
7282
7283
            if ($ordC0 <= 251) {
7284
              $ord = ($ordC0 - 248) * 16777216 + ($ordC1 - 128) * 262144 + ($ordC2 - 128) * 4096 + ($ordC3 - 128) * 64 + ($ordC4 - 128);
7285
            }
7286
7287
            if ($ordC0 >= 252) {
7288
              $ordC5 = self::$ORD[$c[5]];
@@ 7290-7292 (lines=3) @@
7287
            if ($ordC0 >= 252) {
7288
              $ordC5 = self::$ORD[$c[5]];
7289
7290
              if ($ordC0 <= 253) {
7291
                $ord = ($ordC0 - 252) * 1073741824 + ($ordC1 - 128) * 16777216 + ($ordC2 - 128) * 262144 + ($ordC3 - 128) * 4096 + ($ordC4 - 128) * 64 + ($ordC5 - 128);
7292
              }
7293
            }
7294
          }
7295
        }