2011-05-27 18:20:44 +02:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Expr;
|
|
|
|
|
|
|
|
use PhpParser\Node\Expr;
|
|
|
|
|
|
|
|
class ClosureUse extends Expr
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var string Name of variable */
|
|
|
|
public $var;
|
|
|
|
/** @var bool Whether to use by reference */
|
|
|
|
public $byRef;
|
|
|
|
|
2011-08-11 10:25:51 +02:00
|
|
|
/**
|
|
|
|
* Constructs a closure use node.
|
|
|
|
*
|
|
|
|
* @param string $var Name of variable
|
|
|
|
* @param bool $byRef Whether to use by reference
|
2012-04-29 23:32:09 +02:00
|
|
|
* @param array $attributes Additional attributes
|
2011-08-11 10:25:51 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct($var, $byRef = false, array $attributes = array()) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2015-02-28 18:44:28 +01:00
|
|
|
$this->var = $var;
|
|
|
|
$this->byRef = $byRef;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSubNodeNames() {
|
|
|
|
return array('var', 'byRef');
|
2011-08-11 10:25:51 +02:00
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|