🤩 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:BackgroundQueue.php
<?php namespace Illuminate\Queue; use Illuminate\Support\Facades\Concurrency; class BackgroundQueue extends SyncQueue { /** * Push a new job onto the queue. * * @param string $job * @param mixed $data * @param string|null $queue * @return mixed * * @throws \Throwable */ public function push($job, $data = '', $queue = null) { Concurrency::driver('process')->defer( fn () => \Illuminate\Support\Facades\Queue::connection('sync')->push($job, $data, $queue) ); } }
Save Changes
Cancel
Create New File
Create New Folder