Commit d49f989
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 DoctrineDbalAdapter1 file changed
+1
-0
lines changedLines changed: 1 addition & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
24 | 25 | | |
25 | 26 | | |
26 | 27 | | |
| |||
0 commit comments