Skip to content

Commit 9355c98

Browse files
committed
Remove void return type from test methods
1 parent b3ca345 commit 9355c98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/DependencyInjection/Compiler/AddSecurityVotersPassTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function testThatSecurityVotersAreProcessedInPriorityOrder()
7171
$this->assertCount(4, $refs);
7272
}
7373

74-
public function testThatVotersAreTraceableInDebugMode(): void
74+
public function testThatVotersAreTraceableInDebugMode()
7575
{
7676
$container = new ContainerBuilder();
7777

@@ -103,7 +103,7 @@ public function testThatVotersAreTraceableInDebugMode(): void
103103
$this->assertCount(2, $voters, 'Incorrect count of voters');
104104
}
105105

106-
public function testThatVotersAreNotTraceableWithoutDebugMode(): void
106+
public function testThatVotersAreNotTraceableWithoutDebugMode()
107107
{
108108
$container = new ContainerBuilder();
109109
$container->setParameter('kernel.debug', false);

0 commit comments

Comments
 (0)