mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 12:35:05 +01:00
31 lines
768 B
PHP
31 lines
768 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Expr;
|
|
|
|
use PhpParser\Node\Expr;
|
|
|
|
class ClosureUse extends Expr
|
|
{
|
|
/** @var Expr\Variable Variable to use */
|
|
public $var;
|
|
/** @var bool Whether to use by reference */
|
|
public $byRef;
|
|
|
|
/**
|
|
* Constructs a closure use node.
|
|
*
|
|
* @param Expr\Variable $var Variable to use
|
|
* @param bool $byRef Whether to use by reference
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(Expr\Variable $var, $byRef = false, array $attributes = array()) {
|
|
parent::__construct($attributes);
|
|
$this->var = $var;
|
|
$this->byRef = $byRef;
|
|
}
|
|
|
|
public function getSubNodeNames() {
|
|
return array('var', 'byRef');
|
|
}
|
|
}
|