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
200
200
'class ' => Bridge \Telnyx \TelnyxTransportFactory::class,
201
201
'package ' => 'symfony/telnyx-notifier ' ,
202
202
],
203
+ 'termii ' => [
204
+ 'class ' => Bridge \Termii \TermiiTransportFactory::class,
205
+ 'package ' => 'symfony/termii-notifier ' ,
206
+ ],
203
207
'turbosms ' => [
204
208
'class ' => Bridge \TurboSms \TurboSmsTransportFactory::class,
205
209
'package ' => 'symfony/turbo-sms-notifier ' ,
Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ public function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \Generat
182
182
yield ['spothit ' , 'symfony/spot-hit-notifier ' ];
183
183
yield ['telegram ' , 'symfony/telegram-notifier ' ];
184
184
yield ['telnyx ' , 'symfony/telnyx-notifier ' ];
185
+ yield ['termii ' , 'symfony/termii-notifier ' ];
185
186
yield ['turbosms ' , 'symfony/turbo-sms-notifier ' ];
186
187
yield ['twilio ' , 'symfony/twilio-notifier ' ];
187
188
yield ['twitter ' , 'symfony/twitter-notifier ' ];
Original file line number Diff line number Diff line change 50
50
use Symfony \Component \Notifier \Bridge \SmsFactor \SmsFactorTransportFactory ;
51
51
use Symfony \Component \Notifier \Bridge \Telegram \TelegramTransportFactory ;
52
52
use Symfony \Component \Notifier \Bridge \Telnyx \TelnyxTransportFactory ;
53
+ use Symfony \Component \Notifier \Bridge \Termii \TermiiTransportFactory ;
53
54
use Symfony \Component \Notifier \Bridge \TurboSms \TurboSmsTransportFactory ;
54
55
use Symfony \Component \Notifier \Bridge \Twilio \TwilioTransportFactory ;
55
56
use Symfony \Component \Notifier \Bridge \Twitter \TwitterTransportFactory ;
@@ -113,6 +114,7 @@ final class Transport
113
114
SmsFactorTransportFactory::class,
114
115
TelegramTransportFactory::class,
115
116
TelnyxTransportFactory::class,
117
+ TermiiTransportFactory::class,
116
118
TurboSmsTransportFactory::class,
117
119
TwilioTransportFactory::class,
118
120
TwitterTransportFactory::class,
You can’t perform that action at this time.
0 commit comments