Skip to content

Commit

Permalink
[5.3] Fix docblocks (#16814)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmichot authored and GrahamCampbell committed Dec 15, 2016
1 parent c79269b commit 8949a03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Mail/SendQueuedMailable.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class SendQueuedMailable
/**
* Create a new job instance.
*
* @param MailableContract $mailable
* @param \Illuminate\Contracts\Mail\Mailable $mailable
* @return void
*/
public function __construct(MailableContract $mailable)
Expand All @@ -28,7 +28,7 @@ public function __construct(MailableContract $mailable)
/**
* Handle the queued job.
*
* @param MailerContract $mailer
* @param \Illuminate\Contracts\Mail\Mailer $mailer
* @return void
*/
public function handle(MailerContract $mailer)
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Mail/Transport/Transport.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected function beforeSendPerformed(Swift_Mime_Message $message)
/**
* Iterate through registered plugins and execute plugins' methods.
*
* @param \Swift_Mime-Message $message
* @param \Swift_Mime_Message $message
* @return void
*/
protected function sendPerformed(Swift_Mime_Message $message)
Expand Down

0 comments on commit 8949a03

Please sign in to comment.