28 lines
		
	
	
		
			387 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			387 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
 | 
						|
namespace $NAMESPACE$;
 | 
						|
 | 
						|
use Illuminate\Bus\Queueable;
 | 
						|
use Illuminate\Foundation\Bus\Dispatchable;
 | 
						|
 | 
						|
class $CLASS$ implements ShouldQueue
 | 
						|
{
 | 
						|
    use Dispatchable, Queueable;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new job instance.
 | 
						|
     */
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
        //
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Execute the job.
 | 
						|
     */
 | 
						|
    public function handle(): void
 | 
						|
    {
 | 
						|
        //
 | 
						|
    }
 | 
						|
}
 |