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 5148d0f commit 3ee8a32Copy full SHA for 3ee8a32
src/FormData/PuzzleAddFormData.php
@@ -26,7 +26,7 @@ final class PuzzleAddFormData
26
27
// New puzzle fields (all modes when creating new)
28
#[Positive]
29
- #[Range(min: 10, max: 25000)]
+ #[Range(min: 10, max: 99999)]
30
public null|int $puzzlePiecesCount = null;
31
32
public null|UploadedFile $puzzlePhoto = null;
@@ -39,7 +39,7 @@ final class PuzzleAddFormData
39
40
// Speed Puzzling specific - time as separate fields
41
#[PositiveOrZero]
42
- #[Range(max: 99)]
+ #[Range(max: 999)]
43
public int $timeHours = 0;
44
45
0 commit comments