1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 18:28:25 +01:00
PHP-Parser/lib/PHPParser/Node/Stmt/ClassConst.php
nikic 858545732c Add shared Node_Const
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.
2011-09-23 21:00:59 +02:00

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
);
}
}