File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Example Usage
31
31
32
32
Before using this field, you'll need to have some PHP enumeration (or "enum" for
33
33
short) defined somewhere in your application. This enum has to be of type
34
- "backed enum", where each keyword defines a scalar value such a string::
34
+ "backed enum", where each keyword defines a scalar value such as a string::
35
35
36
36
// src/Config/TextAlign.php
37
37
namespace App\Config;
@@ -53,8 +53,8 @@ Instead of using the values of the enumeration in a ``choices`` option, the
53
53
$builder->add('alignment', EnumType::class, ['class' => TextAlign::class]);
54
54
55
55
This will display a ``<select> `` tag with the three possible values defined in
56
- the ``TextAlign `` enum. Use the `` expanded `` and `` multiple `` options to display
57
- these values as ``<input type="checkbox"> `` and ``<input type="radio"> ``.
56
+ the ``TextAlign `` enum. Use the `expanded `_ and `multiple `_ options to display
57
+ these values as ``<input type="checkbox"> `` or ``<input type="radio"> ``.
58
58
59
59
Field Options
60
60
-------------
You can’t perform that action at this time.
0 commit comments