mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 14:47:31 -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();
 | |
|     }
 | |
| }
 |