File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,10 @@ class UnsupportedSchemeException extends LogicException
38
38
'class ' => Bridge \Nexmo \NexmoTransportFactory::class,
39
39
'package ' => 'symfony/nexmo-notifier ' ,
40
40
],
41
+ 'rocketchat ' => [
42
+ 'class ' => Bridge \RocketChat \RocketChatTransportFactory::class,
43
+ 'package ' => 'rocketchat-notifier ' ,
44
+ ],
41
45
'twilio ' => [
42
46
'class ' => Bridge \Twilio \TwilioTransportFactory::class,
43
47
'package ' => 'symfony/twilio-notifier ' ,
Original file line number Diff line number Diff line change 13
13
14
14
use Symfony \Component \Notifier \Bridge \Mattermost \MattermostTransportFactory ;
15
15
use Symfony \Component \Notifier \Bridge \Nexmo \NexmoTransportFactory ;
16
+ use Symfony \Component \Notifier \Bridge \RocketChat \RocketChatTransportFactory ;
16
17
use Symfony \Component \Notifier \Bridge \Slack \SlackTransportFactory ;
17
18
use Symfony \Component \Notifier \Bridge \Telegram \TelegramTransportFactory ;
18
19
use Symfony \Component \Notifier \Bridge \Twilio \TwilioTransportFactory ;
@@ -39,6 +40,7 @@ class Transport
39
40
TelegramTransportFactory::class,
40
41
MattermostTransportFactory::class,
41
42
NexmoTransportFactory::class,
43
+ RocketChatTransportFactory::class,
42
44
TwilioTransportFactory::class,
43
45
];
44
46
You can’t perform that action at this time.
0 commit comments