Skip to content

Commit

Permalink
[ci] handle future return types (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrushlow authored Feb 14, 2023
1 parent b637373 commit 8adee2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/IntegrationTests/VerifyEmailServiceDefinitionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ final class DefinitionPublicCompilerPass implements CompilerPassInterface
{
public $definition;

public function process(ContainerBuilder $container)
public function process(ContainerBuilder $container): void
{
$container->getDefinition($this->definition)
->setPublic(true)
Expand All @@ -65,7 +65,7 @@ final class VerifyEmailDefinitionTestKernel extends VerifyEmailTestKernel
{
public $compilerPass;

protected function build(ContainerBuilder $container)
protected function build(ContainerBuilder $container): void
{
$container->addCompilerPass($this->compilerPass);
}
Expand Down

0 comments on commit 8adee2a

Please sign in to comment.