Skip to content

Commit 0e37da4

Browse files
committed
feature #37830 [Notifier] Add LinkedIn provider (ismail1432)
This PR was merged into the 5.2-dev branch. Discussion ---------- [Notifier] Add LinkedIn provider | Q | A | ------------- | --- | Branch? | master for features 5.2 | Bug fix? | no | New feature? | yes/no <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | yes/no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tickets | Fix #34563 <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT | Doc PR | symfony/symfony-docs#... <!-- required for new features --> ### Add the LinkedIn provider for the Notifier Few months ago I created a bridge to send message to LinkedIn, following [the discussion here](symfony/symfony#34563) I create the PR. If you're curious [I wrote an article where I use the bridge](https://medium.com/@smaine.milianni/aws-lambda-and-symfony-6d3e9831c3cd) [Edit] test are green ~missing improvement body construction and integration test with update changes + framework integration~ [Notification sent with this PR](https://www.linkedin.com/posts/smainemilianni_hello-linkedin-from-symfony-bridge-see-pull-activity-6700328970665177088-31tT) <!-- Replace this notice by a short README for your feature/bugfix. This will help people understand your PR and can be used as a start for the documentation. Additionally (see https://symfony.com/releases): - Always add tests and ensure they pass. - Never break backward compatibility (see https://symfony.com/bc). - Bug fixes must be submitted against the lowest maintained branch where they apply (lowest branches are regularly merged to upper ones so they get the fixes too.) - Features and deprecations must be submitted against branch master. --> Commits ------- 0064cae9a0 add Linkedin transport and option
2 parents 237d237 + 6bf7652 commit 0e37da4

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
@@ -15,6 +15,7 @@
1515
use Symfony\Component\Notifier\Bridge\FreeMobile\FreeMobileTransportFactory;
1616
use Symfony\Component\Notifier\Bridge\GoogleChat\GoogleChatTransportFactory;
1717
use Symfony\Component\Notifier\Bridge\Infobip\InfobipTransportFactory;
18+
use Symfony\Component\Notifier\Bridge\LinkedIn\LinkedInTransportFactory;
1819
use Symfony\Component\Notifier\Bridge\Mattermost\MattermostTransportFactory;
1920
use Symfony\Component\Notifier\Bridge\Mobyt\MobytTransportFactory;
2021
use Symfony\Component\Notifier\Bridge\Nexmo\NexmoTransportFactory;
@@ -38,6 +39,10 @@
3839
->parent('notifier.transport_factory.abstract')
3940
->tag('chatter.transport_factory')
4041

42+
->set('notifier.transport_factory.linkedin', LinkedInTransportFactory::class)
43+
->parent('notifier.transport_factory.abstract')
44+
->tag('chatter.transport_factory')
45+
4146
->set('notifier.transport_factory.telegram', TelegramTransportFactory::class)
4247
->parent('notifier.transport_factory.abstract')
4348
->tag('chatter.transport_factory')

0 commit comments

Comments
 (0)