Skip to content

Commit 92eab24

Browse files
alexandrbaraboliafabpot
authored andcommitted
[Notifier] add iqsms bridge
1 parent b165389 commit 92eab24

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
@@ -42,6 +42,10 @@ class UnsupportedSchemeException extends LogicException
4242
'class' => Bridge\Nexmo\NexmoTransportFactory::class,
4343
'package' => 'symfony/nexmo-notifier',
4444
],
45+
'iqsms' => [
46+
'class' => Bridge\Iqsms\IqsmsTransportFactory::class,
47+
'package' => 'symfony/iqsms-notifier',
48+
],
4549
'rocketchat' => [
4650
'class' => Bridge\RocketChat\RocketChatTransportFactory::class,
4751
'package' => 'symfony/rocket-chat-notifier',

Transport.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseTransportFactory;
1717
use Symfony\Component\Notifier\Bridge\FreeMobile\FreeMobileTransportFactory;
1818
use Symfony\Component\Notifier\Bridge\Infobip\InfobipTransportFactory;
19+
use Symfony\Component\Notifier\Bridge\Iqsms\IqsmsTransportFactory;
1920
use Symfony\Component\Notifier\Bridge\Mattermost\MattermostTransportFactory;
2021
use Symfony\Component\Notifier\Bridge\Mobyt\MobytTransportFactory;
2122
use Symfony\Component\Notifier\Bridge\Nexmo\NexmoTransportFactory;
@@ -51,6 +52,7 @@ class Transport
5152
TelegramTransportFactory::class,
5253
MattermostTransportFactory::class,
5354
NexmoTransportFactory::class,
55+
IqsmsTransportFactory::class,
5456
RocketChatTransportFactory::class,
5557
TwilioTransportFactory::class,
5658
InfobipTransportFactory::class,

0 commit comments

Comments
 (0)