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 617eb5a commit 67ad6d7Copy full SHA for 67ad6d7
src/QueryBuilderRequest.php
@@ -51,7 +51,7 @@ public function appends(): Collection
51
52
$appendParts = $this->getRequestData($appendParameterName);
53
54
- if (! is_array($appendParts)) {
+ if (! is_array($appendParts) && ! is_null($appendParts)) {
55
$appendParts = explode(static::getAppendsArrayValueDelimiter(), $appendParts);
56
}
57
0 commit comments