Skip to content

Commit 1e51690

Browse files
committed
fix: Typo in argument
1 parent 75b8f6f commit 1e51690

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Forms/Select.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static function create(
3232
}
3333

3434
/**
35-
* @param array<string, string> $options
35+
* @param array<string|int, string> $options
3636
* @param string|string[] $selected
3737
*/
3838
final private function __construct(
@@ -43,9 +43,9 @@ final private function __construct(
4343
) {
4444
}
4545

46-
public function wrapperProps(string ...$propperties): self
46+
public function wrapperProps(string ...$properties): self
4747
{
48-
$this->wrapperProperties = $propperties;
48+
$this->wrapperProperties = $properties;
4949
return $this;
5050
}
5151

0 commit comments

Comments
 (0)