Skip to content

Commit 7de84ca

Browse files
Merge branch '6.4' into 7.0
* 6.4: [PhpUnitBridge] Kill the last concurrent process when it stales for more than 60s [Intl] fix test [Intl] Use VarExporter::export() in PhpBundleWriter [Console] The application also catch `\Throwable` exceptions FrameworkBundle] Fix tests [Mailer] Fix Brevo transport factory registration Simplify tests [Notifier] Fix Esendex messages serialization Use triggering class to generate baseline for deprecation messages from DebugClassLoader [Security] Fix false-string handling in RememberMeAuthenticator [CssSelector] Tests on Xpath translator will always pass [Serializer] Fix Normalizer not utilizing converted name for index variadic param [DepdencyInjection] Fix costly logic when checking errored definitions Fix merge fix children cond [DoctrineBridge] Load refreshed user proxy [DependencyInjection] Don't ignore attributes on the actual decorator [FrameworkBundle] Prevent `cache:clear` to lose files on subsequent runs
2 parents 936eaf9 + 2ad0538 commit 7de84ca

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Transport.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
use Psr\EventDispatcher\EventDispatcherInterface;
1515
use Psr\Log\LoggerInterface;
1616
use Symfony\Component\Mailer\Bridge\Amazon\Transport\SesTransportFactory;
17+
use Symfony\Component\Mailer\Bridge\Brevo\Transport\BrevoTransportFactory;
1718
use Symfony\Component\Mailer\Bridge\Google\Transport\GmailTransportFactory;
1819
use Symfony\Component\Mailer\Bridge\Infobip\Transport\InfobipTransportFactory;
1920
use Symfony\Component\Mailer\Bridge\Mailchimp\Transport\MandrillTransportFactory;
@@ -43,6 +44,7 @@
4344
final class Transport
4445
{
4546
private const FACTORY_CLASSES = [
47+
BrevoTransportFactory::class,
4648
GmailTransportFactory::class,
4749
InfobipTransportFactory::class,
4850
MailerSendTransportFactory::class,

0 commit comments

Comments
 (0)