You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
347 B
21 lines
347 B
<?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 {}
|
|
}
|
|
|