File tree Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -360,11 +360,9 @@ public function getDefinedOptions()
360
360
*
361
361
* The normalizer should be a closure with the following signature:
362
362
*
363
- * ```php
364
- * function (Options $options, $value) {
365
- * // ...
366
- * }
367
- * ```
363
+ * function (Options $options, $value) {
364
+ * // ...
365
+ * }
368
366
*
369
367
* The closure is invoked when {@link resolve()} is called. The closure
370
368
* has access to the resolved values of other options through the passed
Original file line number Diff line number Diff line change @@ -29,10 +29,8 @@ interface OptionsResolverInterface
29
29
* evaluate the option value lazily. These closures must have one
30
30
* of the following signatures:
31
31
*
32
- * <code>
33
- * function (Options $options)
34
- * function (Options $options, $value)
35
- * </code>
32
+ * function (Options $options)
33
+ * function (Options $options, $value)
36
34
*
37
35
* The second parameter passed to the closure is the previously
38
36
* set default value, in case you are overwriting an existing
@@ -154,9 +152,7 @@ public function addAllowedTypes($allowedTypes);
154
152
*
155
153
* The normalizers should be closures with the following signature:
156
154
*
157
- * <code>
158
- * function (Options $options, $value)
159
- * </code>
155
+ * function (Options $options, $value)
160
156
*
161
157
* The second parameter passed to the closure is the value of
162
158
* the option.
You can’t perform that action at this time.
0 commit comments