File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,10 @@ class UnsupportedSchemeException extends LogicException
160
160
'class ' => Bridge \Twilio \TwilioTransportFactory::class,
161
161
'package ' => 'symfony/twilio-notifier ' ,
162
162
],
163
+ 'yunpian ' => [
164
+ 'class ' => Bridge \Yunpian \YunpianTransportFactory::class,
165
+ 'package ' => 'symfony/yunpian-notifier ' ,
166
+ ],
163
167
'zulip ' => [
164
168
'class ' => Bridge \Zulip \ZulipTransportFactory::class,
165
169
'package ' => 'symfony/zulip-notifier ' ,
Original file line number Diff line number Diff line change 48
48
use Symfony \Component \Notifier \Bridge \Telegram \TelegramTransportFactory ;
49
49
use Symfony \Component \Notifier \Bridge \Telnyx \TelnyxTransportFactory ;
50
50
use Symfony \Component \Notifier \Bridge \Twilio \TwilioTransportFactory ;
51
+ use Symfony \Component \Notifier \Bridge \Yunpian \YunpianTransportFactory ;
51
52
use Symfony \Component \Notifier \Bridge \Zulip \ZulipTransportFactory ;
52
53
use Symfony \Component \Notifier \Exception \UnsupportedSchemeException ;
53
54
use Symfony \Component \Notifier \Transport \Dsn ;
@@ -96,6 +97,7 @@ public static function setUpBeforeClass(): void
96
97
TelegramTransportFactory::class => false ,
97
98
TelnyxTransportFactory::class => false ,
98
99
TwilioTransportFactory::class => false ,
100
+ YunpianTransportFactory::class => false ,
99
101
ZulipTransportFactory::class => false ,
100
102
]);
101
103
}
Original file line number Diff line number Diff line change 40
40
use Symfony \Component \Notifier \Bridge \Telegram \TelegramTransportFactory ;
41
41
use Symfony \Component \Notifier \Bridge \Telnyx \TelnyxTransportFactory ;
42
42
use Symfony \Component \Notifier \Bridge \Twilio \TwilioTransportFactory ;
43
+ use Symfony \Component \Notifier \Bridge \Yunpian \YunpianTransportFactory ;
43
44
use Symfony \Component \Notifier \Bridge \Zulip \ZulipTransportFactory ;
44
45
use Symfony \Component \Notifier \Exception \UnsupportedSchemeException ;
45
46
use Symfony \Component \Notifier \Transport \Dsn ;
@@ -87,6 +88,7 @@ class Transport
87
88
TelegramTransportFactory::class,
88
89
TelnyxTransportFactory::class,
89
90
TwilioTransportFactory::class,
91
+ YunpianTransportFactory::class,
90
92
ZulipTransportFactory::class,
91
93
];
92
94
You can’t perform that action at this time.
0 commit comments