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 @@ -162,7 +162,7 @@ Prepending Extension in the Bundle Class
162
162
163
163
The ``AbstractBundle `` class was introduced in Symfony 6.1.
164
164
165
- You can also append or prepend extension configuration directly in your
165
+ You can also prepend extension configuration directly in your
166
166
Bundle class if you extend from the :class: `Symfony\\ Component\\ HttpKernel\\ Bundle\\ AbstractBundle `
167
167
class and define the :method: `Symfony\\ Component\\ HttpKernel\\ Bundle\\ AbstractBundle::prependExtension `
168
168
method::
@@ -179,14 +179,6 @@ method::
179
179
$containerBuilder->prependExtensionConfig('framework', [
180
180
'cache' => ['prefix_seed' => 'foo/bar'],
181
181
]);
182
-
183
- // append
184
- $containerConfigurator->extension('framework', [
185
- 'cache' => ['prefix_seed' => 'foo/bar'],
186
- ]);
187
-
188
- // append from file
189
- $containerConfigurator->import('../config/packages/cache.php');
190
182
}
191
183
}
192
184
You can’t perform that action at this time.
0 commit comments