Skip to content

Commit 2701585

Browse files
Olivier Dolbeaufabpot
authored andcommitted
[Notifier] Add Esendex bridge
1 parent 4be356c commit 2701585

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Exception/UnsupportedSchemeException.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ class UnsupportedSchemeException extends LogicException
7878
'class' => Bridge\Smsapi\SmsapiTransportFactory::class,
7979
'package' => 'symfony/smsapi-notifier',
8080
],
81+
'esendex' => [
82+
'class' => Bridge\Esendex\EsendexTransportFactory::class,
83+
'package' => 'symfony/esendex-notifier',
84+
],
8185
];
8286

8387
/**

Transport.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
namespace Symfony\Component\Notifier;
1313

14+
use Symfony\Component\Notifier\Bridge\Esendex\EsendexTransportFactory;
1415
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseTransportFactory;
1516
use Symfony\Component\Notifier\Bridge\FreeMobile\FreeMobileTransportFactory;
1617
use Symfony\Component\Notifier\Bridge\Infobip\InfobipTransportFactory;
@@ -58,6 +59,7 @@ class Transport
5859
ZulipTransportFactory::class,
5960
MobytTransportFactory::class,
6061
SmsapiTransportFactory::class,
62+
EsendexTransportFactory::class,
6163
];
6264

6365
private $factories;

0 commit comments

Comments
 (0)