Skip to content

Commit 425490f

Browse files
committed
Fix required parameter order
1 parent a49e680 commit 425490f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

php/Filter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ public function __construct(
1111
public string $key,
1212
public string $label,
1313
public array $options,
14-
public ?string $value = null,
1514
public bool $noFilterOption,
1615
public string $noFilterOptionLabel,
17-
public string $type
16+
public string $type,
17+
public ?string $value = null,
1818
) {
1919
}
2020

0 commit comments

Comments
 (0)