No Description

Else_.php 519B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace PhpParser\Node\Stmt;
  3. use PhpParser\Node;
  4. /**
  5. * @property Node[] $stmts Statements
  6. */
  7. class Else_ extends Node\Stmt
  8. {
  9. /**
  10. * Constructs an else node.
  11. *
  12. * @param Node[] $stmts Statements
  13. * @param array $attributes Additional attributes
  14. */
  15. public function __construct(array $stmts = array(), array $attributes = array()) {
  16. parent::__construct(
  17. array(
  18. 'stmts' => $stmts,
  19. ),
  20. $attributes
  21. );
  22. }
  23. }