File tree 1 file changed +1
-9
lines changed 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ registered and the ``entity_manager_name`` setting for ``acme_hello`` is set to
154
154
Prepending Extension in the Bundle Class
155
155
----------------------------------------
156
156
157
- You can also append or prepend extension configuration directly in your
157
+ You can also prepend extension configuration directly in your
158
158
Bundle class if you extend from the :class: `Symfony\\ Component\\ HttpKernel\\ Bundle\\ AbstractBundle `
159
159
class and define the :method: `Symfony\\ Component\\ HttpKernel\\ Bundle\\ AbstractBundle::prependExtension `
160
160
method::
@@ -171,14 +171,6 @@ method::
171
171
$containerBuilder->prependExtensionConfig('framework', [
172
172
'cache' => ['prefix_seed' => 'foo/bar'],
173
173
]);
174
-
175
- // append
176
- $containerConfigurator->extension('framework', [
177
- 'cache' => ['prefix_seed' => 'foo/bar'],
178
- ]);
179
-
180
- // append from file
181
- $containerConfigurator->import('../config/packages/cache.php');
182
174
}
183
175
}
184
176
You can’t perform that action at this time.
0 commit comments