!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/notification/vendor/illuminate/events/   drwxr-xr-x
Free 13.03 GB of 57.97 GB (22.48%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     QueuedClosure.php (2.64 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Events;

use 
Closure;
use 
Laravel\SerializableClosure\SerializableClosure;

class 
QueuedClosure
{
    
/**
     * The underlying Closure.
     *
     * @var \Closure
     */
    
public $closure;

    
/**
     * The name of the connection the job should be sent to.
     *
     * @var string|null
     */
    
public $connection;

    
/**
     * The name of the queue the job should be sent to.
     *
     * @var string|null
     */
    
public $queue;

    
/**
     * The number of seconds before the job should be made available.
     *
     * @var \DateTimeInterface|\DateInterval|int|null
     */
    
public $delay;

    
/**
     * All of the "catch" callbacks for the queued closure.
     *
     * @var array
     */
    
public $catchCallbacks = [];

    
/**
     * Create a new queued closure event listener resolver.
     *
     * @param  \Closure  $closure
     * @return void
     */
    
public function __construct(Closure $closure)
    {
        
$this->closure $closure;
    }

    
/**
     * Set the desired connection for the job.
     *
     * @param  string|null  $connection
     * @return $this
     */
    
public function onConnection($connection)
    {
        
$this->connection $connection;

        return 
$this;
    }

    
/**
     * Set the desired queue for the job.
     *
     * @param  string|null  $queue
     * @return $this
     */
    
public function onQueue($queue)
    {
        
$this->queue $queue;

        return 
$this;
    }

    
/**
     * Set the desired delay in seconds for the job.
     *
     * @param  \DateTimeInterface|\DateInterval|int|null  $delay
     * @return $this
     */
    
public function delay($delay)
    {
        
$this->delay $delay;

        return 
$this;
    }

    
/**
     * Specify a callback that should be invoked if the queued listener job fails.
     *
     * @param  \Closure  $closure
     * @return $this
     */
    
public function catch(Closure $closure)
    {
        
$this->catchCallbacks[] = $closure;

        return 
$this;
    }

    
/**
     * Resolve the actual event listener callback.
     *
     * @return \Closure
     */
    
public function resolve()
    {
        return function (...
$arguments) {
            
dispatch(new CallQueuedListener(InvokeQueuedClosure::class, 'handle', [
                
'closure' => new SerializableClosure($this->closure),
                
'arguments' => $arguments,
                
'catch' => collect($this->catchCallbacks)->map(function ($callback) {
                    return new 
SerializableClosure($callback);
                })->
all(),
            ]))->
onConnection($this->connection)->onQueue($this->queue)->delay($this->delay);
        };
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.005 ]--