| 1 | <?php |
||
| 7 | class Case_ extends Node\Stmt |
||
| 8 | { |
||
| 9 | /** @var null|Node\Expr $cond Condition (null for default) */ |
||
| 10 | public $cond; |
||
| 11 | /** @var Node[] Statements */ |
||
| 12 | public $stmts; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Constructs a case node. |
||
| 16 | * |
||
| 17 | * @param null|Node\Expr $cond Condition (null for default) |
||
| 18 | * @param Node[] $stmts Statements |
||
| 19 | * @param array $attributes Additional attributes |
||
| 20 | */ |
||
| 21 | public function __construct($cond, array $stmts = array(), array $attributes = array()) { |
||
| 22 | parent::__construct($attributes); |
||
| 23 | $this->cond = $cond; |
||
| 24 | $this->stmts = $stmts; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getSubNodeNames() { |
||
| 30 | } |
||
| 31 |