Skip to content

Commit fad9e25

Browse files
committed
Merge branch '5.1' into 5.2
* 5.1: Use more explicit variable name Fix wrong comment about SES region [Mailer] [Sendgrid] Use $scheme variable to stay consistent [Mailer] [Amazon] Fix @param annotation [Mailer] Rename testsuites Remove void return type from test methods Remove void return type from test methods [Notifier] Remove void return type from test methods
2 parents 7e096ad + a2f143d commit fad9e25

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/DependencyInjection/FrameworkExtensionTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1578,7 +1578,7 @@ public function provideMailer(): array
15781578
/**
15791579
* @dataProvider provideMailer
15801580
*/
1581-
public function testMailer(string $configFile, array $expectedTransports): void
1581+
public function testMailer(string $configFile, array $expectedTransports)
15821582
{
15831583
$container = $this->createContainerFromFile($configFile);
15841584

@@ -1599,14 +1599,14 @@ public function testMailer(string $configFile, array $expectedTransports): void
15991599
$this->assertCount(3, $h->getMethodCalls());
16001600
}
16011601

1602-
public function testMailerWithDisabledMessageBus(): void
1602+
public function testMailerWithDisabledMessageBus()
16031603
{
16041604
$container = $this->createContainerFromFile('mailer_with_disabled_message_bus');
16051605

16061606
$this->assertNull($container->getDefinition('mailer.mailer')->getArgument(1));
16071607
}
16081608

1609-
public function testMailerWithSpecificMessageBus(): void
1609+
public function testMailerWithSpecificMessageBus()
16101610
{
16111611
$container = $this->createContainerFromFile('mailer_with_specific_message_bus');
16121612

0 commit comments

Comments
 (0)