Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit dccc8aa

Browse filesBrowse files
PGLongoOskarStark
authored andcommitted
[Notifier] add support for gatewayapi-notifier
1 parent e192e44 commit dccc8aa
Copy full SHA for dccc8aa

20 files changed

+86
-448
lines changed

‎src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2237,11 +2237,7 @@ private function registerNotifierConfiguration(array $config, ContainerBuilder $
22372237
SendinblueNotifierTransportFactory::class => 'notifier.transport_factory.sendinblue',
22382238
DiscordTransportFactory::class => 'notifier.transport_factory.discord',
22392239
LinkedInTransportFactory::class => 'notifier.transport_factory.linkedin',
2240-
<<<<<<< HEAD
22412240
GatewayApiTransportFactory::class => 'notifier.transport_factory.gatewayapi',
2242-
=======
2243-
GatewayAPITransportFactory::class => 'notifier.transport_factory.gatewayapi',
2244-
>>>>>>> 2575ca2b12 ([Notifier] add support for gatewayapi-notifier)
22452241
];
22462242

22472243
foreach ($classToServices as $class => $service) {

‎src/Symfony/Bundle/FrameworkBundle/Resources/config/notifier_transports.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Resources/config/notifier_transports.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Notifier\Bridge\Esendex\EsendexTransportFactory;
1616
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseTransportFactory;
1717
use Symfony\Component\Notifier\Bridge\FreeMobile\FreeMobileTransportFactory;
18-
use Symfony\Component\Notifier\Bridge\GatewayAPI\GatewayAPITransportFactory;
18+
use Symfony\Component\Notifier\Bridge\GatewayApi\GatewayApiTransportFactory;
1919
use Symfony\Component\Notifier\Bridge\GoogleChat\GoogleChatTransportFactory;
2020
use Symfony\Component\Notifier\Bridge\Infobip\InfobipTransportFactory;
2121
use Symfony\Component\Notifier\Bridge\Iqsms\IqsmsTransportFactory;

‎src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Adapter/PdoDbalAdapterTest.php
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
use Doctrine\DBAL\Driver\AbstractMySQLDriver;
1616
use Doctrine\DBAL\DriverManager;
1717
use Doctrine\DBAL\Schema\Schema;
18+
use Doctrine\DBAL\Version;
1819
use Psr\Cache\CacheItemPoolInterface;
1920
use Symfony\Component\Cache\Adapter\PdoAdapter;
2021
use Symfony\Component\Cache\Tests\Traits\PdoPruneableTrait;

‎src/Symfony/Component/Notifier/Bridge/GatewayAPI/.gitattributes

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GatewayAPI/.gitattributes
-3Lines changed: 0 additions & 3 deletions
This file was deleted.

‎src/Symfony/Component/Notifier/Bridge/GatewayAPI/GatewayAPITransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GatewayAPI/GatewayAPITransport.php
-76Lines changed: 0 additions & 76 deletions
This file was deleted.

‎src/Symfony/Component/Notifier/Bridge/GatewayAPI/GatewayAPITransportFactory.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GatewayAPI/GatewayAPITransportFactory.php
-47Lines changed: 0 additions & 47 deletions
This file was deleted.

‎src/Symfony/Component/Notifier/Bridge/GatewayAPI/LICENSE

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GatewayAPI/LICENSE
-19Lines changed: 0 additions & 19 deletions
This file was deleted.

‎src/Symfony/Component/Notifier/Bridge/GatewayAPI/README.md

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GatewayAPI/README.md
-26Lines changed: 0 additions & 26 deletions
This file was deleted.

‎src/Symfony/Component/Notifier/Bridge/GatewayAPI/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GatewayAPI/composer.json
-35Lines changed: 0 additions & 35 deletions
This file was deleted.

‎src/Symfony/Component/Notifier/Bridge/GatewayAPI/phpunit.xml.dist

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GatewayAPI/phpunit.xml.dist
-31Lines changed: 0 additions & 31 deletions
This file was deleted.
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/Tests export-ignore
22
/phpunit.xml.dist export-ignore
3+
/.gitattributes export-ignore
34
/.gitignore export-ignore
+7Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CHANGELOG
2+
=========
3+
4+
5.3.0
5+
-----
6+
7+
* Added the bridge

‎src/Symfony/Component/Notifier/Bridge/GatewayApi/GatewayApiTransport.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GatewayApi/GatewayApiTransport.php
-76Lines changed: 0 additions & 76 deletions
This file was deleted.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.