Skip to content

Commit d49f989

Browse files
committed
bug #62261 [Cache] Add missing SQLitePlatform use statement in DoctrineDbalAdapter (yoeunes)
This PR was merged into the 8.0 branch. Discussion ---------- [Cache] Add missing SQLitePlatform use statement in DoctrineDbalAdapter | Q | A |---|--- | Branch? | 8.0 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Issues | n/a | License | MIT This PR adds the missing `use Doctrine\DBAL\Platforms\SQLitePlatform;` statement in the `DoctrineDbalAdapter`. The `getPlatformName()` method performs an `instanceof SQLitePlatform` check, but the class was not imported at the top of the file. Commits ------- 54abc1a [Cache] Add missing SQLitePlatform use statement in DoctrineDbalAdapter
2 parents 548defa + 54abc1a commit d49f989

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Symfony/Component/Cache/Adapter/DoctrineDbalAdapter.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
use Doctrine\DBAL\Platforms\AbstractMySQLPlatform;
2222
use Doctrine\DBAL\Platforms\OraclePlatform;
2323
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
24+
use Doctrine\DBAL\Platforms\SQLitePlatform;
2425
use Doctrine\DBAL\Platforms\SQLServerPlatform;
2526
use Doctrine\DBAL\Schema\DefaultSchemaManagerFactory;
2627
use Doctrine\DBAL\Schema\Name\Identifier;

0 commit comments

Comments
 (0)