Variable.php 637 B

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