mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-02 17:38:19 +01:00
993f29906b
Instead explicitly assign the attributes. This is a minor performance improvement.
31 lines
675 B
PHP
31 lines
675 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
|
|
class Global_ extends Node\Stmt
|
|
{
|
|
/** @var Node\Expr[] Variables */
|
|
public $vars;
|
|
|
|
/**
|
|
* Constructs a global variables list node.
|
|
*
|
|
* @param Node\Expr[] $vars Variables to unset
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(array $vars, array $attributes = []) {
|
|
$this->attributes = $attributes;
|
|
$this->vars = $vars;
|
|
}
|
|
|
|
public function getSubNodeNames() : array {
|
|
return ['vars'];
|
|
}
|
|
|
|
public function getType() : string {
|
|
return 'Stmt_Global';
|
|
}
|
|
}
|