Skip to content

Commit

Permalink
Merge pull request #4040 from greg0ire/merge-up-mistakes
Browse files Browse the repository at this point in the history
Merge up mistakes
  • Loading branch information
greg0ire authored May 31, 2020
2 parents 90b68ab + eaa55bd commit 0d7999e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,6 @@
<!-- The SQLSRV_* functions are defined in the upper case by the sqlsrv extension and violate the standard
see https://docs.microsoft.com/en-us/sql/connect/php/constants-microsoft-drivers-for-php-for-sql-server -->
<rule ref="Squiz.PHP.LowercasePHPFunctions">
<exclude-pattern>lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvStatement.php</exclude-pattern>
<exclude-pattern>src/Driver/SQLSrv/SQLSrvStatement.php</exclude-pattern>
</rule>
</ruleset>
5 changes: 2 additions & 3 deletions tests/Platforms/AbstractPostgreSQLPlatformTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -19,10 +18,10 @@

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
Expand Down

0 comments on commit 0d7999e

Please sign in to comment.