We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c88a52d commit 30a28caCopy full SHA for 30a28ca
composer.json
@@ -31,7 +31,7 @@
31
"symplify/easy-coding-standard": "^10.1"
32
},
33
"scripts": {
34
- "lint:fix": "./vendor/bin/ecs --fix",
+ "lint:fix": "./vendor/bin/ecs --fix--clear-cache --no-progress-bar",
35
"lint:stan": "./vendor/bin/phpstan",
36
"lint:upgrade": "vendor/bin/rector process",
37
"lint": "composer lint:fix && composer lint:upgrade && composer lint:stan",
src/QueryBuilder.php
@@ -99,7 +99,7 @@ public function setParams(array $params): self
99
public function build(): array
100
{
101
$query = $this->params;
102
- if (! isset($query['body'])) {
+ if (false === isset($query['body'])) {
103
$query['body'] = [];
104
}
105
0 commit comments