Skip to content

Commit

Permalink
Merge pull request #4403 from simPod/patch-1
Browse files Browse the repository at this point in the history
Remove redundant phpstan param from DriverManager::getConnection()
  • Loading branch information
morozov committed Nov 14, 2020
2 parents 74bc147 + 7322944 commit c2c8488
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion lib/Doctrine/DBAL/DriverManager.php
Expand Up @@ -119,7 +119,6 @@ private function __construct()
*
* @throws Exception
*
* @phpstan-param mixed[] $params
* @psalm-return ($params is array{wrapperClass:mixed} ? T : Connection)
* @template T of Connection
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/Doctrine/Tests/DBAL/ConnectionTest.php
Expand Up @@ -36,7 +36,7 @@ class ConnectionTest extends DbalTestCase
/** @var Connection */
private $connection;

/** @var string[] */
/** @var array{wrapperClass?: class-string<Connection>} */
protected $params = [
'driver' => 'pdo_mysql',
'host' => 'localhost',
Expand Down

0 comments on commit c2c8488

Please sign in to comment.