mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 04:00:55 -04:00
21 lines
347 B
PHP
21 lines
347 B
PHP
<?php
|
|
|
|
namespace App\Listeners;
|
|
|
|
use App\Events\QuoteInvitationWasViewed;
|
|
|
|
/**
|
|
* Class QuoteListener.
|
|
*/
|
|
class QuoteListener
|
|
{
|
|
/**
|
|
* @param QuoteInvitationWasViewed $event
|
|
*/
|
|
public function viewedQuote(QuoteInvitationWasViewed $event)
|
|
{
|
|
$invitation = $event->invitation;
|
|
$invitation->markViewed();
|
|
}
|
|
}
|