Skip to content

Commit 2306f3d

Browse files
committed
Add new Pushy notifier bridge
1 parent 2fc70fd commit 2306f3d

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

Exception/UnsupportedSchemeException.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,10 @@ class UnsupportedSchemeException extends LogicException
200200
'class' => Bridge\Pushover\PushoverTransportFactory::class,
201201
'package' => 'symfony/pushover-notifier',
202202
],
203+
'pushy' => [
204+
'class' => Bridge\Pushy\PushyTransportFactory::class,
205+
'package' => 'symfony/pushy-notifier',
206+
],
203207
'redlink' => [
204208
'class' => Bridge\Redlink\RedlinkTransportFactory::class,
205209
'package' => 'symfony/redlink-notifier',

Tests/Exception/UnsupportedSchemeExceptionTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ public static function setUpBeforeClass(): void
7272
Bridge\PagerDuty\PagerDutyTransportFactory::class => false,
7373
Bridge\Plivo\PlivoTransportFactory::class => false,
7474
Bridge\Pushover\PushoverTransportFactory::class => false,
75+
Bridge\Pushy\PushyTransportFactory::class => false,
7576
Bridge\Redlink\RedlinkTransportFactory::class => false,
7677
Bridge\RingCentral\RingCentralTransportFactory::class => false,
7778
Bridge\RocketChat\RocketChatTransportFactory::class => false,

Transport.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ final class Transport
7474
Bridge\PagerDuty\PagerDutyTransportFactory::class,
7575
Bridge\Plivo\PlivoTransportFactory::class,
7676
Bridge\Pushover\PushoverTransportFactory::class,
77+
Bridge\Pushy\PushyTransportFactory::class,
7778
Bridge\Redlink\RedlinkTransportFactory::class,
7879
Bridge\RingCentral\RingCentralTransportFactory::class,
7980
Bridge\RocketChat\RocketChatTransportFactory::class,

0 commit comments

Comments
 (0)