File manager - Edit - /home/autoph/public_html/projects/vendor/laravel/framework/src/Illuminate/Queue/Events/JobRetryRequested.php
Back
<?php namespace Illuminate\Queue\Events; class JobRetryRequested { /** * The job instance. * * @var \stdClass */ public $job; /** * The decoded job payload. * * @var array|null */ protected $payload = null; /** * Create a new event instance. * * @param \stdClass $job * @return void */ public function __construct($job) { $this->job = $job; } /** * The job payload. * * @return array */ public function payload() { if (is_null($this->payload)) { $this->payload = json_decode($this->job->payload, true); } return $this->payload; } }
| ver. 1.4 |
.
| PHP 8.1.32 | Generation time: 0.12 |
proxy
|
phpinfo
|
Settings