Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class Identifier extends Node |
||
20 | { |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | public string $value; |
||
25 | |||
26 | /** |
||
27 | * Name constructor. |
||
28 | * |
||
29 | * @param string $name |
||
30 | */ |
||
31 | public function __construct(string $name) |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @param TokenInterface $token |
||
38 | * @return static |
||
39 | */ |
||
40 | public static function create(TokenInterface $token): self |
||
45 |