Skip to content

Commit

Permalink
Merge branch '3.6.x' into 3.7.x
Browse files Browse the repository at this point in the history
* 3.6.x:
  PHPStan 1.10.21, PHPUnit 9.6.9, JetBrains Stubs 2023.1 (#6073)
  Fix binding unused parameter (#6072)
  • Loading branch information
derrabus committed Jun 28, 2023
2 parents d722992 + f5550bb commit 428f7b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
"require-dev": {
"doctrine/coding-standard": "12.0.0",
"fig/log-test": "^1",
"jetbrains/phpstorm-stubs": "2022.3",
"phpstan/phpstan": "1.10.14",
"jetbrains/phpstorm-stubs": "2023.1",
"phpstan/phpstan": "1.10.21",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "9.6.7",
"phpunit/phpunit": "9.6.9",
"psalm/plugin-phpunit": "0.18.4",
"squizlabs/php_codesniffer": "3.7.2",
"symfony/cache": "^5.4|^6.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Schema/SQLServerSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ protected function selectTableNames(string $databaseName): Result
ORDER BY name
SQL;

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

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

0 comments on commit 428f7b1

Please sign in to comment.