Code Duplication    Length = 3-3 lines in 2 locations

src/voku/helper/UTF8.php 2 locations

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