File "JobAttempted.php"

Full Path: /var/www/html/back/vendor/laravel/framework/src/Illuminate/Queue/Events/JobAttempted.php
File size: 1.08 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Illuminate\Queue\Events;

class JobAttempted
{
    /**
     * The connection name.
     *
     * @var string
     */
    public $connectionName;

    /**
     * The job instance.
     *
     * @var \Illuminate\Contracts\Queue\Job
     */
    public $job;

    /**
     * Indicates if an exception occurred while processing the job.
     *
     * @var bool
     */
    public $exceptionOccurred;

    /**
     * Create a new event instance.
     *
     * @param  string  $connectionName
     * @param  \Illuminate\Contracts\Queue\Job  $job
     * @param  bool  $exceptionOccurred
     * @return void
     */
    public function __construct($connectionName, $job, $exceptionOccurred = false)
    {
        $this->job = $job;
        $this->connectionName = $connectionName;
        $this->exceptionOccurred = $exceptionOccurred;
    }

    /**
     * Determine if the job completed with failing or an unhandled exception occurring.
     *
     * @return bool
     */
    public function successful(): bool
    {
        return ! $this->job->hasFailed() && ! $this->exceptionOccurred;
    }
}