mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 13:07:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			997 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			997 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace App\Events\Design;
 | |
| 
 | |
| use App\Models\Company;
 | |
| use App\Models\Design;
 | |
| use Illuminate\Broadcasting\Channel;
 | |
| use Illuminate\Broadcasting\InteractsWithSockets;
 | |
| use Illuminate\Broadcasting\PrivateChannel;
 | |
| use Illuminate\Foundation\Events\Dispatchable;
 | |
| use Illuminate\Queue\SerializesModels;
 | |
| 
 | |
| /**
 | |
|  * Class DesignWasArchived.
 | |
|  */
 | |
| class DesignWasArchived
 | |
| {
 | |
|     use Dispatchable, InteractsWithSockets, SerializesModels;
 | |
| 
 | |
|     public function __construct(public Design $design, public Company $company, public array $event_vars)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get the channels the event should broadcast on.
 | |
|      *
 | |
|      * @return Channel|array
 | |
|      */
 | |
|      public function broadcastOn()
 | |
|      {
 | |
|         return [];
 | |
|      }
 | |
| }
 |