This commit is contained in:
David Bomba 2016-03-02 12:13:57 +11:00
parent 1e39a85066
commit c1b9d6febc

View File

@ -10,6 +10,7 @@ use App\Events\QuoteInvitationWasViewed;
use App\Events\QuoteInvitationWasApproved; use App\Events\QuoteInvitationWasApproved;
use App\Events\PaymentWasCreated; use App\Events\PaymentWasCreated;
use App\Ninja\Notifications; use App\Ninja\Notifications;
use App\Services\PushService;
class NotificationListener class NotificationListener
{ {
@ -17,7 +18,7 @@ class NotificationListener
protected $contactMailer; protected $contactMailer;
protected $pushService; protected $pushService;
public function __construct(UserMailer $userMailer, ContactMailer $contactMailer, Notifications\PushService $pushService) public function __construct(UserMailer $userMailer, ContactMailer $contactMailer, PushService $pushService)
{ {
$this->userMailer = $userMailer; $this->userMailer = $userMailer;
$this->contactMailer = $contactMailer; $this->contactMailer = $contactMailer;