Skip to content

Commit 9b5257f

Browse files
committed
feature #41172 [Notifier] Add Telnyx notifier bridge (StaffNowa)
This PR was squashed before being merged into the 5.4 branch. Discussion ---------- [Notifier] Add Telnyx notifier bridge | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | no | New feature? | yes | Deprecations? | no | License | MIT | Doc PR | symfony/symfony-docs#15377 | Recipe PR | symfony/recipes#951 Telnyx notifier https://developers.telnyx.com/docs/v2/messaging/quickstarts/sending-sms-and-mms Commits ------- f8a4d42e04 [Notifier] Add Telnyx notifier bridge
2 parents d30f8d6 + 27f03c8 commit 9b5257f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Resources/config/notifier_transports.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
use Symfony\Component\Notifier\Bridge\SmsBiuras\SmsBiurasTransportFactory;
4343
use Symfony\Component\Notifier\Bridge\SpotHit\SpotHitTransportFactory;
4444
use Symfony\Component\Notifier\Bridge\Telegram\TelegramTransportFactory;
45+
use Symfony\Component\Notifier\Bridge\Telnyx\TelnyxTransportFactory;
4546
use Symfony\Component\Notifier\Bridge\Twilio\TwilioTransportFactory;
4647
use Symfony\Component\Notifier\Bridge\Zulip\ZulipTransportFactory;
4748
use Symfony\Component\Notifier\Transport\AbstractTransportFactory;
@@ -189,5 +190,9 @@
189190
->set('notifier.transport_factory.messagebird', MessageBirdTransportFactory::class)
190191
->parent('notifier.transport_factory.abstract')
191192
->tag('texter.transport_factory')
193+
194+
->set('notifier.transport_factory.telnyx', TelnyxTransportFactory::class)
195+
->parent('notifier.transport_factory.abstract')
196+
->tag('texter.transport_factory')
192197
;
193198
};

0 commit comments

Comments
 (0)