mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 12:35:05 +01:00
27 lines
564 B
PHP
27 lines
564 B
PHP
<?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');
|
|
}
|
|
}
|