Skip to content
This repository has been archived by the owner on Dec 22, 2019. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/Bogardo/Mailgun
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogardo committed Jul 12, 2014
2 parents a55f479 + efc6751 commit cabb5e1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Bogardo/Mailgun/Mailgun.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use Closure;
use Mailgun\Mailgun as Mg;
use Illuminate\View\Environment;
use Illuminate\View\Factory;
use Illuminate\Support\Facades\Config;

class Mailgun
Expand All @@ -11,7 +11,7 @@ class Mailgun
/**
* The view environment instance.
*
* @var \Illuminate\View\Environment
* @var \Illuminate\View\Factory
*/
protected $views;

Expand Down Expand Up @@ -46,14 +46,14 @@ class Mailgun
/**
* Create a new Mailer instance.
*
* @param \Illuminate\View\Environment $views
* @param \Illuminate\View\Factory $views
*
* @return \Bogardo\Mailgun\Mailgun
*/
public function __construct(Environment $views)
{
$this->views = $views;
}
public function __construct(Factory $views)
{
$this->views = $views;
}

/**
* Initialise message configuration
Expand Down

0 comments on commit cabb5e1

Please sign in to comment.