Skip to content

Commit c9f33e1

Browse files
cs fix
1 parent 78007ce commit c9f33e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/Kernel/ConcreteMicroKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ protected function configureRoutes(RoutingConfigurator $routes): void
7979
$routes->add('danger', '/danger')->controller('kernel::dangerousAction');
8080
}
8181

82-
protected function configureContainer(ContainerBuilder $c, LoaderInterface $loader)
82+
protected function configureContainer(ContainerBuilder $c, LoaderInterface $loader): void
8383
{
8484
$c->register('logger', NullLogger::class);
8585
$c->loadFromExtension('framework', [

Tests/Kernel/flex-style/src/FlexStyleMicroKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ protected function configureRoutes(RoutingConfigurator $routes): void
7676
$routes->add('halloween', '/')->controller([$this, 'halloweenAction']);
7777
}
7878

79-
protected function configureContainer(ContainerConfigurator $c)
79+
protected function configureContainer(ContainerConfigurator $c): void
8080
{
8181
$c->parameters()
8282
->set('halloween', 'Have a great day!');

0 commit comments

Comments
 (0)