8000 Update symfony mailer docblocks (#38773) · laravel/framework@f7324d1 · GitHub
[go: up one dir, main page]

Skip to content

Commit f7324d1

Browse files
authored
Update symfony mailer docblocks (#38773)
* Update docblocks from Swift Mailer to Symfony Mailer * Make TransportInterface more specific
1 parent b2f4981 commit f7324d1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Illuminate/Mail/MailManager.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,10 @@ protected function createSendmailTransport(array $config)
219219
}
220220

221221
/**
222-
* Create an instance of the Amazon SES Swift Transport driver.
222+
* Create an instance of the Symfony Amazon SES Transport driver.
223223
*
224224
* @param array $config
225-
* @return \Illuminate\Mail\Transport\SesTransport
225+
* @return \Symfony\Component\Mailer\Bridge\Amazon\Transport\SesApiAsyncAwsTransport
226226
*/
227227
protected function createSesTransport(array $config)
228228
{
@@ -257,10 +257,10 @@ protected function createMailTransport()
257257
}
258258

259259
/**
260-
* Create an instance of the Mailgun Swift Transport driver.
260+
* Create an instance of the Symfony Mailgun Transport driver.
261261
*
262262
* @param array $config
263-
* @return \Symfony\Component\Mailer\Transport\TransportInterface
263+
* @return \Symfony\Component\Mailer\Bridge\Mailgun\Transport\MailgunApiTransport
264264
*/
265265
protected function createMailgunTransport(array $config)
266266
{
@@ -279,10 +279,10 @@ protected function createMailgunTransport(array $config)
279279
}
280280

281281
/**
282-
* Create an instance of the Postmark Swift Transport driver.
282+
* Create an instance of the Symfony Postmark Transport driver.
283283
*
284284
* @param array $config
285-
* @return \Swift_Transport
285+
* @return \Symfony\Component\Mailer\Bridge\Postmark\Transport\PostmarkApiTransport
286286
*/
287287
protected function createPostmarkTransport(array $config)
288288
{

0 commit comments

Comments
 (0)
0