Illuminate\Queue\Worker::raiseFailedJobEvent PHP Method

raiseFailedJobEvent() protected method

Raise the failed queue job event.
protected raiseFailedJobEvent ( string $connectionName, Illuminate\Contracts\Queue\Job $job, Exception $e ) : void
$connectionName string
$job Illuminate\Contracts\Queue\Job
$e Exception
return void
    protected function raiseFailedJobEvent($connectionName, $job, $e)
    {
        $this->events->fire(new Events\JobFailed($connectionName, $job, $e));
    }