Skip to content

Commit d0e2fab

Browse files
qdequippeOskarStark
authored andcommitted
[Notifier] Add AllMySms Bridge
1 parent 6dcc31a commit d0e2fab

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
@@ -54,6 +54,10 @@ class UnsupportedSchemeException extends LogicException
5454
'class' => Bridge\Twilio\TwilioTransportFactory::class,
5555
'package' => 'symfony/twilio-notifier',
5656
],
57+
'allmysms' => [
58+
'class' => Bridge\AllMySms\AllMySmsTransportFactory::class,
59+
'package' => 'symfony/allmysms-notifier',
60+
],
5761
'infobip' => [
5862
'class' => Bridge\Infobip\InfobipTransportFactory::class,
5963
'package' => 'symfony/infobip-notifier',

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\AllMySms\AllMySmsTransportFactory;
1415
use Symfony\Component\Notifier\Bridge\Discord\DiscordTransportFactory;
1516
use Symfony\Component\Notifier\Bridge\Esendex\EsendexTransportFactory;
1617
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseTransportFactory;
@@ -55,6 +56,7 @@ class Transport
5556
IqsmsTransportFactory::class,
5657
RocketChatTransportFactory::class,
5758
TwilioTransportFactory::class,
59+
AllMySmsTransportFactory::class,
5860
InfobipTransportFactory::class,
5961
OvhCloudTransportFactory::class,
6062
FirebaseTransportFactory::class,

0 commit comments

Comments
 (0)