Skip to content

Commit e11a1de

Browse files
authored
Change order of attribute arguments
1 parent c1691a8 commit e11a1de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Entity/Comment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Comment
4141

4242
#[ORM\Column(type: Types::TEXT)]
4343
#[Assert\NotBlank(message: 'comment.blank')]
44-
#[Assert\Length(min: 5, minMessage: 'comment.too_short', max: 10000, maxMessage: 'comment.too_long')]
44+
#[Assert\Length(min: 5, max: 10000, minMessage: 'comment.too_short', maxMessage: 'comment.too_long')]
4545
private ?string $content = null;
4646

4747
#[ORM\Column]

0 commit comments

Comments
 (0)