File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -200,6 +200,10 @@ class UnsupportedSchemeException extends LogicException
200200 'class ' => Bridge \Telnyx \TelnyxTransportFactory::class,
201201 'package ' => 'symfony/telnyx-notifier ' ,
202202 ],
203+ 'termii ' => [
204+ 'class ' => Bridge \Termii \TermiiTransportFactory::class,
205+ 'package ' => 'symfony/termii-notifier ' ,
206+ ],
203207 'turbosms ' => [
204208 'class ' => Bridge \TurboSms \TurboSmsTransportFactory::class,
205209 'package ' => 'symfony/turbo-sms-notifier ' ,
Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ public function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \Generat
182182 yield ['spothit ' , 'symfony/spot-hit-notifier ' ];
183183 yield ['telegram ' , 'symfony/telegram-notifier ' ];
184184 yield ['telnyx ' , 'symfony/telnyx-notifier ' ];
185+ yield ['termii ' , 'symfony/termii-notifier ' ];
185186 yield ['turbosms ' , 'symfony/turbo-sms-notifier ' ];
186187 yield ['twilio ' , 'symfony/twilio-notifier ' ];
187188 yield ['twitter ' , 'symfony/twitter-notifier ' ];
Original file line number Diff line number Diff line change 5050use Symfony \Component \Notifier \Bridge \SmsFactor \SmsFactorTransportFactory ;
5151use Symfony \Component \Notifier \Bridge \Telegram \TelegramTransportFactory ;
5252use Symfony \Component \Notifier \Bridge \Telnyx \TelnyxTransportFactory ;
53+ use Symfony \Component \Notifier \Bridge \Termii \TermiiTransportFactory ;
5354use Symfony \Component \Notifier \Bridge \TurboSms \TurboSmsTransportFactory ;
5455use Symfony \Component \Notifier \Bridge \Twilio \TwilioTransportFactory ;
5556use Symfony \Component \Notifier \Bridge \Twitter \TwitterTransportFactory ;
@@ -113,6 +114,7 @@ final class Transport
113114 SmsFactorTransportFactory::class,
114115 TelegramTransportFactory::class,
115116 TelnyxTransportFactory::class,
117+ TermiiTransportFactory::class,
116118 TurboSmsTransportFactory::class,
117119 TwilioTransportFactory::class,
118120 TwitterTransportFactory::class,
You can’t perform that action at this time.
0 commit comments