File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Original file line number Diff line number Diff line change 113
113
use Symfony \Component \Notifier \Bridge \Clickatell \ClickatellTransportFactory ;
114
114
use Symfony \Component \Notifier \Bridge \Discord \DiscordTransportFactory ;
115
115
use Symfony \Component \Notifier \Bridge \Esendex \EsendexTransportFactory ;
116
+ use Symfony \Component \Notifier \Bridge \FakeSms \FakeSmsTransportFactory ;
116
117
use Symfony \Component \Notifier \Bridge \Firebase \FirebaseTransportFactory ;
117
118
use Symfony \Component \Notifier \Bridge \FreeMobile \FreeMobileTransportFactory ;
118
119
use Symfony \Component \Notifier \Bridge \GatewayApi \GatewayApiTransportFactory ;
@@ -2336,6 +2337,7 @@ private function registerNotifierConfiguration(array $config, ContainerBuilder $
2336
2337
FirebaseTransportFactory::class => 'notifier.transport_factory.firebase ' ,
2337
2338
FreeMobileTransportFactory::class => 'notifier.transport_factory.freemobile ' ,
2338
2339
SpotHitTransportFactory::class => 'notifier.transport_factory.spothit ' ,
2340
+ FakeSmsTransportFactory::class => 'notifier.transport_factory.fakesms ' ,
2339
2341
OvhCloudTransportFactory::class => 'notifier.transport_factory.ovhcloud ' ,
2340
2342
SinchTransportFactory::class => 'notifier.transport_factory.sinch ' ,
2341
2343
ZulipTransportFactory::class => 'notifier.transport_factory.zulip ' ,
Original file line number Diff line number Diff line change 15
15
use Symfony \Component \Notifier \Bridge \Clickatell \ClickatellTransportFactory ;
16
16
use Symfony \Component \Notifier \Bridge \Discord \DiscordTransportFactory ;
17
17
use Symfony \Component \Notifier \Bridge \Esendex \EsendexTransportFactory ;
18
+ use Symfony \Component \Notifier \Bridge \FakeSms \FakeSmsTransportFactory ;
18
19
use Symfony \Component \Notifier \Bridge \Firebase \FirebaseTransportFactory ;
19
20
use Symfony \Component \Notifier \Bridge \FreeMobile \FreeMobileTransportFactory ;
20
21
use Symfony \Component \Notifier \Bridge \GatewayApi \GatewayApiTransportFactory ;
95
96
->parent ('notifier.transport_factory.abstract ' )
96
97
->tag ('texter.transport_factory ' )
97
98
99
+ ->set ('notifier.transport_factory.fakesms ' , FakeSmsTransportFactory::class)
100
+ ->parent ('notifier.transport_factory.abstract ' )
101
+ ->tag ('texter.transport_factory ' )
102
+
98
103
->set ('notifier.transport_factory.ovhcloud ' , OvhCloudTransportFactory::class)
99
104
->parent ('notifier.transport_factory.abstract ' )
100
105
->tag ('texter.transport_factory ' )
You can’t perform that action at this time.
0 commit comments