Minor changes to mail:send and job:list rendering
This commit is contained in:
@@ -2,44 +2,23 @@
|
||||
|
||||
namespace App\Jobs;
|
||||
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Contracts\Queue\ShouldBeUnique;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Foundation\Bus\Dispatchable;
|
||||
use Illuminate\Queue\InteractsWithQueue;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
use Repat\LaravelJobs\Job;
|
||||
|
||||
use App\Models\Address;
|
||||
|
||||
class MailSend implements ShouldQueue
|
||||
class MailSend #implements ShouldQueue
|
||||
{
|
||||
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||||
use Dispatchable;
|
||||
|
||||
private const LOGKEY = 'JCM';
|
||||
|
||||
private ?bool $crash;
|
||||
|
||||
/**
|
||||
* @param bool $crash Send crash mail only
|
||||
*/
|
||||
public function __construct(bool $crash=NULL)
|
||||
{
|
||||
$this->crash = $crash;
|
||||
}
|
||||
|
||||
public function __get($key): mixed
|
||||
{
|
||||
switch ($key) {
|
||||
case 'subject':
|
||||
return __METHOD__;
|
||||
|
||||
default:
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
public function __construct(private ?bool $crash=NULL) {}
|
||||
|
||||
/**
|
||||
* Execute the job.
|
||||
|
Reference in New Issue
Block a user