Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f9ad1cd

Browse files
committed
bug #40852 [Notifier] Add missing entries in scheme to package map (jschaedl)
This PR was merged into the 5.3-dev branch. Discussion ---------- [Notifier] Add missing entries in scheme to package map | Q | A | ------------- | --- | Branch? | 5.x | Bug fix? | yes | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tickets | - <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT | Doc PR | - <!-- required for new features --> <!-- 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 5.x. - Changelog entry should follow https://symfony.com/doc/current/contributing/code/conventions.html#writing-a-changelog-entry --> Commits ------- 8cf6050 Add missing entries in scheme to package map
2 parents 926f87f + 8cf6050 commit f9ad1cd

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/Symfony/Component/Notifier/Exception/UnsupportedSchemeException.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,18 @@ class UnsupportedSchemeException extends LogicException
140140
'class' => Bridge\MessageBird\MessageBirdTransportFactory::class,
141141
'package' => 'symfony/message-bird-notifier',
142142
],
143+
'mobyt' => [
144+
'class' => Bridge\Mobyt\MobytTransportFactory::class,
145+
'package' => 'symfony/mobyt-notifier',
146+
],
147+
'linkedin' => [
148+
'class' => Bridge\LinkedIn\LinkedInTransportFactory::class,
149+
'package' => 'symfony/linked-in-notifier',
150+
],
151+
'sendinblue' => [
152+
'class' => Bridge\Sendinblue\SendinblueTransportFactory::class,
153+
'package' => 'symfony/sendinblue-notifier',
154+
],
143155
];
144156

145157
/**

0 commit comments

Comments
 (0)