Skip to content

Commit b401b29

Browse files
authored
Merge pull request #45 from alekseytkachenko/master
Switch parent class of decorator
2 parents 5147ae4 + 255e11e commit b401b29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Doctrine/PostgreSQLPlatformDecorator.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace OpsWay\Doctrine;
66

77
use Doctrine\DBAL\Exception\InvalidArgumentException;
8-
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
8+
use Doctrine\DBAL\Platforms\PostgreSQL120Platform;
99
use Doctrine\DBAL\Schema\Index;
1010

1111
use function array_map;
@@ -14,7 +14,7 @@
1414
use function sprintf;
1515

1616
/** @psalm-suppress all */
17-
class PostgreSQLPlatformDecorator extends PostgreSQLPlatform
17+
class PostgreSQLPlatformDecorator extends PostgreSQL120Platform
1818
{
1919
public function getCreateIndexSQL(Index $index, string $table) : string
2020
{

0 commit comments

Comments
 (0)