File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,12 @@ CHANGELOG
5
5
-----
6
6
7
7
* [ BC BREAK] The ` TransportInterface::send() ` and ` AbstractTransport::doSend() ` methods changed to return a ` ?SentMessage ` instance instead of ` void ` .
8
+ * Added the Zulip notifier bridge
8
9
9
10
5.1.0
10
11
-----
11
12
12
- * Added the Mattermost notifier bridge
13
+ * Added the Mattermost notifier bridge
13
14
* [ BC BREAK] The ` ChatMessage::fromNotification() ` method's ` $recipient ` and ` $transport `
14
15
arguments were removed.
15
16
* [ BC BREAK] The ` EmailMessage::fromNotification() ` and ` SmsMessage::fromNotification() `
Original file line number Diff line number Diff line change @@ -62,6 +62,10 @@ class UnsupportedSchemeException extends LogicException
62
62
'class ' => Bridge \Sinch \SinchTransportFactory::class,
63
63
'package ' => 'symfony/sinch-notifier ' ,
64
64
],
65
+ 'zulip ' => [
66
+ 'class ' => Bridge \Zulip \ZulipTransportFactory::class,
67
+ 'package ' => 'symfony/zulip-notifier ' ,
68
+ ],
65
69
];
66
70
67
71
/**
Original file line number Diff line number Diff line change 21
21
use Symfony \Component \Notifier \Bridge \Slack \SlackTransportFactory ;
22
22
use Symfony \Component \Notifier \Bridge \Telegram \TelegramTransportFactory ;
23
23
use Symfony \Component \Notifier \Bridge \Twilio \TwilioTransportFactory ;
24
+ use Symfony \Component \Notifier \Bridge \Zulip \ZulipTransportFactory ;
24
25
use Symfony \Component \Notifier \Exception \UnsupportedSchemeException ;
25
26
use Symfony \Component \Notifier \Transport \Dsn ;
26
27
use Symfony \Component \Notifier \Transport \FailoverTransport ;
@@ -50,6 +51,7 @@ class Transport
50
51
FirebaseTransportFactory::class,
51
52
SinchTransportFactory::class,
52
53
FreeMobileTransportFactory::class,
54
+ ZulipTransportFactory::class,
53
55
];
54
56
55
57
private $ factories ;
You can’t perform that action at this time.
0 commit comments