Remove unnecessary union

PostgreSQL100Platform inherits from PostgreSQL94Platform.
parent 3bcf54c4
......@@ -3,7 +3,6 @@
namespace Doctrine\DBAL\Tests\Platforms;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Platforms\PostgreSQL100Platform;
use Doctrine\DBAL\Platforms\PostgreSQL94Platform;
use Doctrine\DBAL\Schema\Column;
use Doctrine\DBAL\Schema\ColumnDiff;
......@@ -19,10 +18,10 @@ use function sprintf;
abstract class AbstractPostgreSQLPlatformTestCase extends AbstractPlatformTestCase
{
/** @var PostgreSQL94Platform|PostgreSQL100Platform */
/** @var PostgreSQL94Platform */
protected $platform;
/** @return PostgreSQL94Platform|PostgreSQL100Platform */
/** @return PostgreSQL94Platform */
abstract public function createPlatform() : AbstractPlatform;
public function getGenerateTableSql() : string
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment