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 @@ -144,6 +144,10 @@ class UnsupportedSchemeException extends LogicException
144
144
'class ' => Bridge \OvhCloud \OvhCloudTransportFactory::class,
145
145
'package ' => 'symfony/ovh-cloud-notifier ' ,
146
146
],
147
+ 'ringcentral ' => [
148
+ 'class ' => Bridge \RingCentral \RingCentralTransportFactory::class,
149
+ 'package ' => 'symfony/ring-central-notifier ' ,
150
+ ],
147
151
'rocketchat ' => [
148
152
'class ' => Bridge \RocketChat \RocketChatTransportFactory::class,
149
153
'package ' => 'symfony/rocket-chat-notifier ' ,
Original file line number Diff line number Diff line change @@ -169,6 +169,7 @@ public function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \Generat
169
169
yield ['octopush ' , 'symfony/octopush-notifier ' ];
170
170
yield ['onesignal ' , 'symfony/one-signal-notifier ' ];
171
171
yield ['ovhcloud ' , 'symfony/ovh-cloud-notifier ' ];
172
+ yield ['ringcentral ' , 'symfony/ring-central-notifier ' ];
172
173
yield ['rocketchat ' , 'symfony/rocket-chat-notifier ' ];
173
174
yield ['sendberry ' , 'symfony/sendberry-notifier ' ];
174
175
yield ['sendinblue ' , 'symfony/sendinblue-notifier ' ];
Original file line number Diff line number Diff line change 38
38
use Symfony \Component \Notifier \Bridge \Octopush \OctopushTransportFactory ;
39
39
use Symfony \Component \Notifier \Bridge \OrangeSms \OrangeSmsTransportFactory ;
40
40
use Symfony \Component \Notifier \Bridge \OvhCloud \OvhCloudTransportFactory ;
41
+ use Symfony \Component \Notifier \Bridge \RingCentral \RingCentralTransportFactory ;
41
42
use Symfony \Component \Notifier \Bridge \RocketChat \RocketChatTransportFactory ;
42
43
use Symfony \Component \Notifier \Bridge \Sendberry \SendberryTransportFactory ;
43
44
use Symfony \Component \Notifier \Bridge \Sendinblue \SendinblueTransportFactory ;
@@ -102,6 +103,7 @@ final class Transport
102
103
OctopushTransportFactory::class,
103
104
OrangeSmsTransportFactory::class,
104
105
OvhCloudTransportFactory::class,
106
+ RingCentralTransportFactory::class,
105
107
RocketChatTransportFactory::class,
106
108
SendberryTransportFactory::class,
107
109
SendinblueTransportFactory::class,
You can’t perform that action at this time.
0 commit comments