@@ -79,29 +79,31 @@ FrameworkBundle
79
79
* The XML routing configuration files (` errors.xml ` and ` webhook.xml ` ) are
80
80
deprecated, use their PHP equivalent ones:
81
81
82
- * Before*
83
- ``` yaml
84
- when@dev :
85
- _errors :
86
- resource : ' @FrameworkBundle/Resources/config/routing/errors.xml'
87
- prefix : /_error
82
+ Before:
88
83
89
- webhook :
90
- resource : ' @FrameworkBundle/Resources/config/routing/webhook.xml'
91
- prefix : /webhook
92
- ` ` `
84
+ ``` yaml
85
+ when@dev :
86
+ _errors :
87
+ resource : ' @FrameworkBundle/Resources/config/routing/errors.xml'
88
+ prefix : /_error
93
89
94
- *After*
95
- ` ` ` yaml
96
- when@dev :
97
- _errors :
98
- resource : ' @FrameworkBundle/Resources/config/routing/errors.php '
99
- prefix : /_error
90
+ webhook :
91
+ resource : ' @FrameworkBundle/Resources/config/routing/webhook.xml '
92
+ prefix : /webhook
93
+ ` ` `
94
+
95
+ After:
100
96
101
- webhook :
102
- resource : ' @FrameworkBundle/Resources/config/routing/webhook.php'
103
- prefix : /webhook
104
- ` ` `
97
+ ` ` ` yaml
98
+ when@dev :
99
+ _errors :
100
+ resource : ' @FrameworkBundle/Resources/config/routing/errors.php'
101
+ prefix : /_error
102
+
103
+ webhook :
104
+ resource : ' @FrameworkBundle/Resources/config/routing/webhook.php'
105
+ prefix : /webhook
106
+ ` ` `
105
107
106
108
HttpFoundation
107
109
--------------
@@ -139,36 +141,6 @@ PropertyInfo
139
141
* Deprecate the `PropertyTypeExtractorInterface::getTypes()` method, use `PropertyTypeExtractorInterface::getType()` instead
140
142
* Deprecate the `ConstructorArgumentTypeExtractorInterface::getTypesFromConstructor()` method, use `ConstructorArgumentTypeExtractorInterface::getTypeFromConstructor()` instead
141
143
142
- Routing
143
- -------
144
-
145
- * The XML routing configuration files (`profiler.xml` and `wdt.xml`) are
146
- deprecated, use their PHP equivalent ones :
147
-
148
- *Before*
149
- ` ` ` yaml
150
- when@dev:
151
- web_profiler_wdt:
152
- resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml'
153
- prefix: /_wdt
154
-
155
- web_profiler_profiler:
156
- resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml'
157
- prefix: /_profiler
158
- ` ` `
159
-
160
- *After*
161
- ` ` ` yaml
162
- when@dev:
163
- web_profiler_wdt:
164
- resource: '@WebProfilerBundle/Resources/config/routing/wdt.php'
165
- prefix: /_wdt
166
-
167
- web_profiler_profiler:
168
- resource: '@WebProfilerBundle/Resources/config/routing/profiler.php
169
- prefix: /_profiler
170
- ` ` `
171
-
172
144
Security
173
145
--------
174
146
@@ -307,6 +279,38 @@ VarExporter
307
279
* Deprecate `LazyGhostTrait` and `LazyProxyTrait`, use native lazy objects instead
308
280
* Deprecate `ProxyHelper::generateLazyGhost()`, use native lazy objects instead
309
281
282
+ WebProfilerBundle
283
+ -----------------
284
+
285
+ * The XML routing configuration files (`profiler.xml` and `wdt.xml`) are
286
+ deprecated, use their PHP equivalent ones :
287
+
288
+ Before :
289
+
290
+ ` ` ` yaml
291
+ when@dev:
292
+ web_profiler_wdt:
293
+ resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml'
294
+ prefix: /_wdt
295
+
296
+ web_profiler_profiler:
297
+ resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml'
298
+ prefix: /_profiler
299
+ ` ` `
300
+
301
+ After :
302
+
303
+ ` ` ` yaml
304
+ when@dev:
305
+ web_profiler_wdt:
306
+ resource: '@WebProfilerBundle/Resources/config/routing/wdt.php'
307
+ prefix: /_wdt
308
+
309
+ web_profiler_profiler:
310
+ resource: '@WebProfilerBundle/Resources/config/routing/profiler.php
311
+ prefix: /_profiler
312
+ ` ` `
313
+
310
314
Workflow
311
315
--------
312
316
0 commit comments