1234567891011121314151617181920212223242526 |
- <?php
- namespace PhpParser\Node\Stmt;
- use PhpParser\Node;
- /**
- * @property Node\Expr[] $vars Variables to unset
- */
- class Unset_ extends Node\Stmt
- {
- /**
- * Constructs an unset node.
- *
- * @param Node\Expr[] $vars Variables to unset
- * @param array $attributes Additional attributes
- */
- public function __construct(array $vars, array $attributes = array()) {
- parent::__construct(
- array(
- 'vars' => $vars,
- ),
- $attributes
- );
- }
- }
|