mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-02 17:28:27 +01:00
27 lines
584 B
PHP
27 lines
584 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
class Static_ extends Stmt
|
|
{
|
|
/** @var StaticVar[] Variable definitions */
|
|
public $vars;
|
|
|
|
/**
|
|
* Constructs a static variables list node.
|
|
*
|
|
* @param StaticVar[] $vars Variable definitions
|
|
* @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');
|
|
}
|
|
}
|