Code Duplication    Length = 3-3 lines in 2 locations

src/voku/helper/UTF8.php 2 locations

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