29 lines
339 B
Plaintext
29 lines
339 B
Plaintext
<?php
|
|
|
|
namespace $NAMESPACE$;
|
|
|
|
use App\Abstracts\Job;
|
|
|
|
class $CLASS$ extends Job
|
|
{
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
//
|
|
}
|
|
}
|