File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,10 @@ class UnsupportedSchemeException extends LogicException
184
184
'class ' => Bridge \Twilio \TwilioTransportFactory::class,
185
185
'package ' => 'symfony/twilio-notifier ' ,
186
186
],
187
+ 'vonage ' => [
188
+ 'class ' => Bridge \Vonage \VonageTransportFactory::class,
189
+ 'package ' => 'symfony/vonage-notifier ' ,
190
+ ],
187
191
'yunpian ' => [
188
192
'class ' => Bridge \Yunpian \YunpianTransportFactory::class,
189
193
'package ' => 'symfony/yunpian-notifier ' ,
Original file line number Diff line number Diff line change 53
53
use Symfony \Component \Notifier \Bridge \Telnyx \TelnyxTransportFactory ;
54
54
use Symfony \Component \Notifier \Bridge \TurboSms \TurboSmsTransportFactory ;
55
55
use Symfony \Component \Notifier \Bridge \Twilio \TwilioTransportFactory ;
56
+ use Symfony \Component \Notifier \Bridge \Vonage \VonageTransportFactory ;
56
57
use Symfony \Component \Notifier \Bridge \Yunpian \YunpianTransportFactory ;
57
58
use Symfony \Component \Notifier \Bridge \Zulip \ZulipTransportFactory ;
58
59
use Symfony \Component \Notifier \Exception \UnsupportedSchemeException ;
@@ -107,6 +108,7 @@ public static function setUpBeforeClass(): void
107
108
TelnyxTransportFactory::class => false ,
108
109
TurboSmsTransportFactory::class => false ,
109
110
TwilioTransportFactory::class => false ,
111
+ VonageTransportFactory::class => false ,
110
112
YunpianTransportFactory::class => false ,
111
113
ZulipTransportFactory::class => false ,
112
114
]);
Original file line number Diff line number Diff line change 45
45
use Symfony \Component \Notifier \Bridge \Telnyx \TelnyxTransportFactory ;
46
46
use Symfony \Component \Notifier \Bridge \TurboSms \TurboSmsTransportFactory ;
47
47
use Symfony \Component \Notifier \Bridge \Twilio \TwilioTransportFactory ;
48
+ use Symfony \Component \Notifier \Bridge \Vonage \VonageTransportFactory ;
48
49
use Symfony \Component \Notifier \Bridge \Yunpian \YunpianTransportFactory ;
49
50
use Symfony \Component \Notifier \Bridge \Zulip \ZulipTransportFactory ;
50
51
use Symfony \Component \Notifier \Exception \UnsupportedSchemeException ;
@@ -100,6 +101,7 @@ class Transport
100
101
TelnyxTransportFactory::class,
101
102
TurboSmsTransportFactory::class,
102
103
TwilioTransportFactory::class,
104
+ VonageTransportFactory::class,
103
105
YunpianTransportFactory::class,
104
106
ZulipTransportFactory::class,
105
107
];
You can’t perform that action at this time.
0 commit comments