Skip to content

Commit 3347605

Browse files
Use more explicit variable name
1 parent 2b90988 commit 3347605

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: Kernel/MicroKernelTrait.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,19 @@ abstract protected function configureRoutes(RouteCollectionBuilder $routes);
3737
*
3838
* You can register extensions:
3939
*
40-
* $c->loadFromExtension('framework', [
40+
* $container->loadFromExtension('framework', [
4141
* 'secret' => '%secret%'
4242
* ]);
4343
*
4444
* Or services:
4545
*
46-
* $c->register('halloween', 'FooBundle\HalloweenProvider');
46+
* $container->register('halloween', 'FooBundle\HalloweenProvider');
4747
*
4848
* Or parameters:
4949
*
50-
* $c->setParameter('halloween', 'lot of fun');
50+
* $container->setParameter('halloween', 'lot of fun');
5151
*/
52-
abstract protected function configureContainer(ContainerBuilder $c, LoaderInterface $loader);
52+
abstract protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader);
5353

5454
/**
5555
* {@inheritdoc}

0 commit comments

Comments
 (0)