Skip to content

Commit 9f5a540

Browse files
xabbuhnicolas-grekas
authored andcommitted
fix package name in deprecation message
1 parent 49e2028 commit 9f5a540

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/FrameworkExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3302,7 +3302,7 @@ private function registerRateLimiterConfiguration(array $config, ContainerBuilde
33023302

33033303
if (interface_exists(RateLimiterFactoryInterface::class)) {
33043304
$container->registerAliasForArgument($limiterId, RateLimiterFactoryInterface::class, $name.'.limiter');
3305-
$factoryAlias->setDeprecated('symfony/dependency-injection', '7.3', \sprintf('The "%%alias_id%%" autowiring alias is deprecated and will be removed in 8.0, use "%s $%s" instead.', RateLimiterFactoryInterface::class, (new Target($name.'.limiter'))->getParsedName()));
3305+
$factoryAlias->setDeprecated('symfony/framework-bundle', '7.3', \sprintf('The "%%alias_id%%" autowiring alias is deprecated and will be removed in 8.0, use "%s $%s" instead.', RateLimiterFactoryInterface::class, (new Target($name.'.limiter'))->getParsedName()));
33063306
$internalAliasId = \sprintf('.%s $%s.limiter', RateLimiterFactory::class, $name);
33073307

33083308
if ($container->hasAlias($internalAliasId)) {

0 commit comments

Comments
 (0)