Skip to content

Commit 0a973b1

Browse files
authored
No need to implement twice. (#40787)
1 parent 42b2900 commit 0a973b1

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Illuminate/Mail/Transport/SesTransport.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
use Exception;
88
use Symfony\Component\Mailer\SentMessage;
99
use Symfony\Component\Mailer\Transport\AbstractTransport;
10-
use Symfony\Component\Mailer\Transport\TransportInterface;
1110

12-
class SesTransport extends AbstractTransport implements TransportInterface
11+
class SesTransport extends AbstractTransport
1312
{
1413
/**
1514
* The Amazon SES instance.

tests/Support/SupportTestingMailFakeTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Illuminate\Tests\Support;
44

5-
use Illuminate\Contracts\Mail\Mailable as MailableContract;
65
use Illuminate\Contracts\Queue\ShouldQueue;
76
use Illuminate\Contracts\Translation\HasLocalePreference;
87
use Illuminate\Mail\Mailable;
@@ -190,7 +189,7 @@ public function testAssertSentWithClosure()
190189
}
191190
}
192191

193-
class MailableStub extends Mailable implements MailableContract
192+
class MailableStub extends Mailable
194193
{
195194
public $framework = 'Laravel';
196195

0 commit comments

Comments
 (0)