No Description

Print_.php 633B

12345678910111213141516171819202122232425262728293031
  1. <?php declare(strict_types=1);
  2. namespace PhpParser\Node\Expr;
  3. use PhpParser\Node\Expr;
  4. class Print_ extends Expr
  5. {
  6. /** @var Expr Expression */
  7. public $expr;
  8. /**
  9. * Constructs an print() node.
  10. *
  11. * @param Expr $expr Expression
  12. * @param array $attributes Additional attributes
  13. */
  14. public function __construct(Expr $expr, array $attributes = []) {
  15. $this->attributes = $attributes;
  16. $this->expr = $expr;
  17. }
  18. public function getSubNodeNames() : array {
  19. return ['expr'];
  20. }
  21. public function getType() : string {
  22. return 'Expr_Print';
  23. }
  24. }