Skip to content

Commit 485e74c

Browse files
committed
feature #40691 [Notifier] Add SmsBiuras notifier bridge (StaffNowa)
This PR was squashed before being merged into the 5.3-dev branch. Discussion ---------- [Notifier] Add SmsBiuras notifier bridge | Q | A | ------------- | --- | Branch? | 5.x | Bug fix? | no | New feature? | yes | Deprecations? | no | License | MIT | Doc PR | symfony/symfony-docs#15219 | Recipe PR | symfony/recipes/pull/932 Sms Biuras notifier bridge Commits ------- 79572b2728 [Notifier] Add SmsBiuras notifier bridge
2 parents fbf3bd2 + 8dd58e2 commit 485e74c

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
@@ -132,6 +132,10 @@ class UnsupportedSchemeException extends LogicException
132132
'class' => Bridge\MicrosoftTeams\MicrosoftTeamsTransportFactory::class,
133133
'package' => 'symfony/microsoft-teams-notifier',
134134
],
135+
'smsbiuras' => [
136+
'class' => Bridge\SmsBiuras\SmsBiurasTransportFactory::class,
137+
'package' => 'symfony/sms-biuras-notifier',
138+
],
135139
];
136140

137141
/**

Transport.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
use Symfony\Component\Notifier\Bridge\Sinch\SinchTransportFactory;
3434
use Symfony\Component\Notifier\Bridge\Slack\SlackTransportFactory;
3535
use Symfony\Component\Notifier\Bridge\Smsapi\SmsapiTransportFactory;
36+
use Symfony\Component\Notifier\Bridge\SmsBiuras\SmsBiurasTransportFactory;
3637
use Symfony\Component\Notifier\Bridge\Telegram\TelegramTransportFactory;
3738
use Symfony\Component\Notifier\Bridge\Twilio\TwilioTransportFactory;
3839
use Symfony\Component\Notifier\Bridge\Zulip\ZulipTransportFactory;
@@ -78,6 +79,7 @@ class Transport
7879
ClickatellTransportFactory::class,
7980
LightSmsTransportFactory::class,
8081
MicrosoftTeamsTransport::class,
82+
SmsBiurasTransportFactory::class,
8183
];
8284

8385
private $factories;

0 commit comments

Comments
 (0)