123456789101112131415161718192021222324252627 |
- <?php
- namespace PhpParser\Node\Stmt;
- use PhpParser\Node;
- class Unset_ extends Node\Stmt
- {
- /** @var Node\Expr[] Variables to unset */
- public $vars;
- /**
- * 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($attributes);
- $this->vars = $vars;
- }
- public function getSubNodeNames() {
- return array('vars');
- }
- }
|