@@ -36,7 +36,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
36
36
min : 2
37
37
max : 50
38
38
minMessage : " Your first name must be at least {{ limit }} characters long"
39
- maxMessage : " Your first name cannot be longer than {{ limit }} characters long "
39
+ maxMessage : " Your first name cannot be longer than {{ limit }} characters"
40
40
41
41
.. code-block :: php-annotations
42
42
@@ -52,7 +52,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
52
52
* min = 2,
53
53
* max = 50,
54
54
* minMessage = "Your first name must be at least {{ limit }} characters long",
55
- * maxMessage = "Your first name cannot be longer than {{ limit }} characters long "
55
+ * maxMessage = "Your first name cannot be longer than {{ limit }} characters"
56
56
* )
57
57
*/
58
58
protected $firstName;
@@ -72,7 +72,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
72
72
<option name =" min" >2</option >
73
73
<option name =" max" >50</option >
74
74
<option name =" minMessage" >Your first name must be at least {{ limit }} characters long</option >
75
- <option name =" maxMessage" >Your first name cannot be longer than {{ limit }} characters long </option >
75
+ <option name =" maxMessage" >Your first name cannot be longer than {{ limit }} characters</option >
76
76
</constraint >
77
77
</property >
78
78
</class >
@@ -94,7 +94,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
94
94
'min' => 2,
95
95
'max' => 50,
96
96
'minMessage' => 'Your first name must be at least {{ limit }} characters long',
97
- 'maxMessage' => 'Your first name cannot be longer than {{ limit }} characters long ',
97
+ 'maxMessage' => 'Your first name cannot be longer than {{ limit }} characters',
98
98
)));
99
99
}
100
100
}
0 commit comments