Skip to content

Commit cd45355

Browse files
-
1 parent 7a36a94 commit cd45355

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/Symfony/Bridge/Doctrine/Tests/Types/DatePointTypeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

src/Symfony/Bridge/Doctrine/Tests/Types/UlidTypeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

src/Symfony/Bridge/Doctrine/Tests/Types/UuidTypeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

src/Symfony/Component/Lock/Tests/Store/DoctrineDbalStoreTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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];

0 commit comments

Comments
 (0)