home
/
zktecojo
/
public_html
/
vendor
/
nikic
/
php-parser
/
lib
/
PHPParser
/
Node
/
Expr
➕ New
📤 Upload
✎ Editing:
Closure.php
← Back
<?php /** * @property PHPParser_Node[] $stmts Statements * @property PHPParser_Node_Param[] $params Parameters * @property PHPParser_Node_Expr_ClosureUse[] $uses use()s * @property bool $byRef Whether to return by reference * @property bool $static Whether the closure is static */ class PHPParser_Node_Expr_Closure extends PHPParser_Node_Expr { /** * Constructs a lambda function node. * * @param array $subNodes Array of the following optional subnodes: * 'stmts' => array(): Statements * 'params' => array(): Parameters * 'uses' => array(): use()s * 'byRef' => false : Whether to return by reference * 'static' => false : Whether the closure is static * @param array $attributes Additional attributes */ public function __construct(array $subNodes = array(), array $attributes = array()) { parent::__construct( $subNodes + array( 'stmts' => array(), 'params' => array(), 'uses' => array(), 'byRef' => false, 'static' => false, ), $attributes ); } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel