home
/
zktecojo
/
public_html
/
vendor
/
nikic
/
php-parser
/
lib
/
PHPParser
/
Node
➕ New
📤 Upload
✎ Editing:
Arg.php
← Back
<?php /** * @property PHPParser_Node_Expr $value Value to pass * @property bool $byRef Whether to pass by ref */ class PHPParser_Node_Arg extends PHPParser_NodeAbstract { /** * Constructs a function call argument node. * * @param PHPParser_Node_Expr $value Value to pass * @param bool $byRef Whether to pass by ref * @param array $attributes Additional attributes */ public function __construct(PHPParser_Node_Expr $value, $byRef = false, array $attributes = array()) { parent::__construct( array( 'value' => $value, 'byRef' => $byRef ), $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