Skip to content

Commit 9c4c578

Browse files
Update src/SelectTree.php
1 parent 6398476 commit 9c4c578

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SelectTree.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ public function append(Closure|array|null $append = null): static
329329
if (is_array($this->append) && isset($this->append['name'], $this->append['value'])) {
330330
$this->append['value'] = (string) $this->append['value'];
331331
} 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.
332+
// Avoid throwing an exception in case $append is explicitly set to null, or a Closure evaluates to null.
333333
} else {
334334
throw new \InvalidArgumentException('The provided append value must be an array with "name" and "value" keys.');
335335
}

0 commit comments

Comments
 (0)