mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 00:37:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			829 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			829 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\PrivateChannel;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class DesignWasUpdated.
 | 
						|
 */
 | 
						|
class DesignWasUpdated
 | 
						|
{
 | 
						|
    use SerializesModels;
 | 
						|
 | 
						|
    public function __construct(public Design $design, public Company $company, public array $event_vars)
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the channels the event should broadcast on.
 | 
						|
     *
 | 
						|
     * @return PrivateChannel|array
 | 
						|
     */
 | 
						|
    public function broadcastOn()
 | 
						|
    {
 | 
						|
        return [];
 | 
						|
    }
 | 
						|
}
 |