App\Listeners\NotificationListener::emailedQuote PHP Method

emailedQuote() public method

public emailedQuote ( QuoteWasEmailed $event )
$event App\Events\QuoteWasEmailed
    public function emailedQuote(QuoteWasEmailed $event)
    {
        $this->sendEmails($event->quote, 'sent');
        $this->pushService->sendNotification($event->quote, 'sent');
    }