@@ -320,17 +320,17 @@ you can pass the class name and the method as an array.
320320 Available Options
321321-----------------
322322
323- callback
324- ~~~~~~~~
323+ `` callback ``
324+ ~~~~~~~~~~~~
325325
326326**type **: ``string|array|Closure ``
327327
328328This is a callback method that can be used instead of the `choices `_ option
329329to return the choices array. See
330330`Supplying the Choices with a Callback Function `_ for details on its usage.
331331
332- choices
333- ~~~~~~~
332+ `` choices ``
333+ ~~~~~~~~~~~
334334
335335**type **: ``array `` [:ref: `default option <validation-default-option >`]
336336
@@ -340,8 +340,8 @@ will be matched against this array.
340340
341341.. include :: /reference/constraints/_groups-option.rst.inc
342342
343- max
344- ~~~
343+ `` max ``
344+ ~~~~~~~
345345
346346**type **: ``integer ``
347347
@@ -350,8 +350,8 @@ to force no more than XX number of values to be selected. For example, if
350350``max `` is 3, but the input array contains 4 valid items, the validation
351351will fail.
352352
353- maxMessage
354- ~~~~~~~~~~
353+ `` maxMessage ``
354+ ~~~~~~~~~~~~~~
355355
356356**type **: ``string `` **default **: ``You must select at most {{ limit }} choices. ``
357357
@@ -367,8 +367,8 @@ Parameter Description
367367``{{ value }} `` The current (invalid) value
368368================= ============================================================
369369
370- message
371- ~~~~~~~
370+ `` message ``
371+ ~~~~~~~~~~~
372372
373373**type **: ``string `` **default **: ``The value you selected is not a valid choice. ``
374374
@@ -385,8 +385,8 @@ Parameter Description
385385``{{ value }} `` The current (invalid) value
386386================= ============================================================
387387
388- min
389- ~~~
388+ `` min ``
389+ ~~~~~~~
390390
391391**type **: ``integer ``
392392
@@ -395,8 +395,8 @@ to force at least XX number of values to be selected. For example, if
395395``min `` is 3, but the input array only contains 2 valid items, the validation
396396will fail.
397397
398- minMessage
399- ~~~~~~~~~~
398+ `` minMessage ``
399+ ~~~~~~~~~~~~~~
400400
401401**type **: ``string `` **default **: ``You must select at least {{ limit }} choices. ``
402402
@@ -412,8 +412,8 @@ Parameter Description
412412``{{ value }} `` The current (invalid) value
413413================= ============================================================
414414
415- multiple
416- ~~~~~~~~
415+ `` multiple ``
416+ ~~~~~~~~~~~~
417417
418418**type **: ``boolean `` **default **: ``false ``
419419
@@ -422,8 +422,8 @@ of a single, scalar value. The constraint will check that each value of
422422the input array can be found in the array of valid choices. If even one
423423of the input values cannot be found, the validation will fail.
424424
425- multipleMessage
426- ~~~~~~~~~~~~~~~
425+ `` multipleMessage ``
426+ ~~~~~~~~~~~~~~~~~~~
427427
428428**type **: ``string `` **default **: ``One or more of the given values is invalid. ``
429429
0 commit comments