diff --git a/composer.json b/composer.json index ab41cfa1cff..23796c25b83 100644 --- a/composer.json +++ b/composer.json @@ -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", diff --git a/src/Schema/SQLServerSchemaManager.php b/src/Schema/SQLServerSchemaManager.php index 15ed8f4a0d6..7177e1b9ac1 100644 --- a/src/Schema/SQLServerSchemaManager.php +++ b/src/Schema/SQLServerSchemaManager.php @@ -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