Code Duplication    Length = 3-3 lines in 2 locations

src/voku/helper/UTF8.php 2 locations

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