X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/nikic/php-parser/lib/PhpParser/Node/Expr
home
/
prisjneg
/
public_html
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Node
/
Expr
/
📁
..
📄
ArrayDimFetch.php
(822 B)
📄
ArrayItem.php
(224 B)
📄
Array_.php
(831 B)
📄
ArrowFunction.php
(2.49 KB)
📄
Assign.php
(774 B)
📁
AssignOp
📄
AssignOp.php
(726 B)
📄
AssignRef.php
(823 B)
📁
BinaryOp
📄
BinaryOp.php
(1.07 KB)
📄
BitwiseNot.php
(652 B)
📄
BooleanNot.php
(652 B)
📄
CallLike.php
(970 B)
📁
Cast
📄
Cast.php
(567 B)
📄
ClassConstFetch.php
(986 B)
📄
Clone_.php
(637 B)
📄
Closure.php
(2.77 KB)
📄
ClosureUse.php
(227 B)
📄
ConstFetch.php
(683 B)
📄
Empty_.php
(640 B)
📄
Error.php
(757 B)
📄
ErrorSuppress.php
(662 B)
📄
Eval_.php
(637 B)
📄
Exit_.php
(758 B)
📄
FuncCall.php
(994 B)
📄
Include_.php
(951 B)
📄
Instanceof_.php
(860 B)
📄
Isset_.php
(642 B)
📄
List_.php
(879 B)
📄
Match_.php
(782 B)
📄
MethodCall.php
(1.25 KB)
📄
New_.php
(1.08 KB)
📄
NullsafeMethodCall.php
(1.27 KB)
📄
NullsafePropertyFetch.php
(971 B)
📄
PostDec.php
(639 B)
📄
PostInc.php
(639 B)
📄
PreDec.php
(636 B)
📄
PreInc.php
(636 B)
📄
Print_.php
(640 B)
📄
PropertyFetch.php
(945 B)
📄
ShellExec.php
(795 B)
📄
StaticCall.php
(1.26 KB)
📄
StaticPropertyFetch.php
(1014 B)
📄
Ternary.php
(967 B)
📄
Throw_.php
(668 B)
📄
UnaryMinus.php
(652 B)
📄
UnaryPlus.php
(649 B)
📄
Variable.php
(637 B)
📄
YieldFrom.php
(666 B)
📄
Yield_.php
(846 B)
Editing: Closure.php
<?php declare(strict_types=1); namespace PhpParser\Node\Expr; use PhpParser\Node; use PhpParser\Node\ClosureUse; use PhpParser\Node\Expr; use PhpParser\Node\FunctionLike; class Closure extends Expr implements FunctionLike { /** @var bool Whether the closure is static */ public bool $static; /** @var bool Whether to return by reference */ public bool $byRef; /** @var Node\Param[] Parameters */ public array $params; /** @var ClosureUse[] use()s */ public array $uses; /** @var null|Node\Identifier|Node\Name|Node\ComplexType Return type */ public ?Node $returnType; /** @var Node\Stmt[] Statements */ public array $stmts; /** @var Node\AttributeGroup[] PHP attribute groups */ public array $attrGroups; /** * Constructs a lambda function node. * * @param array{ * static?: bool, * byRef?: bool, * params?: Node\Param[], * uses?: ClosureUse[], * returnType?: null|Node\Identifier|Node\Name|Node\ComplexType, * stmts?: Node\Stmt[], * attrGroups?: Node\AttributeGroup[], * } $subNodes Array of the following optional subnodes: * 'static' => false : Whether the closure is static * 'byRef' => false : Whether to return by reference * 'params' => array(): Parameters * 'uses' => array(): use()s * 'returnType' => null : Return type * 'stmts' => array(): Statements * 'attrGroups' => array(): PHP attributes groups * @param array<string, mixed> $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'] ?? []; $this->uses = $subNodes['uses'] ?? []; $this->returnType = $subNodes['returnType'] ?? null; $this->stmts = $subNodes['stmts'] ?? []; $this->attrGroups = $subNodes['attrGroups'] ?? []; } public function getSubNodeNames(): array { return ['attrGroups', 'static', 'byRef', 'params', 'uses', 'returnType', 'stmts']; } public function returnsByRef(): bool { return $this->byRef; } public function getParams(): array { return $this->params; } public function getReturnType() { return $this->returnType; } /** @return Node\Stmt[] */ public function getStmts(): array { return $this->stmts; } public function getAttrGroups(): array { return $this->attrGroups; } public function getType(): string { return 'Expr_Closure'; } }
Upload File
Create Folder