8000 cs fix · symfony/symfony@6bc0f35 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6bc0f35

Browse files
cs fix
1 parent c4df3a7 commit 6bc0f35

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/Symfony/Bundle/FrameworkBundle/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', [

src/Symfony/Bundle/FrameworkBundle/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!');

src/Symfony/Bundle/WebProfilerBundle/Tests/Functional/WebProfilerBundleKernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ public function registerBundles(): iterable
3232
];
3333
}
3434

35-
protected function configureRoutes(RoutingConfigurator $routes)
35+
protected function configureRoutes(RoutingConfigurator $routes): void
3636
{
3737
$routes->import(__DIR__.'/../../Resources/config/routing/profiler.xml')->prefix('/_profiler');
3838
$routes->import(__DIR__.'/../../Resources/config/routing/wdt.xml')->prefix('/_wdt');
3939
$routes->add('_', '/')->controller('kernel::homepageController');
4040
}
4141

42-
protected function configureContainer(ContainerBuilder $containerBuilder, LoaderInterface $loader)
42+
protected function configureContainer(ContainerBuilder $containerBuilder, LoaderInterface $loader): void
4343
{
4444
$containerBuilder->loadFromExtension('framework', [
4545
'secret' => 'foo-secret',

src/Symfony/Component/HttpKernel/HttpKernelBrowser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
*
2626
* @author Fabien Potencier <fabien@symfony.com>
2727
*
28-
* @method Request getRequest() A Request instance
29-
* @method Response getResponse() A Response instance
28+
* @method Request getRequest()
29+
* @method Response getResponse()
3030
*/
3131
class HttpKernelBrowser extends AbstractBrowser
3232
{

0 commit comments

Comments
 (0)
0