Constructs a closure use node.
Expr\Variable $var Variable to use:
bool $byRef Whether to use by reference:
array<string, mixed> $attributes Additional attributes:
Overrides NodeAbstract::__construct
public function __construct(Expr\Variable $var, bool $byRef = false, array $attributes = []) { $this->attributes = $attributes; $this->var = $var; $this->byRef = $byRef; }