Skip to content

Commit e447ea2

Browse files
authored
Add void as return type (deprecation php8.4)
Deprecation message: Method "Symfony\Component\DependencyInjection\Extension\ExtensionInterface::load()" might add "void" as a native return type declaration in the future. Do the same in implementation "SergiX44\NutgramBundle\DependencyInjection\NutgramExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
1 parent 84ddb3d commit e447ea2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DependencyInjection/NutgramExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class NutgramExtension extends Extension
1111
{
12-
public function load(array $configs, ContainerBuilder $container)
12+
public function load(array $configs, ContainerBuilder $container): void
1313
{
1414
$configuration = new Configuration();
1515

0 commit comments

Comments
 (0)