|
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;
|
@@ -76,6 +77,7 @@ public static function setUpBeforeClass(): void
|
76 | 77 | ClassExistsMock::withMockedClasses([
|
77 | 78 | AllMySmsTransportFactory::class => false,
|
78 | 79 | AmazonSnsTransportFactory::class => false,
|
| 80 | + BandwidthTransportFactory::class => false, |
79 | 81 | ClickatellTransportFactory::class => false,
|
80 | 82 | ContactEveryoneTransportFactory::class => false,
|
81 | 83 | DiscordTransportFactory::class => false,
|
@@ -143,6 +145,7 @@ public function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \Generat
|
143 | 145 | {
|
144 | 146 | yield ['allmysms', 'symfony/all-my-sms-notifier'];
|
145 | 147 | yield ['sns', 'symfony/amazon-sns-notifier'];
|
| 148 | + yield ['bandwidth', 'symfony/bandwidth-notifier']; |
146 | 149 | yield ['clickatell', 'symfony/clickatell-notifier'];
|
147 | 150 | yield ['contact-everyone', 'symfony/contact-everyone-notifier'];
|
148 | 151 | yield ['discord', 'symfony/discord-notifier'];
|
|
0 commit comments