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 @@ -196,6 +196,10 @@ class UnsupportedSchemeException extends LogicException
196
196
'class ' => Bridge \Telnyx \TelnyxTransportFactory::class,
197
197
'package ' => 'symfony/telnyx-notifier ' ,
198
198
],
199
+ 'termii ' => [
200
+ 'class ' => Bridge \Termii \TermiiTransportFactory::class,
201
+ 'package ' => 'symfony/termii-notifier ' ,
202
+ ],
199
203
'turbosms ' => [
200
204
'class ' => Bridge \TurboSms \TurboSmsTransportFactory::class,
201
205
'package ' => 'symfony/turbo-sms-notifier ' ,
Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ public function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \Generat
177
177
yield ['spothit ' , 'symfony/spot-hit-notifier ' ];
178
178
yield ['telegram ' , 'symfony/telegram-notifier ' ];
179
179
yield ['telnyx ' , 'symfony/telnyx-notifier ' ];
180
+ yield ['termii ' , 'symfony/termii-notifier ' ];
180
181
yield ['turbosms ' , 'symfony/turbo-sms-notifier ' ];
181
182
yield ['twilio ' , 'symfony/twilio-notifier ' ];
182
183
yield ['zendesk ' , 'symfony/zendesk-notifier ' ];
Original file line number Diff line number Diff line change 49
49
use Symfony \Component \Notifier \Bridge \SmsFactor \SmsFactorTransportFactory ;
50
50
use Symfony \Component \Notifier \Bridge \Telegram \TelegramTransportFactory ;
51
51
use Symfony \Component \Notifier \Bridge \Telnyx \TelnyxTransportFactory ;
52
+ use Symfony \Component \Notifier \Bridge \Termii \TermiiTransportFactory ;
52
53
use Symfony \Component \Notifier \Bridge \TurboSms \TurboSmsTransportFactory ;
53
54
use Symfony \Component \Notifier \Bridge \Twilio \TwilioTransportFactory ;
54
55
use Symfony \Component \Notifier \Bridge \Vonage \VonageTransportFactory ;
@@ -110,6 +111,7 @@ final class Transport
110
111
SmsFactorTransportFactory::class,
111
112
TelegramTransportFactory::class,
112
113
TelnyxTransportFactory::class,
114
+ TermiiTransportFactory::class,
113
115
TurboSmsTransportFactory::class,
114
116
TwilioTransportFactory::class,
115
117
VonageTransportFactory::class,
You can’t perform that action at this time.
0 commit comments