Skip to content

Commit 36a62a1

Browse files
committed
feature #44303 Add Engagespot bridge (danut007ro)
This PR was squashed before being merged into the 6.1 branch. Discussion ---------- Add Engagespot bridge | Q | A | ------------- | --- | Branch? | 6.1 | Bug fix? | no | New feature? | yes | Deprecations? | no | Tickets | no ticket | License | MIT | Doc PR | symfony/symfony-docs#16165 Add [Engagespot](https://engagespot.co/) integration for push notifications. Commits ------- c7e1d1a78e Add Engagespot bridge
2 parents db1b801 + 9bba2c6 commit 36a62a1

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Exception/UnsupportedSchemeException.php

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ class UnsupportedSchemeException extends LogicException
3232
'class' => Bridge\Discord\DiscordTransportFactory::class,
3333
'package' => 'symfony/discord-notifier',
3434
],
35+
'engagespot' => [
36+
'class' => Bridge\Engagespot\EngagespotTransportFactory::class,
37+
'package' => 'symfony/engagespot-notifier',
38+
],
3539
'esendex' => [
3640
'class' => Bridge\Esendex\EsendexTransportFactory::class,
3741
'package' => 'symfony/esendex-notifier',

Transport.php

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
use Symfony\Component\Notifier\Bridge\AmazonSns\AmazonSnsTransportFactory;
1616
use Symfony\Component\Notifier\Bridge\Clickatell\ClickatellTransportFactory;
1717
use Symfony\Component\Notifier\Bridge\Discord\DiscordTransportFactory;
18+
use Symfony\Component\Notifier\Bridge\Engagespot\EngagespotTransportFactory;
1819
use Symfony\Component\Notifier\Bridge\Esendex\EsendexTransportFactory;
1920
use Symfony\Component\Notifier\Bridge\Expo\ExpoTransportFactory;
2021
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseTransportFactory;
@@ -71,6 +72,7 @@ final class Transport
7172
AmazonSnsTransportFactory::class,
7273
ClickatellTransportFactory::class,
7374
DiscordTransportFactory::class,
75+
EngagespotTransportFactory::class,
7476
EsendexTransportFactory::class,
7577
ExpoTransportFactory::class,
7678
FirebaseTransportFactory::class,

0 commit comments

Comments
 (0)