File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Bridge/Doctrine/Tests/Types
Component/Lock/Tests/Store Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -94,9 +94,9 @@ private static function getSqlitePlatform(): AbstractPlatform
9494 {
9595 if (interface_exists (Exception::class)) {
9696 // DBAL 4+
97- return new SQLitePlatform ();
97+ return new \ Doctrine \ DBAL \ Platforms \ SQLitePlatform ();
9898 }
9999
100- return new SQLitePlatform ();
100+ return new \ Doctrine \ DBAL \ Platforms \ SqlitePlatform ();
101101 }
102102}
Original file line number Diff line number Diff line change @@ -154,9 +154,9 @@ private static function getSqlitePlatform(): AbstractPlatform
154154 {
155155 if (interface_exists (Exception::class)) {
156156 // DBAL 4+
157- return new SQLitePlatform ();
157+ return new \ Doctrine \ DBAL \ Platforms \ SQLitePlatform ();
158158 }
159159
160- return new SQLitePlatform ();
160+ return new \ Doctrine \ DBAL \ Platforms \ SqlitePlatform ();
161161 }
162162}
Original file line number Diff line number Diff line change @@ -165,9 +165,9 @@ private static function getSqlitePlatform(): AbstractPlatform
165165 {
166166 if (interface_exists (Exception::class)) {
167167 // DBAL 4+
168- return new SQLitePlatform ();
168+ return new \ Doctrine \ DBAL \ Platforms \ SQLitePlatform ();
169169 }
170170
171- return new SQLitePlatform ();
171+ return new \ Doctrine \ DBAL \ Platforms \ SqlitePlatform ();
172172 }
173173}
Original file line number Diff line number Diff line change @@ -180,9 +180,9 @@ public static function providePlatforms(): \Generator
180180
181181 if (interface_exists (Exception::class)) {
182182 // DBAL 4+
183- yield [SQLitePlatform::class];
183+ yield [\ Doctrine \ DBAL \ Platforms \ SQLitePlatform::class];
184184 } else {
185- yield [SQLitePlatform ::class];
185+ yield [\ Doctrine \ DBAL \ Platforms \SqlitePlatform ::class];
186186 }
187187
188188 yield [SQLServerPlatform::class];
You can’t perform that action at this time.
0 commit comments