ClosureUse.php 743 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace PhpParser\Node\Expr;
  3. use PhpParser\Node\Expr;
  4. class ClosureUse extends Expr
  5. {
  6. /** @var string Name of variable */
  7. public $var;
  8. /** @var bool Whether to use by reference */
  9. public $byRef;
  10. /**
  11. * Constructs a closure use node.
  12. *
  13. * @param string $var Name of variable
  14. * @param bool $byRef Whether to use by reference
  15. * @param array $attributes Additional attributes
  16. */
  17. public function __construct($var, $byRef = false, array $attributes = array()) {
  18. parent::__construct($attributes);
  19. $this->var = $var;
  20. $this->byRef = $byRef;
  21. }
  22. public function getSubNodeNames() {
  23. return array('var', 'byRef');
  24. }
  25. }