ConstFetch.php 683 B

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