@@ -39,7 +39,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
39
39
min : 2
40
40
max : 50
41
41
minMessage : " Your first name must be at least {{ limit }} characters length"
42
- maxMessage : " Your first name cannot be longer than than {{ limit }} characters length"
42
+ maxMessage : " Your first name cannot be longer than {{ limit }} characters length"
43
43
44
44
.. code-block :: php-annotations
45
45
@@ -55,7 +55,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
55
55
* min = "2",
56
56
* max = "50",
57
57
* minMessage = "Your first name must be at least {{ limit }} characters length",
58
- * maxMessage = "Your first name cannot be longer than than {{ limit }} characters length"
58
+ * maxMessage = "Your first name cannot be longer than {{ limit }} characters length"
59
59
* )
60
60
*/
61
61
protected $firstName;
@@ -70,7 +70,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
70
70
<option name =" min" >2</option >
71
71
<option name =" max" >50</option >
72
72
<option name =" minMessage" >Your first name must be at least {{ limit }} characters length</option >
73
- <option name =" maxMessage" >Your first name cannot be longer than than {{ limit }} characters length</option >
73
+ <option name =" maxMessage" >Your first name cannot be longer than {{ limit }} characters length</option >
74
74
</constraint >
75
75
</property >
76
76
</class >
@@ -91,7 +91,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
91
91
'min' => 2,
92
92
'max' => 50,
93
93
'minMessage' => 'Your first name must be at least {{ limit }} characters length',
94
- 'maxMessage' => 'Your first name cannot be longer than than {{ limit }} characters length',
94
+ 'maxMessage' => 'Your first name cannot be longer than {{ limit }} characters length',
95
95
)));
96
96
}
97
97
}
@@ -121,7 +121,7 @@ charset
121
121
**type **: ``string `` **default **: ``UTF-8 ``
122
122
123
123
The charset to be used when computing value's length. The :phpfunction: `grapheme_strlen ` PHP
124
- function is used if available. If not, the the :phpfunction: `mb_strlen ` PHP function
124
+ function is used if available. If not, the :phpfunction: `mb_strlen ` PHP function
125
125
is used if available. If neither are available, the :phpfunction: `strlen ` PHP function
126
126
is used.
127
127
0 commit comments