Skip to content

Commit 99f40cd

Browse files
committed
Fix codestyle manually
1 parent d6216d5 commit 99f40cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SelectboxTree.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function setMaxDepth(int $maxDepth): void
7979
{
8080
if ($maxDepth < 1) {
8181
$maxDepth = 1;
82-
} elseif ($maxDepth > 1000) {
82+
} elseif ($maxDepth > 1_000) {
8383
throw new \InvalidArgumentException('Max depth "' . $maxDepth . '" is too big. Maximum value is 1000.');
8484
}
8585
$this->maxDepth = $maxDepth;

0 commit comments

Comments
 (0)