@@ -175,13 +175,13 @@ to the container::
175175
176176 class AcmeFeatureBundle extends AbstractBundle
177177 {
178- public function prependExtension(ContainerConfigurator $configurator , ContainerBuilder $container ): void
178+ public function prependExtension(ContainerConfigurator $container , ContainerBuilder $builder ): void
179179 {
180- if (!$this->isAssetMapperAvailable($container )) {
180+ if (!$this->isAssetMapperAvailable($builder )) {
181181 return;
182182 }
183183
184- $container ->prependExtensionConfig('framework', [
184+ $builder ->prependExtensionConfig('framework', [
185185 'asset_mapper' => [
186186 'paths' => [
187187 __DIR__ . '/../assets/dist' => '@acme/feature-bundle',
@@ -190,14 +190,14 @@ to the container::
190190 ]);
191191 }
192192
193- private function isAssetMapperAvailable(ContainerBuilder $container ): bool
193+ private function isAssetMapperAvailable(ContainerBuilder $builder ): bool
194194 {
195195 if (!interface_exists(AssetMapperInterface::class)) {
196196 return false;
197197 }
198198
199199 // check that FrameworkBundle 6.3 or higher is installed
200- $bundlesMetadata = $container ->getParameter('kernel.bundles_metadata');
200+ $bundlesMetadata = $builder ->getParameter('kernel.bundles_metadata');
201201 if (!isset($bundlesMetadata['FrameworkBundle'])) {
202202 return false;
203203 }