!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)

/home/ccl/vendor/illuminate/support/Testing/Fakes/   drwxrwxr-x
Free 12.97 GB of 57.97 GB (22.38%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Support\Testing\Fakes;

use 
Illuminate\Contracts\Bus\Dispatcher;
use 
PHPUnit\Framework\Assert as PHPUnit;

class 
BusFake implements Dispatcher
{
    
/**
     * The commands that have been dispatched.
     *
     * @var array
     */
    
protected $commands = [];

    
/**
     * Assert if a job was dispatched based on a truth-test callback.
     *
     * @param  string  $command
     * @param  callable|int|null  $callback
     * @return void
     */
    
public function assertDispatched($command$callback null)
    {
        if (
is_numeric($callback)) {
            return 
$this->assertDispatchedTimes($command$callback);
        }

        
PHPUnit::assertTrue(
            
$this->dispatched($command$callback)->count() > 0,
            
"The expected [{$command}] job was not dispatched."
        
);
    }

    
/**
     * Assert if a job was pushed a number of times.
     *
     * @param  string  $command
     * @param  int  $times
     * @return void
     */
    
protected function assertDispatchedTimes($command$times 1)
    {
        
PHPUnit::assertTrue(
            (
$count $this->dispatched($command)->count()) === $times,
            
"The expected [{$command}] job was pushed {$count} times instead of {$times} times."
        
);
    }

    
/**
     * Determine if a job was dispatched based on a truth-test callback.
     *
     * @param  string  $command
     * @param  callable|null  $callback
     * @return void
     */
    
public function assertNotDispatched($command$callback null)
    {
        
PHPUnit::assertTrue(
            
$this->dispatched($command$callback)->count() === 0,
            
"The unexpected [{$command}] job was dispatched."
        
);
    }

    
/**
     * Get all of the jobs matching a truth-test callback.
     *
     * @param  string  $command
     * @param  callable|null  $callback
     * @return \Illuminate\Support\Collection
     */
    
public function dispatched($command$callback null)
    {
        if (! 
$this->hasDispatched($command)) {
            return 
collect();
        }

        
$callback $callback ?: function () {
            return 
true;
        };

        return 
collect($this->commands[$command])->filter(function ($command) use ($callback) {
            return 
$callback($command);
        });
    }

    
/**
     * Determine if there are any stored commands for a given class.
     *
     * @param  string  $command
     * @return bool
     */
    
public function hasDispatched($command)
    {
        return isset(
$this->commands[$command]) && ! empty($this->commands[$command]);
    }

    
/**
     * Dispatch a command to its appropriate handler.
     *
     * @param  mixed  $command
     * @return mixed
     */
    
public function dispatch($command)
    {
        return 
$this->dispatchNow($command);
    }

    
/**
     * Dispatch a command to its appropriate handler in the current process.
     *
     * @param  mixed  $command
     * @param  mixed  $handler
     * @return mixed
     */
    
public function dispatchNow($command$handler null)
    {
        
$this->commands[get_class($command)][] = $command;
    }

    
/**
     * Set the pipes commands should be piped through before dispatching.
     *
     * @param  array  $pipes
     * @return $this
     */
    
public function pipeThrough(array $pipes)
    {
        
//
    
}
}

:: 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.0057 ]--