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 @@ -136,6 +136,10 @@ class UnsupportedSchemeException extends LogicException
136
136
'class ' => Bridge \RocketChat \RocketChatTransportFactory::class,
137
137
'package ' => 'symfony/rocket-chat-notifier ' ,
138
138
],
139
+ 'sendberry ' => [
140
+ 'class ' => Bridge \Sendberry \SendberryTransportFactory::class,
141
+ 'package ' => 'symfony/sendberry-notifier ' ,
142
+ ],
139
143
'sendinblue ' => [
140
144
'class ' => Bridge \Sendinblue \SendinblueTransportFactory::class,
141
145
'package ' => 'symfony/sendinblue-notifier ' ,
Original file line number Diff line number Diff line change @@ -156,6 +156,7 @@ public function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \Generat
156
156
yield ['onesignal ' , 'symfony/one-signal-notifier ' ];
157
157
yield ['ovhcloud ' , 'symfony/ovh-cloud-notifier ' ];
158
158
yield ['rocketchat ' , 'symfony/rocket-chat-notifier ' ];
159
+ yield ['sendberry ' , 'symfony/sendberry-notifier ' ];
159
160
yield ['sendinblue ' , 'symfony/sendinblue-notifier ' ];
160
161
yield ['sinch ' , 'symfony/sinch-notifier ' ];
161
162
yield ['slack ' , 'symfony/slack-notifier ' ];
Original file line number Diff line number Diff line change 35
35
use Symfony \Component \Notifier \Bridge \OrangeSms \OrangeSmsTransportFactory ;
36
36
use Symfony \Component \Notifier \Bridge \OvhCloud \OvhCloudTransportFactory ;
37
37
use Symfony \Component \Notifier \Bridge \RocketChat \RocketChatTransportFactory ;
38
+ use Symfony \Component \Notifier \Bridge \Sendberry \SendberryTransportFactory ;
38
39
use Symfony \Component \Notifier \Bridge \Sendinblue \SendinblueTransportFactory ;
39
40
use Symfony \Component \Notifier \Bridge \Sinch \SinchTransportFactory ;
40
41
use Symfony \Component \Notifier \Bridge \Slack \SlackTransportFactory ;
@@ -90,6 +91,7 @@ final class Transport
90
91
OrangeSmsTransportFactory::class,
91
92
OvhCloudTransportFactory::class,
92
93
RocketChatTransportFactory::class,
94
+ SendberryTransportFactory::class,
93
95
SendinblueTransportFactory::class,
94
96
SinchTransportFactory::class,
95
97
SlackTransportFactory::class,
You can’t perform that action at this time.
0 commit comments