Skip to content

Commit 834cad0

Browse files
jeremyFreeAgentfabpot
authored andcommitted
[Notifier] Add Infobip bridge
1 parent 0228152 commit 834cad0

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
@@ -50,6 +50,10 @@ class UnsupportedSchemeException extends LogicException
5050
'class' => Bridge\Twilio\TwilioTransportFactory::class,
5151
'package' => 'symfony/twilio-notifier',
5252
],
53+
'infobip' => [
54+
'class' => Bridge\Infobip\InfobipTransportFactory::class,
55+
'package' => 'symfony/infobip-notifier',
56+
],
5357
'firebase' => [
5458
'class' => Bridge\Firebase\FirebaseTransportFactory::class,
5559
'package' => 'symfony/firebase-notifier',

Transport.php

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

1414
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseTransportFactory;
1515
use Symfony\Component\Notifier\Bridge\FreeMobile\FreeMobileTransportFactory;
16+
use Symfony\Component\Notifier\Bridge\Infobip\InfobipTransportFactory;
1617
use Symfony\Component\Notifier\Bridge\Mattermost\MattermostTransportFactory;
1718
use Symfony\Component\Notifier\Bridge\Nexmo\NexmoTransportFactory;
1819
use Symfony\Component\Notifier\Bridge\OvhCloud\OvhCloudTransportFactory;
@@ -47,6 +48,7 @@ class Transport
4748
NexmoTransportFactory::class,
4849
RocketChatTransportFactory::class,
4950
TwilioTransportFactory::class,
51+
InfobipTransportFactory::class,
5052
OvhCloudTransportFactory::class,
5153
FirebaseTransportFactory::class,
5254
SinchTransportFactory::class,

0 commit comments

Comments
 (0)