Skip to content
Merged
Changes from all commits
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
12 changes: 6 additions & 6 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\Bridge\Amazon\Transport\SesApiAsyncAwsTransport
*/
protected function createSesTransport(array $config)
{
Expand Down Expand Up @@ -257,10 +257,10 @@ 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
* @return \Symfony\Component\Mailer\Bridge\Mailgun\Transport\MailgunApiTransport
*/
protected function createMailgunTransport(array $config)
{
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\Bridge\Postmark\Transport\PostmarkApiTransport
*/
protected function createPostmarkTransport(array $config)
{
Expand Down