mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-04 18:28:25 +01:00
858545732c
Node_Const is shared between Node_Stmt_ClassConst and Node_Stmt_Const. Maybe one could generalize it to a Node_NameToValue to share it with Node_Stmt_Declare too.
23 lines
638 B
PHP
23 lines
638 B
PHP
<?php
|
|
|
|
/**
|
|
* @property PHPParser_Node_Const[] $consts Constant declarations
|
|
*/
|
|
class PHPParser_Node_Stmt_ClassConst extends PHPParser_Node_Stmt
|
|
{
|
|
/**
|
|
* Constructs a class const list node.
|
|
*
|
|
* @param PHPParser_Node_Const[] $consts Constant declarations
|
|
* @param int $line Line
|
|
* @param null|string $docComment Nearest doc comment
|
|
*/
|
|
public function __construct(array $consts, $line = -1, $docComment = null) {
|
|
parent::__construct(
|
|
array(
|
|
'consts' => $consts,
|
|
),
|
|
$line, $docComment
|
|
);
|
|
}
|
|
} |