8000 Fix · symfony/symfony@770206a · GitHub
[go: up one dir, main page]

Skip to content

Commit 770206a

Browse files
committed
Fix
1 parent 24b4a1e commit 770206a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Symfony/Component/Mailer/Tests/Transport/Smtp/EsmtpTransportFactoryTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function getFactory(): TransportFactoryInterface
2525
return new EsmtpTransportFactory($this->getDispatcher(), $this->getClient(), $this->getLogger());
2626
}
2727

28-
public static function supportsProvider(): iterable
28+
public function supportsProvider(): iterable
2929
{
3030
yield [
3131
new Dsn('smtp', 'example.com'),
@@ -43,7 +43,7 @@ public static function supportsProvider(): iterable
4343
];
4444
}
4545

46-
public static function createProvider(): iterable
46+
public function createProvider(): iterable
4747
{
4848
$eventDispatcher = $this->getDispatcher();
4949
$logger = $this->getLogger();

tools/rector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
__DIR__.'/../src/Symfony/Component/Mailer/Bridge/*/Tests/Transport/*TransportFactoryTest.php',
2121
__DIR__.'/../src/Symfony/Component/Mailer/Tests/Transport/SendmailTransportFactoryTest.php',
2222
__DIR__.'/../src/Symfony/Component/Mailer/Tests/Transport/NullTransportFactoryTest.php',
23+
__DIR__.'/../src/Symfony/Component/Mailer/Tests/Transport/Smtp/EsmtpTransportFactoryTest.php',
2324

2425
// Notifier component
2526
__DIR__.'/../src/Symfony/Component/Notifier/Bridge/*/Tests/*TransportTest.php',

0 commit comments

Comments
 (0)
0