Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 849-851 (lines=3) @@
846
            $limit = null;
847
            $precision = null;
848
            $type = $matches[1];
849
            if (count($matches) > 2) {
850
                $limit = $matches[3] ? (int)$matches[3] : null;
851
            }
852
            if (count($matches) > 4) {
853
                $precision = (int)$matches[5];
854
            }

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

@@ 876-878 (lines=3) @@
873
            $limit = null;
874
            $precision = null;
875
            $type = $matches[1];
876
            if (count($matches) > 2) {
877
                $limit = $matches[3] ? $matches[3] : null;
878
            }
879
            if (count($matches) > 4) {
880
                $precision = $matches[5];
881
            }