2011-05-27 18:20:44 +02:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
|
|
|
|
class Const_ extends Node\Stmt
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var Node\Const_[] Constant declarations */
|
|
|
|
public $consts;
|
|
|
|
|
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
|
|
|
*/
|
2017-08-13 14:06:08 +02:00
|
|
|
public function __construct(array $consts, array $attributes = []) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2015-02-28 18:44:28 +01:00
|
|
|
$this->consts = $consts;
|
|
|
|
}
|
|
|
|
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getSubNodeNames() : array {
|
2017-08-13 14:06:08 +02:00
|
|
|
return ['consts'];
|
2011-09-23 21:00:59 +02:00
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|