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
184184 'class ' => Bridge \Twilio \TwilioTransportFactory::class,
185185 'package ' => 'symfony/twilio-notifier ' ,
186186 ],
187+ 'vonage ' => [
188+ 'class ' => Bridge \Vonage \VonageTransportFactory::class,
189+ 'package ' => 'symfony/vonage-notifier ' ,
190+ ],
187191 'yunpian ' => [
188192 'class ' => Bridge \Yunpian \YunpianTransportFactory::class,
189193 'package ' => 'symfony/yunpian-notifier ' ,
Original file line number Diff line number Diff line change 5353use Symfony \Component \Notifier \Bridge \Telnyx \TelnyxTransportFactory ;
5454use Symfony \Component \Notifier \Bridge \TurboSms \TurboSmsTransportFactory ;
5555use Symfony \Component \Notifier \Bridge \Twilio \TwilioTransportFactory ;
56+ use Symfony \Component \Notifier \Bridge \Vonage \VonageTransportFactory ;
5657use Symfony \Component \Notifier \Bridge \Yunpian \YunpianTransportFactory ;
5758use Symfony \Component \Notifier \Bridge \Zulip \ZulipTransportFactory ;
5859use Symfony \Component \Notifier \Exception \UnsupportedSchemeException ;
@@ -107,6 +108,7 @@ public static function setUpBeforeClass(): void
107108 TelnyxTransportFactory::class => false ,
108109 TurboSmsTransportFactory::class => false ,
109110 TwilioTransportFactory::class => false ,
111+ VonageTransportFactory::class => false ,
110112 YunpianTransportFactory::class => false ,
111113 ZulipTransportFactory::class => false ,
112114 ]);
Original file line number Diff line number Diff line change 4545use Symfony \Component \Notifier \Bridge \Telnyx \TelnyxTransportFactory ;
4646use Symfony \Component \Notifier \Bridge \TurboSms \TurboSmsTransportFactory ;
4747use Symfony \Component \Notifier \Bridge \Twilio \TwilioTransportFactory ;
48+ use Symfony \Component \Notifier \Bridge \Vonage \VonageTransportFactory ;
4849use Symfony \Component \Notifier \Bridge \Yunpian \YunpianTransportFactory ;
4950use Symfony \Component \Notifier \Bridge \Zulip \ZulipTransportFactory ;
5051use Symfony \Component \Notifier \Exception \UnsupportedSchemeException ;
@@ -100,6 +101,7 @@ class Transport
100101 TelnyxTransportFactory::class,
101102 TurboSmsTransportFactory::class,
102103 TwilioTransportFactory::class,
104+ VonageTransportFactory::class,
103105 YunpianTransportFactory::class,
104106 ZulipTransportFactory::class,
105107 ];
You can’t perform that action at this time.
0 commit comments