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 75b8f6f commit 1e51690Copy full SHA for 1e51690
src/Forms/Select.php
@@ -32,7 +32,7 @@ public static function create(
32
}
33
34
/**
35
- * @param array<string, string> $options
+ * @param array<string|int, string> $options
36
* @param string|string[] $selected
37
*/
38
final private function __construct(
@@ -43,9 +43,9 @@ final private function __construct(
43
) {
44
45
46
- public function wrapperProps(string ...$propperties): self
+ public function wrapperProps(string ...$properties): self
47
{
48
- $this->wrapperProperties = $propperties;
+ $this->wrapperProperties = $properties;
49
return $this;
50
51
0 commit comments