Skip to content

Commit 9f599b0

Browse files
committed
[Notifier] [Mailer] Sort transport factories alphabetically
1 parent f2dbd83 commit 9f599b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Transport.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@
4242
class Transport
4343
{
4444
private const FACTORY_CLASSES = [
45-
SesTransportFactory::class,
4645
GmailTransportFactory::class,
47-
MandrillTransportFactory::class,
4846
MailgunTransportFactory::class,
47+
MailjetTransportFactory::class,
48+
MandrillTransportFactory::class,
4949
PostmarkTransportFactory::class,
5050
SendgridTransportFactory::class,
51-
MailjetTransportFactory::class,
5251
SendinblueTransportFactory::class,
52+
SesTransportFactory::class,
5353
];
5454

5555
private $factories;

0 commit comments

Comments
 (0)