Commit be1ff47
committed
minor #1596 Change order of attribute arguments (JeroenMoonen)
This PR was merged into the main branch.
Discussion
----------
Change order of attribute arguments
According to the argument list the sorting was incorrect. Correct sorting is:
```
public function __construct(
int|array|null $exactly = null,
?int $min = null,
?int $max = null,
?string $charset = null,
?callable $normalizer = null,
?string $countUnit = null,
?string $exactMessage = null,
?string $minMessage = null,
?string $maxMessage = null,
?string $charsetMessage = null,
?array $groups = null,
mixed $payload = null,
?array $options = null,
) {
```
Commits
-------
e11a1de Change order of attribute arguments1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| |||
0 commit comments