32 lines
435 B
Plaintext
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace $NAMESPACE$;
use Illuminate\Bus\Queueable;
2019-11-16 10:21:14 +03:00
use Illuminate\Foundation\Bus\Dispatchable;
2017-09-14 22:21:00 +03:00
class $CLASS$ implements ShouldQueue
{
2019-11-16 10:21:14 +03:00
use Dispatchable, Queueable;
2017-09-14 22:21:00 +03:00
/**
* Create a new job instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
//
}
}