15
15
16
16
* The ` choices_as_values ` option of the ` ChoiceType ` has been deprecated and
17
17
will be removed in Symfony 4.0.
18
+
18
19
* Support for data objects that implements both ` Traversable ` and ` ArrayAccess `
19
20
in ` ResizeFormListener::preSubmit ` method has been deprecated and will be
20
21
removed in Symfony 4.0.
@@ -23,10 +24,11 @@ FrameworkBundle
23
24
---------------
24
25
25
26
* As it was never an officially supported feature, the support for absolute
26
- template paths has been deprecated and will be removed in Symfony 4.0.
27
+ template paths in the template name parse has been deprecated and will be
28
+ removed in Symfony 4.0.
27
29
28
- * The following form types registered as services are deprecated since 3.1
29
- and will be removed in 4.0; use their fully-qualified class name instead:
30
+ * The following form types registered as services have been deprecated and
31
+ will be removed in Symfony 4.0; use their fully-qualified class name instead:
30
32
31
33
- ` "form.type.birthday" `
32
34
- ` "form.type.checkbox" `
@@ -75,7 +77,8 @@ Serializer
75
77
Yaml
76
78
----
77
79
78
- * Deprecated usage of ` % ` at the beginning of an unquoted string.
80
+ * Usage of ` % ` at the beginning of an unquoted string has been deprecated and
81
+ will lead to a ` ParseException ` in Symfony 4.0.
79
82
80
83
* The ` Dumper::setIndentation() ` method is deprecated and will be removed in
81
84
Symfony 4.0. Pass the indentation level to the constructor instead.
140
143
Yaml::dump(array('foo' => new A(), 'bar' => 1), 0, 0, Yaml::DUMP_EXCEPTION_ON_INVALID_TYPE);
141
144
```
142
145
143
- * Deprecated support for passing ` true ` /` false ` as the fifth argument to the ` dump() ` method to toggle object support.
146
+ * Deprecated support for passing ` true ` /` false ` as the fifth argument to the
147
+ ` dump() ` method to toggle object support.
144
148
145
149
Before:
146
150
160
164
Validator
161
165
---------
162
166
163
- * The ` DateTimeValidator::PATTERN ` constant is deprecated and will be removed in
164
- Symfony 4.0.
167
+ * The ` DateTimeValidator::PATTERN ` constant has been deprecated and will be
168
+ removed in Symfony 4.0.
0 commit comments