123456789101112131415161718192021222324252627 |
- <?php
- namespace PhpParser\Node\Stmt;
- use PhpParser\Node;
- class Else_ extends Node\Stmt
- {
- /** @var Node[] Statements */
- public $stmts;
- /**
- * Constructs an else node.
- *
- * @param Node[] $stmts Statements
- * @param array $attributes Additional attributes
- */
- public function __construct(array $stmts = array(), array $attributes = array()) {
- parent::__construct($attributes);
- $this->stmts = $stmts;
- }
- public function getSubNodeNames() {
- return array('stmts');
- }
- }
|