1234567891011121314151617181920212223242526 |
- <?php
- namespace PhpParser\Node\Stmt;
- use PhpParser\Node;
- /**
- * @property Node\Const_[] $consts Constant declarations
- */
- class Const_ extends Node\Stmt
- {
- /**
- * Constructs a 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
- );
- }
- }
|