🤩 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:Backoff.php
<?php namespace Illuminate\Queue\Attributes; use Attribute; #[Attribute(Attribute::TARGET_CLASS)] class Backoff { /** * The backoff values. * * @var array<int>|int */ public array|int $backoff; /** * Create a new attribute instance. * * @param array<int>|int ...$backoff Seconds to wait before retrying the job. */ public function __construct(array|int ...$backoff) { $this->backoff = count($backoff) === 1 ? $backoff[0] : $backoff; } }
Save Changes
Cancel
Create New File
Create New Folder