No Description

Echo_.php 526B

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