Skip to content

Commit 70f4609

Browse files
Kevin AuivinetOskarStark
authored andcommitted
[Notifier] Add notifier for Clickatell
1 parent d9c6f05 commit 70f4609

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
@@ -108,6 +108,10 @@ class UnsupportedSchemeException extends LogicException
108108
'class' => Bridge\Gitter\GitterTransportFactory::class,
109109
'package' => 'symfony/gitter-notifier',
110110
],
111+
'clickatell' => [
112+
'class' => Bridge\Clickatell\ClickatellTransportFactory::class,
113+
'package' => 'symfony/clickatell-notifier',
114+
],
111115
];
112116

113117
/**

Transport.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
namespace Symfony\Component\Notifier;
1313

1414
use Symfony\Component\Notifier\Bridge\AllMySms\AllMySmsTransportFactory;
15+
use Symfony\Component\Notifier\Bridge\Clickatell\ClickatellTransportFactory;
1516
use Symfony\Component\Notifier\Bridge\Discord\DiscordTransportFactory;
1617
use Symfony\Component\Notifier\Bridge\Esendex\EsendexTransportFactory;
1718
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseTransportFactory;
@@ -72,6 +73,7 @@ class Transport
7273
GatewayApiTransportFactory::class,
7374
OctopushTransportFactory::class,
7475
GitterTransportFactory::class,
76+
ClickatellTransportFactory::class,
7577
];
7678

7779
private $factories;

0 commit comments

Comments
 (0)