File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,16 @@ DependencyInjection
7272 * The `ResolveDefinitionTemplatesPass` class is deprecated and will be removed in 4.0.
7373 Use the `ResolveChildDefinitionsPass` class instead.
7474
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+
7585Debug
7686-----
7787
Original file line number Diff line number Diff line change @@ -236,6 +236,17 @@ DependencyInjection
236236
237237 * The `ExtensionCompilerPass` has been moved to before-optimization passes with priority -1000.
238238
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+
239250DoctrineBridge
240251--------------
241252
You can’t perform that action at this time.
0 commit comments