File tree 2 files changed +21
-0
lines changed 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,16 @@ DependencyInjection
72
72
* The `ResolveDefinitionTemplatesPass` class is deprecated and will be removed in 4.0.
73
73
Use the `ResolveChildDefinitionsPass` class instead.
74
74
75
+ * Unless you're using a custom autoloader, you should enable the `container.dumper.inline_class_loader`
76
+ parameter. This can drastically improve DX by reducing the time to load classes
77
+ when the `DebugClassLoader` is enabled. If you're using `FrameworkBundle`, this
78
+ performance improvement will also impact the "dev" environment :
79
+
80
+ ` ` ` yml
81
+ parameters:
82
+ container.dumper.inline_class_loader: true
83
+ ` ` `
84
+
75
85
Debug
76
86
-----
77
87
Original file line number Diff line number Diff line change @@ -236,6 +236,17 @@ DependencyInjection
236
236
237
237
* The `ExtensionCompilerPass` has been moved to before-optimization passes with priority -1000.
238
238
239
+ * In 3.4, parameter `container.dumper.inline_class_loader` was introduced. Unless
240
+ you're using a custom autoloader, you should enable this parameter. This can
241
+ drastically improve DX by reducing the time to load classes when the `DebugClassLoader`
242
+ is enabled. If you're using `FrameworkBundle`, this performance improvement will
243
+ also impact the "dev" environment :
244
+
245
+ ` ` ` yml
246
+ parameters:
247
+ container.dumper.inline_class_loader: true
248
+ ` ` `
249
+
239
250
DoctrineBridge
240
251
--------------
241
252
You can’t perform that action at this time.
0 commit comments