2011-05-27 18:20:44 +02:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
|
2011-05-29 17:33:03 +02:00
|
|
|
/**
|
2014-02-06 14:44:16 +01:00
|
|
|
* @property Node\Const_[] $consts Constant declarations
|
2011-05-29 17:33:03 +02:00
|
|
|
*/
|
2014-02-06 14:44:16 +01:00
|
|
|
class Const_ extends Node\Stmt
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2011-09-23 21:00:59 +02:00
|
|
|
/**
|
|
|
|
* Constructs a const list node.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param Node\Const_[] $consts Constant declarations
|
|
|
|
* @param array $attributes Additional attributes
|
2011-09-23 21:00:59 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct(array $consts, array $attributes = array()) {
|
2011-09-23 21:00:59 +02:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'consts' => $consts,
|
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-09-23 21:00:59 +02:00
|
|
|
);
|
|
|
|
}
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|