Skip to content

Commit

Permalink
Use more explicit variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet authored Dec 11, 2020
1 parent 2b90988 commit 3347605
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Kernel/MicroKernelTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ abstract protected function configureRoutes(RouteCollectionBuilder $routes);
*
* You can register extensions:
*
* $c->loadFromExtension('framework', [
* $container->loadFromExtension('framework', [
* 'secret' => '%secret%'
* ]);
*
* Or services:
*
* $c->register('halloween', 'FooBundle\HalloweenProvider');
* $container->register('halloween', 'FooBundle\HalloweenProvider');
*
* Or parameters:
*
* $c->setParameter('halloween', 'lot of fun');
* $container->setParameter('halloween', 'lot of fun');
*/
abstract protected function configureContainer(ContainerBuilder $c, LoaderInterface $loader);
abstract protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader);

/**
* {@inheritdoc}
Expand Down

0 comments on commit 3347605

Please sign in to comment.