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 6398476 commit 9c4c578Copy full SHA for 9c4c578
src/SelectTree.php
@@ -329,7 +329,7 @@ public function append(Closure|array|null $append = null): static
329
if (is_array($this->append) && isset($this->append['name'], $this->append['value'])) {
330
$this->append['value'] = (string) $this->append['value'];
331
} else if (is_null($this->append)) {
332
- # Avoid throwing an exception in case $append is explicitly set to null, or a Closure evaluates to null.
+ // Avoid throwing an exception in case $append is explicitly set to null, or a Closure evaluates to null.
333
} else {
334
throw new \InvalidArgumentException('The provided append value must be an array with "name" and "value" keys.');
335
}
0 commit comments