菜谱项目

Exit_.php 651B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace PhpParser\Node\Expr;
  3. use PhpParser\Node\Expr;
  4. class Exit_ extends Expr
  5. {
  6. /* For use in "kind" attribute */
  7. const KIND_EXIT = 1;
  8. const KIND_DIE = 2;
  9. /** @var null|Expr Expression */
  10. public $expr;
  11. /**
  12. * Constructs an exit() node.
  13. *
  14. * @param null|Expr $expr Expression
  15. * @param array $attributes Additional attributes
  16. */
  17. public function __construct(Expr $expr = null, array $attributes = array()) {
  18. parent::__construct($attributes);
  19. $this->expr = $expr;
  20. }
  21. public function getSubNodeNames() {
  22. return array('expr');
  23. }
  24. }