!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/queuepro/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/   drwxrwxr-x
Free 13.27 GB of 57.97 GB (22.89%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ArrowFunction.php (2.33 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types=1);

namespace 
PhpParser\Node\Expr;

use 
PhpParser\Node;
use 
PhpParser\Node\Expr;
use 
PhpParser\Node\FunctionLike;

class 
ArrowFunction extends Expr implements FunctionLike
{
    
/** @var bool */
    
public $static;

    
/** @var bool */
    
public $byRef;

    
/** @var Node\Param[] */
    
public $params = [];

    
/** @var null|Node\Identifier|Node\Name|Node\ComplexType */
    
public $returnType;

    
/** @var Expr */
    
public $expr;
    
/** @var Node\AttributeGroup[] */
    
public $attrGroups;

    
/**
     * @param array $subNodes   Array of the following optional subnodes:
     *                          'static'     => false   : Whether the closure is static
     *                          'byRef'      => false   : Whether to return by reference
     *                          'params'     => array() : Parameters
     *                          'returnType' => null    : Return type
     *                          'expr'       => Expr    : Expression body
     *                          'attrGroups' => array() : PHP attribute groups
     * @param array $attributes Additional attributes
     */
    
public function __construct(array $subNodes = [], array $attributes = []) {
        
$this->attributes $attributes;
        
$this->static $subNodes['static'] ?? false;
        
$this->byRef $subNodes['byRef'] ?? false;
        
$this->params $subNodes['params'] ?? [];
        
$returnType $subNodes['returnType'] ?? null;
        
$this->returnType \is_string($returnType) ? new Node\Identifier($returnType) : $returnType;
        
$this->expr $subNodes['expr'];
        
$this->attrGroups $subNodes['attrGroups'] ?? [];
    }

    public function 
getSubNodeNames() : array {
        return [
'attrGroups''static''byRef''params''returnType''expr'];
    }

    public function 
returnsByRef() : bool {
        return 
$this->byRef;
    }

    public function 
getParams() : array {
        return 
$this->params;
    }

    public function 
getReturnType() {
        return 
$this->returnType;
    }

    public function 
getAttrGroups() : array {
        return 
$this->attrGroups;
    }

    
/**
     * @return Node\Stmt\Return_[]
     */
    
public function getStmts() : array {
        return [new 
Node\Stmt\Return_($this->expr)];
    }

    public function 
getType() : string {
        return 
'Expr_ArrowFunction';
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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