mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-02 17:38:19 +01:00
25 lines
740 B
PHP
25 lines
740 B
PHP
<?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
|
|
);
|
|
}
|
|
} |