Skip to content

Commit 33485d9

Browse files
committed
feature #39617 [Notifier] Add AllMySms Bridge (qdequippe)
This PR was squashed before being merged into the 5.3-dev branch. Discussion ---------- [Notifier] Add AllMySms Bridge | Q | A | ------------- | --- | Branch? | 5.x | Bug fix? | no | New feature? | yes | Deprecations? | no | License | MIT | Doc PR | symfony/symfony-docs#14739 | Recipe | symfony/recipes#865 Add AllMySms bridge to Symfony Notifier Commits ------- 4a71c36174 [Notifier] Add AllMySms Bridge
2 parents f3e87c6 + d0e2fab commit 33485d9

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
@@ -52,6 +52,10 @@ class UnsupportedSchemeException extends LogicException
5252
'class' => Bridge\Twilio\TwilioTransportFactory::class,
5353
'package' => 'symfony/twilio-notifier',
5454
],
55+
'allmysms' => [
56+
'class' => Bridge\AllMySms\AllMySmsTransportFactory::class,
57+
'package' => 'symfony/allmysms-notifier',
58+
],
5559
'infobip' => [
5660
'class' => Bridge\Infobip\InfobipTransportFactory::class,
5761
'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)