Code Duplication    Length = 9-9 lines in 2 locations

src/Phinx/Db/Adapter/MysqlAdapter.php 1 location

@@ 866-874 (lines=9) @@
863
                        $limit = null;
864
                    }
865
                    break;
866
                case 'char':
867
                    $type = static::PHINX_TYPE_CHAR;
868
                    if ($limit === 255) {
869
                        $limit = null;
870
                    }
871
                    if ($limit === 36) {
872
                        $type = static::PHINX_TYPE_UUID;
873
                    }
874
                    break;
875
                case 'tinyint':
876
                    $type = static::PHINX_TYPE_INTEGER;
877
                    $limit = static::INT_TINY;

src/Phinx/Db/Adapter/SQLiteAdapter.php 1 location

@@ 889-897 (lines=9) @@
886
                        $limit = null;
887
                    }
888
                    break;
889
                case 'char':
890
                    $type = static::PHINX_TYPE_CHAR;
891
                    if ($limit === 255) {
892
                        $limit = null;
893
                    }
894
                    if ($limit === 36) {
895
                        $type = static::PHINX_TYPE_UUID;
896
                    }
897
                    break;
898
                case 'int':
899
                    $type = static::PHINX_TYPE_INTEGER;
900
                    if ($limit === 11) {