Skip to content
Snippets Groups Projects
Commit 30c8f94a authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

psalm: Fix parameter naming to match base class

parent f1715aca
No related branches found
No related tags found
1 merge request!1Update all non-major dependencies
Pipeline #15704 passed
......@@ -27,10 +27,10 @@ class Kernel extends BaseKernel
}
}
protected function configureContainer(ContainerBuilder $c, LoaderInterface $loader): void
protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader): void
{
$c->addResource(new FileResource($this->getProjectDir().'/config/bundles.php'));
$c->setParameter('container.dumper.inline_class_loader', true);
$container->addResource(new FileResource($this->getProjectDir().'/config/bundles.php'));
$container->setParameter('container.dumper.inline_class_loader', true);
$confDir = $this->getProjectDir().'/config';
$loader->load($confDir.'/{packages}/*'.self::CONFIG_EXTS, 'glob');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment