File tree 1 file changed +1
-7
lines changed
1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 11
11
use Doctrine \DBAL \Platforms \AbstractPlatform ;
12
12
use Doctrine \DBAL \Schema \AbstractSchemaManager ;
13
13
use Doctrine \DBAL \Types \Type ;
14
- use Doctrine \DBAL \VersionAwarePlatformDriver ;
15
14
use Pfilsx \PostgreSQLDoctrine \DBAL \Platform \PostgreSQLPlatform ;
16
15
use Pfilsx \PostgreSQLDoctrine \DBAL \Schema \PostgreSQLSchemaManager ;
17
16
use Pfilsx \PostgreSQLDoctrine \DBAL \Type \EnumType ;
18
17
19
- final class PostgreSQLDriverWrapper implements VersionAwarePlatformDriver
18
+ final class PostgreSQLDriverWrapper implements Driver
20
19
{
21
20
private Driver $ innerDriver ;
22
21
@@ -38,11 +37,6 @@ public function getDatabasePlatform(): PostgreSQLPlatform
38
37
return new PostgreSQLPlatform ();
39
38
}
40
39
41
- public function createDatabasePlatformForVersion ($ version ): PostgreSQLPlatform
42
- {
43
- return new PostgreSQLPlatform ();
44
- }
45
-
46
40
public function getSchemaManager (Connection $ conn , AbstractPlatform $ platform ): AbstractSchemaManager
47
41
{
48
42
\assert ($ platform instanceof PostgreSQLPlatform);
You can’t perform that action at this time.
0 commit comments