2011-05-27 18:20:44 +02:00
|
|
|
<?php
|
|
|
|
|
2011-05-29 17:33:03 +02:00
|
|
|
/**
|
2011-09-23 21:00:59 +02:00
|
|
|
* @property PHPParser_Node_Const[] $consts Constant declarations
|
2011-05-29 17:33:03 +02:00
|
|
|
*/
|
2011-06-05 18:40:04 +02:00
|
|
|
class PHPParser_Node_Stmt_Const extends PHPParser_Node_Stmt
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2011-09-23 21:00:59 +02:00
|
|
|
/**
|
|
|
|
* Constructs a 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
|
|
|
|
);
|
|
|
|
}
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|