@@ -39,7 +39,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
3939 min : 2
4040 max : 50
4141 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"
4343
4444 .. code-block :: php-annotations
4545
@@ -55,7 +55,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
5555 * min = "2",
5656 * max = "50",
5757 * 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"
5959 * )
6060 */
6161 protected $firstName;
@@ -70,7 +70,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
7070 <option name =" min" >2</option >
7171 <option name =" max" >50</option >
7272 <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 >
7474 </constraint >
7575 </property >
7676 </class >
@@ -91,7 +91,7 @@ To verify that the ``firstName`` field length of a class is between "2" and
9191 'min' => 2,
9292 'max' => 50,
9393 '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',
9595 )));
9696 }
9797 }
@@ -121,7 +121,7 @@ charset
121121**type **: ``string `` **default **: ``UTF-8 ``
122122
123123The 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
125125is used if available. If neither are available, the :phpfunction: `strlen ` PHP function
126126is used.
127127
0 commit comments