Skip to content

Commit 7e47f08

Browse files
committed
Fix deprecations
1 parent c97cf6a commit 7e47f08

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/DependencyInjection/Compiler/Endpoints/DefaultEndpointWiringPass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
final class DefaultEndpointWiringPass implements CompilerPassInterface
1111
{
1212
// @todo https://github.com/symfony/symfony/blob/master/src/Symfony/Component/DependencyInjection/Tests/Compiler/RemoveUnusedDefinitionsPassTest.php
13-
public function process(ContainerBuilder $container)
13+
public function process(ContainerBuilder $container): void
1414
{
1515
$endpointDefinition = $container->getDefinition('overblog_graphiql.controller.graphql.endpoint');
1616

src/DependencyInjection/Compiler/Endpoints/OverblogGraphQLBundleEndpointWiringPass.php

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

1010
final class OverblogGraphQLBundleEndpointWiringPass implements CompilerPassInterface
1111
{
12-
public function process(ContainerBuilder $container)
12+
public function process(ContainerBuilder $container): void
1313
{
1414
$bundles = $container->getParameter('kernel.bundles_metadata');
1515

0 commit comments

Comments
 (0)