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 c1691a8 commit e11a1deCopy full SHA for e11a1de
src/Entity/Comment.php
@@ -41,7 +41,7 @@ class Comment
41
42
#[ORM\Column(type: Types::TEXT)]
43
#[Assert\NotBlank(message: 'comment.blank')]
44
- #[Assert\Length(min: 5, minMessage: 'comment.too_short', max: 10000, maxMessage: 'comment.too_long')]
+ #[Assert\Length(min: 5, max: 10000, minMessage: 'comment.too_short', maxMessage: 'comment.too_long')]
45
private ?string $content = null;
46
47
#[ORM\Column]
0 commit comments