27 lines
		
	
	
		
			372 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			372 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
 | 
						|
namespace $NAMESPACE$;
 | 
						|
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
class $CLASS$
 | 
						|
{
 | 
						|
    use SerializesModels;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new event instance.
 | 
						|
     */
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
        //
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the channels the event should be broadcast on.
 | 
						|
     */
 | 
						|
    public function broadcastOn(): array
 | 
						|
    {
 | 
						|
        return [];
 | 
						|
    }
 | 
						|
}
 |