StocksNew/stubs/nwidart-stubs/job.stub

28 lines
387 B
Plaintext
Raw Normal View History

2024-08-27 12:03:06 +00:00
<?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
{
//
}
}