2011-05-27 18:20:44 +02:00
|
|
|
<?php
|
|
|
|
|
2011-05-29 12:20:47 +02:00
|
|
|
/**
|
2011-09-23 21:00:59 +02:00
|
|
|
* @property PHPParser_Node_Const[] $consts Constant declarations
|
2011-05-29 12:20:47 +02:00
|
|
|
*/
|
2011-06-05 18:40:04 +02:00
|
|
|
class PHPParser_Node_Stmt_ClassConst extends PHPParser_Node_Stmt
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2011-09-22 20:27:12 +02:00
|
|
|
/**
|
|
|
|
* Constructs a class const list node.
|
|
|
|
*
|
2011-09-23 21:00:59 +02:00
|
|
|
* @param PHPParser_Node_Const[] $consts Constant declarations
|
2012-04-29 23:32:09 +02:00
|
|
|
* @param array $attributes Additional attributes
|
2011-09-22 20:27:12 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct(array $consts, array $attributes = array()) {
|
2011-09-22 20:27:12 +02:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'consts' => $consts,
|
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-09-22 20:27:12 +02:00
|
|
|
);
|
|
|
|
}
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|