|
15 | 15 | use Symfony\Bridge\PhpUnit\ClassExistsMock; |
16 | 16 | use Symfony\Component\Notifier\Bridge\AllMySms\AllMySmsTransportFactory; |
17 | 17 | use Symfony\Component\Notifier\Bridge\AmazonSns\AmazonSnsTransportFactory; |
| 18 | +use Symfony\Component\Notifier\Bridge\Bandwidth\BandwidthTransportFactory; |
18 | 19 | use Symfony\Component\Notifier\Bridge\Clickatell\ClickatellTransportFactory; |
19 | 20 | use Symfony\Component\Notifier\Bridge\ContactEveryone\ContactEveryoneTransportFactory; |
20 | 21 | use Symfony\Component\Notifier\Bridge\Discord\DiscordTransportFactory; |
@@ -74,6 +75,7 @@ public static function setUpBeforeClass(): void |
74 | 75 | ClassExistsMock::withMockedClasses([ |
75 | 76 | AllMySmsTransportFactory::class => false, |
76 | 77 | AmazonSnsTransportFactory::class => false, |
| 78 | + BandwidthTransportFactory::class => false, |
77 | 79 | ClickatellTransportFactory::class => false, |
78 | 80 | ContactEveryoneTransportFactory::class => false, |
79 | 81 | DiscordTransportFactory::class => false, |
@@ -139,6 +141,7 @@ public function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \Generat |
139 | 141 | { |
140 | 142 | yield ['allmysms', 'symfony/all-my-sms-notifier']; |
141 | 143 | yield ['sns', 'symfony/amazon-sns-notifier']; |
| 144 | + yield ['bandwidth', 'symfony/bandwidth-notifier']; |
142 | 145 | yield ['clickatell', 'symfony/clickatell-notifier']; |
143 | 146 | yield ['contact-everyone', 'symfony/contact-everyone-notifier']; |
144 | 147 | yield ['discord', 'symfony/discord-notifier']; |
|
0 commit comments