!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/dokan/script/vendor/nunomaduro/larastan/src/Methods/   drwxrwxrwx
Free 13.01 GB of 57.97 GB (22.44%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Macro.php (4.53 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
NunoMaduro\Larastan\Methods;

use 
Closure;
use 
ErrorException;
use 
PHPStan\Reflection\Php\BuiltinMethodReflection;
use 
PHPStan\TrinaryLogic;
use 
ReflectionClass;
use 
ReflectionFunction;
use 
ReflectionParameter;
use 
stdClass;

final class 
Macro implements BuiltinMethodReflection
{
    
/**
     * The class name.
     *
     * @var class-string
     */
    
private $className;

    
/**
     * The method name.
     *
     * @var string
     */
    
private $methodName;

    
/**
     * The reflection function.
     *
     * @var ReflectionFunction
     */
    
private $reflectionFunction;

    
/**
     * The parameters.
     *
     * @var ReflectionParameter[]
     */
    
private $parameters;

    
/**
     * The is static.
     *
     * @var bool
     */
    
private $isStatic false;

    
/**
     * Macro constructor.
     *
     * @param string $className
     * @phpstan-param class-string $className
     * @param string $methodName
     * @param ReflectionFunction $reflectionFunction
     */
    
public function __construct(string $classNamestring $methodNameReflectionFunction $reflectionFunction)
    {
        
$this->className $className;
        
$this->methodName $methodName;
        
$this->reflectionFunction $reflectionFunction;
        
$this->parameters $this->reflectionFunction->getParameters();

        if (
$this->reflectionFunction->isClosure()) {
            try {
                
/** @var Closure $closure */
                
$closure $this->reflectionFunction->getClosure();
                
Closure::bind($closure, new stdClass);
                
// The closure can be bound so it was not explicitly marked as static
            
} catch (ErrorException $e) {
                
// The closure was explicitly marked as static
                
$this->isStatic true;
            }
        }
    }

    
/**
     * {@inheritdoc}
     * @phpstan-ignore-next-line
     */
    
public function getDeclaringClass(): ReflectionClass
    
{
        return new 
ReflectionClass($this->className);
    }

    
/**
     * {@inheritdoc}
     */
    
public function isPrivate(): bool
    
{
        return 
false;
    }

    
/**
     * {@inheritdoc}
     */
    
public function isPublic(): bool
    
{
        return 
true;
    }

    public function 
isFinal(): bool
    
{
        return 
false;
    }

    public function 
isInternal(): bool
    
{
        return 
false;
    }

    public function 
isAbstract(): bool
    
{
        return 
false;
    }

    
/**
     * {@inheritdoc}
     */
    
public function isStatic(): bool
    
{
        return 
$this->isStatic;
    }

    
/**
     * Set the is static value.
     *
     * @param bool $isStatic
     *
     * @return void
     */
    
public function setIsStatic(bool $isStatic): void
    
{
        
$this->isStatic $isStatic;
    }

    
/**
     * {@inheritdoc}
     */
    
public function getDocComment(): ?string
    
{
        return 
$this->reflectionFunction->getDocComment() ?: null;
    }

    
/**
     * {@inheritdoc}
     */
    
public function getFileName()
    {
        return 
$this->reflectionFunction->getFileName();
    }

    
/**
     * {@inheritdoc}
     */
    
public function getName(): string
    
{
        return 
$this->methodName;
    }

    
/**
     * {@inheritdoc}
     */
    
public function getParameters(): array
    {
        return 
$this->parameters;
    }

    
/**
     * Set the parameters value.
     *
     * @param ReflectionParameter[] $parameters
     *
     * @return void
     */
    
public function setParameters(array $parameters): void
    
{
        
$this->parameters $parameters;
    }

    
/**
     * {@inheritdoc}
     */
    
public function getReturnType(): ?\ReflectionType
    
{
        return 
$this->reflectionFunction->getReturnType();
    }

    
/**
     * {@inheritdoc}
     */
    
public function getStartLine()
    {
        return 
$this->reflectionFunction->getStartLine();
    }

    
/**
     * {@inheritdoc}
     */
    
public function getEndLine()
    {
        return 
$this->reflectionFunction->getEndLine();
    }

    
/**
     * {@inheritdoc}
     */
    
public function isDeprecated(): TrinaryLogic
    
{
        return 
TrinaryLogic::createFromBoolean($this->reflectionFunction->isDeprecated());
    }

    
/**
     * {@inheritdoc}
     */
    
public function isVariadic(): bool
    
{
        return 
$this->reflectionFunction->isVariadic();
    }

    
/**
     * {@inheritdoc}
     */
    
public function getPrototype(): BuiltinMethodReflection
    
{
        return 
$this;
    }

    public function 
getReflection(): ?\ReflectionMethod
    
{
        return 
null;
    }
}

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