diff --git a/src/Symfony/Component/Notifier/Bridge/FreeMobile/Tests/FreeMobileTransportFactoryTest.php b/src/Symfony/Component/Notifier/Bridge/FreeMobile/Tests/FreeMobileTransportFactoryTest.php index 474bd131e89ab..94379141da74c 100644 --- a/src/Symfony/Component/Notifier/Bridge/FreeMobile/Tests/FreeMobileTransportFactoryTest.php +++ b/src/Symfony/Component/Notifier/Bridge/FreeMobile/Tests/FreeMobileTransportFactoryTest.php @@ -40,7 +40,7 @@ public function testCreateWithNoPhoneThrowsMalformed() $factory->create(Dsn::fromString($dsnIncomplete)); } - public function testSupportsFreeMobileScheme() + public function testSupportsScheme() { $factory = $this->createFactory(); diff --git a/src/Symfony/Component/Notifier/Bridge/Slack/Tests/SlackTransportFactoryTest.php b/src/Symfony/Component/Notifier/Bridge/Slack/Tests/SlackTransportFactoryTest.php index 6677d00c216b8..05a1038a94750 100644 --- a/src/Symfony/Component/Notifier/Bridge/Slack/Tests/SlackTransportFactoryTest.php +++ b/src/Symfony/Component/Notifier/Bridge/Slack/Tests/SlackTransportFactoryTest.php @@ -29,7 +29,7 @@ public function testCreateWithDsn() $this->assertSame(sprintf('slack://%s/%s', $host, $path), (string) $transport); } - public function testSupportsSlackScheme() + public function testSupportsScheme() { $factory = new SlackTransportFactory(); diff --git a/src/Symfony/Component/Notifier/Bridge/Telegram/Tests/TelegramTransportFactoryTest.php b/src/Symfony/Component/Notifier/Bridge/Telegram/Tests/TelegramTransportFactoryTest.php index 9299a283ef51d..24a233c4bae66 100644 --- a/src/Symfony/Component/Notifier/Bridge/Telegram/Tests/TelegramTransportFactoryTest.php +++ b/src/Symfony/Component/Notifier/Bridge/Telegram/Tests/TelegramTransportFactoryTest.php @@ -47,7 +47,7 @@ public function testCreateWithNoTokenThrowsMalformed() $factory->create(Dsn::fromString(sprintf('telegram://%s/?channel=%s', 'testHost', 'testChannel'))); } - public function testSupportsTelegramScheme() + public function testSupportsScheme() { $factory = new TelegramTransportFactory(); diff --git a/src/Symfony/Component/Notifier/Bridge/Twilio/Tests/TwilioTransportFactoryTest.php b/src/Symfony/Component/Notifier/Bridge/Twilio/Tests/TwilioTransportFactoryTest.php index 2b6f67eea50e7..c465939d6d9c9 100644 --- a/src/Symfony/Component/Notifier/Bridge/Twilio/Tests/TwilioTransportFactoryTest.php +++ b/src/Symfony/Component/Notifier/Bridge/Twilio/Tests/TwilioTransportFactoryTest.php @@ -40,7 +40,7 @@ public function testCreateWithNoFromThrowsMalformed() $factory->create(Dsn::fromString($dsnIncomplete)); } - public function testSupportsTwilioScheme() + public function testSupportsScheme() { $factory = $this->createFactory();