菜谱项目

ElseIf_.php 710B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace PhpParser\Node\Stmt;
  3. use PhpParser\Node;
  4. class ElseIf_ extends Node\Stmt
  5. {
  6. /** @var Node\Expr Condition */
  7. public $cond;
  8. /** @var Node[] Statements */
  9. public $stmts;
  10. /**
  11. * Constructs an elseif node.
  12. *
  13. * @param Node\Expr $cond Condition
  14. * @param Node[] $stmts Statements
  15. * @param array $attributes Additional attributes
  16. */
  17. public function __construct(Node\Expr $cond, array $stmts = array(), array $attributes = array()) {
  18. parent::__construct($attributes);
  19. $this->cond = $cond;
  20. $this->stmts = $stmts;
  21. }
  22. public function getSubNodeNames() {
  23. return array('cond', 'stmts');
  24. }
  25. }