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