Code Duplication    Length = 3-3 lines in 2 locations

src/voku/helper/UTF8.php 2 locations

@@ 6187-6189 (lines=3) @@
6184
          if ($ordC0 >= 248) {
6185
            $ordC4 = self::$ORD[$c[4]];
6186
6187
            if ($ordC0 <= 251) {
6188
              $ord = ($ordC0 - 248) * 16777216 + ($ordC1 - 128) * 262144 + ($ordC2 - 128) * 4096 + ($ordC3 - 128) * 64 + ($ordC4 - 128);
6189
            }
6190
6191
            if ($ordC0 >= 252) {
6192
              $ordC5 = self::$ORD[$c[5]];
@@ 6194-6196 (lines=3) @@
6191
            if ($ordC0 >= 252) {
6192
              $ordC5 = self::$ORD[$c[5]];
6193
6194
              if ($ordC0 <= 253) {
6195
                $ord = ($ordC0 - 252) * 1073741824 + ($ordC1 - 128) * 16777216 + ($ordC2 - 128) * 262144 + ($ordC3 - 128) * 4096 + ($ordC4 - 128) * 64 + ($ordC5 - 128);
6196
              }
6197
            }
6198
          }
6199
        }