12345678910111213141516171819202122232425 |
- <?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
- );
- }
- }
|