From e4598c2b4fea05e6b1cdb738ef14914d26dddbf1 Mon Sep 17 00:00:00 2001 From: Pavol Tuka <30590523+pavol-tk@users.noreply.github.com> Date: Thu, 7 Jan 2021 13:02:01 +0100 Subject: [PATCH] Rename parameter of @method configureContainer Default application Kernel has `configureContainer` method defined with `$container` as first parameter. PhpStorm inspection said: ``` Parameter's name changed during inheritance Parameter's name changed from 'c' to 'container' ``` --- src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php b/src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php index 8e5247faea..4df9fde6e4 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php +++ b/src/Symfony/Bundle/FrameworkBundle/Kernel/MicroKernelTrait.php @@ -29,7 +29,7 @@ use Symfony\Component\Routing\RouteCollectionBuilder; * @author Fabien Potencier * * @method void configureRoutes(RoutingConfigurator $routes) - * @method void configureContainer(ContainerConfigurator $c) + * @method void configureContainer(ContainerConfigurator $container) */ trait MicroKernelTrait {