@@ -275,17 +275,17 @@ you can pass the class name and the method as an array.
275275
276276----------------- 
277277
278- callback
279- ~~~~~~~~ 
278+ `` callback `` 
279+ ~~~~~~~~~~~~  
280280
281281**type **: ``string|array|Closure ``
282282
283283This is a callback method that can be used instead of the `choices `_ option
284284to return the choices array. See
285285`Supplying the Choices with a Callback Function `_ for details on its usage.
286286
287- choices
288- ~~~~~~~ 
287+ `` choices `` 
288+ ~~~~~~~~~~~  
289289
290290**type **: ``array `` [:ref: `default option  <validation-default-option >`]
291291
@@ -295,8 +295,8 @@ will be matched against this array.
295295
296296.. include :: /reference/constraints/_groups-option.rst.inc 
297297
298- max
299- ~~~ 
298+ `` max `` 
299+ ~~~~~~~  
300300
301301**type **: ``integer ``
302302
@@ -305,8 +305,8 @@ to force no more than XX number of values to be selected. For example, if
305305``max `` is 3, but the input array contains 4 valid items, the validation
306306will fail.
307307
308- maxMessage
309- ~~~~~~~~~~ 
308+ `` maxMessage `` 
309+ ~~~~~~~~~~~~~~  
310310
311311**type **: ``string `` **default **: ``You must select at most {{ limit }} choices. ``
312312
@@ -326,8 +326,8 @@ Parameter Description
326326
327327 The ``{{ choices }} `` parameter was introduced in Symfony 4.3.
328328
329- message
330- ~~~~~~~ 
329+ `` message `` 
330+ ~~~~~~~~~~~  
331331
332332**type **: ``string `` **default **: ``The value you selected is not a valid choice. ``
333333
@@ -344,8 +344,8 @@ Parameter Description
344344``{{ value }} `` The current (invalid) value
345345================= ============================================================ 
346346
347- min
348- ~~~ 
347+ `` min `` 
348+ ~~~~~~~  
349349
350350**type **: ``integer ``
351351
@@ -354,8 +354,8 @@ to force at least XX number of values to be selected. For example, if
354354``min `` is 3, but the input array only contains 2 valid items, the validation
355355will fail.
356356
357- minMessage
358- ~~~~~~~~~~ 
357+ `` minMessage `` 
358+ ~~~~~~~~~~~~~~  
359359
360360**type **: ``string `` **default **: ``You must select at least {{ limit }} choices. ``
361361
@@ -375,8 +375,8 @@ Parameter Description
375375
376376 The ``{{ choices }} `` parameter was introduced in Symfony 4.3.
377377
378- multiple
379- ~~~~~~~~ 
378+ `` multiple `` 
379+ ~~~~~~~~~~~~  
380380
381381**type **: ``boolean `` **default **: ``false ``
382382
@@ -385,8 +385,8 @@ of a single, scalar value. The constraint will check that each value of
385385the input array can be found in the array of valid choices. If even one
386386of the input values cannot be found, the validation will fail.
387387
388- multipleMessage
389- ~~~~~~~~~~~~~~~ 
388+ `` multipleMessage `` 
389+ ~~~~~~~~~~~~~~~~~~~  
390390
391391**type **: ``string `` **default **: ``One or more of the given values is invalid. ``
392392
0 commit comments