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
94
94
{
95
95
if (interface_exists (Exception::class)) {
96
96
// DBAL 4+
97
- return new SQLitePlatform ();
97
+ return new \ Doctrine \ DBAL \ Platforms \ SQLitePlatform ();
98
98
}
99
99
100
- return new SQLitePlatform ();
100
+ return new \ Doctrine \ DBAL \ Platforms \ SqlitePlatform ();
101
101
}
102
102
}
Original file line number Diff line number Diff line change @@ -154,9 +154,9 @@ private static function getSqlitePlatform(): AbstractPlatform
154
154
{
155
155
if (interface_exists (Exception::class)) {
156
156
// DBAL 4+
157
- return new SQLitePlatform ();
157
+ return new \ Doctrine \ DBAL \ Platforms \ SQLitePlatform ();
158
158
}
159
159
160
- return new SQLitePlatform ();
160
+ return new \ Doctrine \ DBAL \ Platforms \ SqlitePlatform ();
161
161
}
162
162
}
Original file line number Diff line number Diff line change @@ -165,9 +165,9 @@ private static function getSqlitePlatform(): AbstractPlatform
165
165
{
166
166
if (interface_exists (Exception::class)) {
167
167
// DBAL 4+
168
- return new SQLitePlatform ();
168
+ return new \ Doctrine \ DBAL \ Platforms \ SQLitePlatform ();
169
169
}
170
170
171
- return new SQLitePlatform ();
171
+ return new \ Doctrine \ DBAL \ Platforms \ SqlitePlatform ();
172
172
}
173
173
}
Original file line number Diff line number Diff line change @@ -180,9 +180,9 @@ public static function providePlatforms(): \Generator
180
180
181
181
if (interface_exists (Exception::class)) {
182
182
// DBAL 4+
183
- yield [SQLitePlatform::class];
183
+ yield [\ Doctrine \ DBAL \ Platforms \ SQLitePlatform::class];
184
184
} else {
185
- yield [SQLitePlatform ::class];
185
+ yield [\ Doctrine \ DBAL \ Platforms \SqlitePlatform ::class];
186
186
}
187
187
188
188
yield [SQLServerPlatform::class];
You can’t perform that action at this time.
0 commit comments