Skip to content

Commit e497544

Browse files
committed
Fix symfony 6.3 return type deprecations
1 parent b7ebb1f commit e497544

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

src/DependencyInjection/Compiler/HashGeneratorPass.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ class HashGeneratorPass implements CompilerPassInterface
2525

2626
/**
2727
* {@inheritdoc}
28+
*
29+
* @return void
2830
*/
2931
public function process(ContainerBuilder $container)
3032
{

src/DependencyInjection/Compiler/LoggerPass.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ class LoggerPass implements CompilerPassInterface
2121
{
2222
/**
2323
* {@inheritdoc}
24+
*
25+
* @return void
2426
*/
2527
public function process(ContainerBuilder $container)
2628
{

src/DependencyInjection/Compiler/SessionListenerPass.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ class SessionListenerPass implements CompilerPassInterface
2424
{
2525
/**
2626
* {@inheritdoc}
27+
*
28+
* @return void
2729
*/
2830
public function process(ContainerBuilder $container)
2931
{

src/DependencyInjection/Compiler/TagListenerPass.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ class TagListenerPass implements CompilerPassInterface
2222
{
2323
/**
2424
* {@inheritdoc}
25+
*
26+
* @return void
2527
*/
2628
public function process(ContainerBuilder $container)
2729
{

src/DependencyInjection/FOSHttpCacheExtension.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ public function getConfiguration(array $config, ContainerBuilder $container): Co
4646

4747
/**
4848
* {@inheritdoc}
49+
*
50+
* @return void
4951
*/
5052
public function load(array $configs, ContainerBuilder $container)
5153
{

src/FOSHttpCacheBundle.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ class FOSHttpCacheBundle extends Bundle
2323
{
2424
/**
2525
* {@inheritdoc}
26+
*
27+
* @return void
2628
*/
2729
public function build(ContainerBuilder $container)
2830
{

0 commit comments

Comments
 (0)