App\Listeners\NotificationListener::viewedQuote PHP 메소드

viewedQuote() 공개 메소드

public viewedQuote ( QuoteInvitationWasViewed $event )
$event App\Events\QuoteInvitationWasViewed
    public function viewedQuote(QuoteInvitationWasViewed $event)
    {
        $this->sendEmails($event->quote, 'viewed');
        $this->pushService->sendNotification($event->quote, 'viewed');
    }