1234567891011121314151617181920212223242526272829 |
- <?php
- namespace PhpParser\Node\Expr;
- use PhpParser\Node\Expr;
- /**
- * @property string $var Name of variable
- * @property bool $byRef Whether to use by reference
- */
- class ClosureUse extends Expr
- {
- /**
- * Constructs a closure use node.
- *
- * @param string $var Name of variable
- * @param bool $byRef Whether to use by reference
- * @param array $attributes Additional attributes
- */
- public function __construct($var, $byRef = false, array $attributes = array()) {
- parent::__construct(
- array(
- 'var' => $var,
- 'byRef' => $byRef
- ),
- $attributes
- );
- }
- }
|