8000 Update symfony mailer docblocks by Jubeki · Pull Request #38773 · laravel/framework · GitHub
[go: up one dir, main page]

Skip to content

Update symfony mailer docblocks #38773

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 12, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update docblocks from Swift Mailer to Symfony Mailer
  • Loading branch information
Jubeki committed Sep 12, 2021
commit 406c95c73d3367b40e067a1ced9d537bef6eeb8a
10 changes: 5 additions & 5 deletions src/Illuminate/Mail/MailManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,10 @@ protected function createSendmailTransport(array $config)
}

/**
* Create an instance of the Amazon SES Swift Transport driver.
* Create an instance of the Symfony Amazon SES Transport driver.
*
* @param array $config
* @return \Illuminate\Mail\Transport\SesTransport
* @return \Symfony\Component\Mailer\Transport\TransportInterface
*/
protected function createSesTransport(array $config)
{
Expand Down Expand Up @@ -257,7 +257,7 @@ protected function createMailTransport()
}

/**
* Create an instance of the Mailgun Swift Transport driver.
* Create an instance of the Symfony Mailgun Transport driver.
*
* @param array $config
* @return \Symfony\Component\Mailer\Transport\TransportInterface
Expand All @@ -279,10 +279,10 @@ protected function createMailgunTransport(array $config)
}

/**
* Create an instance of the Postmark Swift Transport driver.
* Create an instance of the Symfony Postmark Transport driver.
*
* @param array $config
* @return \Swift_Transport
* @return \Symfony\Component\Mailer\Transport\TransportInterface
*/
protected function createPostmarkTransport(array $config)
{
Expand Down
0