Skip to content

Commit

Permalink
CS Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
KennedyTedesco committed Feb 27, 2017
1 parent 4e3c378 commit 6ee838f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Mail/Mailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
use InvalidArgumentException;
use Illuminate\Support\HtmlString;
use Illuminate\Contracts\View\Factory;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Contracts\Mail\Mailer as MailerContract;
use Illuminate\Contracts\Queue\Factory as QueueContract;
use Illuminate\Contracts\Mail\Mailable as MailableContract;
Expand Down Expand Up @@ -182,7 +182,7 @@ public function plain($view, array $data, $callback)
public function send($view, array $data = [], $callback = null)
{
if ($view instanceof MailableContract) {
if($view instanceof ShouldQueue) {
if ($view instanceof ShouldQueue) {
return $view->queue($this->queue);
}

Expand Down

0 comments on commit 6ee838f

Please sign in to comment.