1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-02 17:28:27 +01:00
PHP-Parser/lib/PhpParser/Node/Expr/ClosureUse.php

31 lines
781 B
PHP
Raw Normal View History

<?php
namespace PhpParser\Node\Expr;
use PhpParser\Node\Expr;
class ClosureUse extends Expr
{
2017-01-19 23:32:49 +01:00
/** @var Expr\Variable Variable to use */
public $var;
/** @var bool Whether to use by reference */
public $byRef;
/**
* Constructs a closure use node.
*
2017-01-19 23:32:49 +01:00
* @param Expr\Variable $var Variable to use
* @param bool $byRef Whether to use by reference
* @param array $attributes Additional attributes
*/
2017-04-28 21:40:59 +02:00
public function __construct(Expr\Variable $var, bool $byRef = false, array $attributes = array()) {
2015-05-02 22:17:34 +02:00
parent::__construct($attributes);
$this->var = $var;
$this->byRef = $byRef;
}
2017-04-28 21:40:59 +02:00
public function getSubNodeNames() : array {
return array('var', 'byRef');
}
}