Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3fa5450

Browse files
committed
Executed rector
1 parent 1aca02c commit 3fa5450

File tree

126 files changed

+378
-378
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+378
-378
lines changed

src/Symfony/Component/Mailer/Bridge/Amazon/Tests/Transport/SesApiAsyncAwsTransportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function testToString(SesApiAsyncAwsTransport $transport, string $expecte
3333
$this->assertSame($expected, (string) $transport);
3434
}
3535

36-
public function getTransportData()
36+
public static function getTransportData()
3737
{
3838
return [
3939
[

src/Symfony/Component/Mailer/Bridge/Amazon/Tests/Transport/SesApiTransportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function testToString(SesApiTransport $transport, string $expected)
3333
$this->assertSame($expected, (string) $transport);
3434
}
3535

36-
public function getTransportData()
36+
public static function getTransportData()
3737
{
3838
return [
3939
[

src/Symfony/Component/Mailer/Bridge/Amazon/Tests/Transport/SesHttpAsyncAwsTransportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function testToString(SesHttpAsyncAwsTransport $transport, string $expect
3333
$this->assertSame($expected, (string) $transport);
3434
}
3535

36-
public function getTransportData()
36+
public static function getTransportData()
3737
{
3838
return [
3939
[

src/Symfony/Component/Mailer/Bridge/Amazon/Tests/Transport/SesHttpTransportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function testToString(SesHttpTransport $transport, string $expected)
3333
$this->assertSame($expected, (string) $transport);
3434
}
3535

36-
public function getTransportData()
36+
public static function getTransportData()
3737
{
3838
return [
3939
[

src/Symfony/Component/Mailer/Bridge/Mailchimp/Tests/Transport/MandrillApiTransportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function testToString(MandrillApiTransport $transport, string $expected)
3333
$this->assertSame($expected, (string) $transport);
3434
}
3535

36-
public function getTransportData()
36+
public static function getTransportData()
3737
{
3838
return [
3939
[

src/Symfony/Component/Mailer/Bridge/Mailchimp/Tests/Transport/MandrillHttpTransportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function testToString(MandrillHttpTransport $transport, string $expected)
3232
$this->assertSame($expected, (string) $transport);
3333
}
3434

35-
public function getTransportData()
35+
public static function getTransportData()
3636
{
3737
return [
3838
[

src/Symfony/Component/Mailer/Bridge/Mailgun/Tests/Transport/MailgunApiTransportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function testToString(MailgunApiTransport $transport, string $expected)
3333
$this->assertSame($expected, (string) $transport);
3434
}
3535

36-
public function getTransportData()
36+
public static function getTransportData()
3737
{
3838
return [
3939
[

src/Symfony/Component/Mailer/Bridge/Mailgun/Tests/Transport/MailgunHttpTransportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function testToString(MailgunHttpTransport $transport, string $expected)
3232
$this->assertSame($expected, (string) $transport);
3333
}
3434

35-
public function getTransportData()
35+
public static function getTransportData()
3636
{
3737
return [
3838
[

src/Symfony/Component/Mailer/Bridge/Mailjet/Tests/Transport/MailjetApiTransportTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function testToString(MailjetApiTransport $transport, string $expected)
3434
$this->assertSame($expected, (string) $transport);
3535
}
3636

37-
public function getTransportData()
37+
public static function getTransportData()
3838
{
3939
return [
4040
[
@@ -254,7 +254,7 @@ public function testSendWithMalformedResponse(array $body)
254254
$transport->send($email);
255255
}
256256

257-
public function getMalformedResponse(): \Generator
257+
public static function getMalformedResponse(): \Generator
258258
{
259259
yield 'Missing Messages key' => [
260260
[

src/Symfony/Component/Mailer/Bridge/OhMySmtp/Tests/Transport/OhMySmtpApiTransportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function testToString(OhMySmtpApiTransport $transport, string $expected)
3232
$this->assertSame($expected, (string) $transport);
3333
}
3434

35-
public function getTransportData(): array
35+
public static function getTransportData(): array
3636
{
3737
return [
3838
[

0 commit comments

Comments
 (0)