Skip to content

Commit

Permalink
Merge branch '3.7.x' into 4.0.x
Browse files Browse the repository at this point in the history
* 3.7.x:
  PHPStan 1.10.21, PHPUnit 9.6.9, JetBrains Stubs 2023.1 (doctrine#6073)
  Fix binding unused parameter (doctrine#6072)
  • Loading branch information
derrabus committed Jun 28, 2023
2 parents d069d3d + 428f7b1 commit 3b0813f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"doctrine/coding-standard": "12.0.0",
"fig/log-test": "^1",
"jetbrains/phpstorm-stubs": "dev-master#b51c647ece0a88c59fbc94028daebd047377bcdb",
"phpstan/phpstan": "1.10.14",
"phpstan/phpstan-phpunit": "1.3.11",
"phpstan/phpstan": "1.10.21",
"phpstan/phpstan-phpunit": "1.3.13",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "10.2.2",
"psalm/plugin-phpunit": "0.18.4",
Expand Down
2 changes: 1 addition & 1 deletion src/Schema/SQLServerSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ protected function selectTableNames(string $databaseName): Result
ORDER BY name
SQL;

return $this->connection->executeQuery($sql, [$databaseName]);
return $this->connection->executeQuery($sql);
}

protected function selectTableColumns(string $databaseName, ?string $tableName = null): Result
Expand Down

0 comments on commit 3b0813f

Please sign in to comment.