mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
26 lines
572 B
PHP
26 lines
572 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
|
|
/**
|
|
* @property Node\Const_[] $consts Constant declarations
|
|
*/
|
|
class ClassConst extends Node\Stmt
|
|
{
|
|
/**
|
|
* Constructs a class const list node.
|
|
*
|
|
* @param Node\Const_[] $consts Constant declarations
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(array $consts, array $attributes = array()) {
|
|
parent::__construct(
|
|
array(
|
|
'consts' => $consts,
|
|
),
|
|
$attributes
|
|
);
|
|
}
|
|
} |