1<?php declare(strict_types=1);
2
3namespace PhpParser\Node;
4
5/**
6 * Represents a name that is written in source code with a leading dollar,
7 * but is not a proper variable. The leading dollar is not stored as part of the name.
8 *
9 * Examples: Names in property declarations are formatted as variables. Names in static property
10 * lookups are also formatted as variables.
11 */
12class VarLikeIdentifier extends Identifier {
13    public function getType(): string {
14        return 'VarLikeIdentifier';
15    }
16}
17