mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-12 17:37:21 +01:00
1c11626f0a
Rather than automatically deriving getType() from the class name.
31 lines
687 B
PHP
31 lines
687 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
|
|
class Const_ extends Node\Stmt
|
|
{
|
|
/** @var Node\Const_[] Constant declarations */
|
|
public $consts;
|
|
|
|
/**
|
|
* Constructs a const list node.
|
|
*
|
|
* @param Node\Const_[] $consts Constant declarations
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(array $consts, array $attributes = []) {
|
|
parent::__construct($attributes);
|
|
$this->consts = $consts;
|
|
}
|
|
|
|
public function getSubNodeNames() : array {
|
|
return ['consts'];
|
|
}
|
|
|
|
function getType() : string {
|
|
return 'Stmt_Const';
|
|
}
|
|
}
|