1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 17:57:59 +01:00
PHP-Parser/lib/PHPParser/Node/Stmt/Unset.php

23 lines
605 B
PHP
Raw Normal View History

<?php
2011-05-30 17:29:10 +02:00
/**
* @property PHPParser_Node_Expr[] $vars Variables to unset
2011-05-30 17:29:10 +02:00
*/
2011-06-05 18:40:04 +02:00
class PHPParser_Node_Stmt_Unset extends PHPParser_Node_Stmt
{
/**
* Constructs an unset node.
*
* @param PHPParser_Node_Expr[] $vars Variables to unset
* @param int $line Line
* @param null|string $docComment Nearest doc comment
*/
public function __construct(array $vars, $line = -1, $docComment = null) {
parent::__construct(
array(
'vars' => $vars,
),
$line, $docComment
);
}
}