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
144144 'class ' => Bridge \OvhCloud \OvhCloudTransportFactory::class,
145145 'package ' => 'symfony/ovh-cloud-notifier ' ,
146146 ],
147+ 'ringcentral ' => [
148+ 'class ' => Bridge \RingCentral \RingCentralTransportFactory::class,
149+ 'package ' => 'symfony/ring-central-notifier ' ,
150+ ],
147151 'rocketchat ' => [
148152 'class ' => Bridge \RocketChat \RocketChatTransportFactory::class,
149153 'package ' => 'symfony/rocket-chat-notifier ' ,
Original file line number Diff line number Diff line change @@ -169,6 +169,7 @@ public function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \Generat
169169 yield ['octopush ' , 'symfony/octopush-notifier ' ];
170170 yield ['onesignal ' , 'symfony/one-signal-notifier ' ];
171171 yield ['ovhcloud ' , 'symfony/ovh-cloud-notifier ' ];
172+ yield ['ringcentral ' , 'symfony/ring-central-notifier ' ];
172173 yield ['rocketchat ' , 'symfony/rocket-chat-notifier ' ];
173174 yield ['sendberry ' , 'symfony/sendberry-notifier ' ];
174175 yield ['sendinblue ' , 'symfony/sendinblue-notifier ' ];
Original file line number Diff line number Diff line change 3838use Symfony \Component \Notifier \Bridge \Octopush \OctopushTransportFactory ;
3939use Symfony \Component \Notifier \Bridge \OrangeSms \OrangeSmsTransportFactory ;
4040use Symfony \Component \Notifier \Bridge \OvhCloud \OvhCloudTransportFactory ;
41+ use Symfony \Component \Notifier \Bridge \RingCentral \RingCentralTransportFactory ;
4142use Symfony \Component \Notifier \Bridge \RocketChat \RocketChatTransportFactory ;
4243use Symfony \Component \Notifier \Bridge \Sendberry \SendberryTransportFactory ;
4344use Symfony \Component \Notifier \Bridge \Sendinblue \SendinblueTransportFactory ;
@@ -102,6 +103,7 @@ final class Transport
102103 OctopushTransportFactory::class,
103104 OrangeSmsTransportFactory::class,
104105 OvhCloudTransportFactory::class,
106+ RingCentralTransportFactory::class,
105107 RocketChatTransportFactory::class,
106108 SendberryTransportFactory::class,
107109 SendinblueTransportFactory::class,
You can’t perform that action at this time.
0 commit comments