у меня идет отправка данных по логам через кастомный обработчик:
и идет передача данных в очередь
$arrayForWriteLog = [
'domain' => $domain,
'message' => addslashes($record->message),
'level' => $record->level->name,
'json-payload' => addslashes(json_encode($jsonpayload))
];
jobCommetnsWriteToYandex::dispatch($arrayForWriteLog);
Сама очередь пустая, т.е. до нее даже не дошло дело
<?php
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 phpseclib3\Net\SSH2;
class jobCommetnsWriteToYandex implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
private $arrayForWriteLog;
public function __construct($arrayForWriteLog)
{
$this->arrayForWriteLog = $arrayForWriteLog;
}
public function handle(): void
{
}
}
Но идет такая ошибка:
Спасибо!