-
Notifications
You must be signed in to change notification settings - Fork 574
Expand file tree
/
Copy pathRealClassClassConstantReflection.php
More file actions
173 lines (140 loc) · 3.72 KB
/
RealClassClassConstantReflection.php
File metadata and controls
173 lines (140 loc) · 3.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?php declare(strict_types = 1);
namespace PHPStan\Reflection;
use PhpParser\Node\Expr;
use PHPStan\BetterReflection\Reflection\Adapter\ReflectionClassConstant;
use PHPStan\Internal\DeprecatedAttributeHelper;
use PHPStan\PhpDoc\ResolvedPhpDocBlock;
use PHPStan\TrinaryLogic;
use PHPStan\Type\Type;
use PHPStan\Type\TypehintHelper;
final class RealClassClassConstantReflection implements ClassConstantReflection
{
private ?Type $valueType = null;
/**
* @param list<AttributeReflection> $attributes
*/
public function __construct(
private InitializerExprTypeResolver $initializerExprTypeResolver,
private ClassReflection $declaringClass,
private ReflectionClassConstant $reflection,
private ?Type $nativeType,
private ?Type $phpDocType,
private ?ResolvedPhpDocBlock $resolvedPhpDocBlock,
private ?string $deprecatedDescription,
private bool $isDeprecated,
private bool $isInternal,
private bool $isFinal,
private array $attributes,
)
{
}
public function getName(): string
{
return $this->reflection->getName();
}
public function getFileName(): ?string
{
return $this->declaringClass->getFileName();
}
public function getValueExpr(): Expr
{
return $this->reflection->getValueExpression();
}
public function hasPhpDocType(): bool
{
return $this->phpDocType !== null;
}
public function getPhpDocType(): ?Type
{
return $this->phpDocType;
}
public function hasNativeType(): bool
{
return $this->nativeType !== null;
}
public function getNativeType(): ?Type
{
return $this->nativeType;
}
public function getValueType(): Type
{
if ($this->valueType === null) {
if ($this->phpDocType !== null) {
if ($this->nativeType !== null) {
return $this->valueType = TypehintHelper::decideType(
$this->nativeType,
$this->phpDocType,
);
}
return $this->phpDocType;
} elseif ($this->nativeType !== null) {
return $this->nativeType;
}
$this->valueType = $this->initializerExprTypeResolver->getType($this->getValueExpr(), InitializerExprContext::fromClassReflection($this->declaringClass));
}
return $this->valueType;
}
public function getInitializerExprType(): Type
{
return $this->initializerExprTypeResolver->getType($this->getValueExpr(), InitializerExprContext::fromClassReflection($this->declaringClass));
}
public function getDeclaringClass(): ClassReflection
{
return $this->declaringClass;
}
public function getResolvedPhpDoc(): ?ResolvedPhpDocBlock
{
return $this->resolvedPhpDocBlock;
}
public function isStatic(): bool
{
return true;
}
public function isPrivate(): bool
{
return $this->reflection->isPrivate();
}
public function isPublic(): bool
{
return $this->reflection->isPublic();
}
public function isFinal(): bool
{
return $this->isFinal || $this->reflection->isFinal();
}
public function isFinalByKeyword(): bool
{
return $this->reflection->isFinal();
}
public function isDeprecated(): TrinaryLogic
{
return TrinaryLogic::createFromBoolean($this->isDeprecated || $this->reflection->isDeprecated());
}
public function getDeprecatedDescription(): ?string
{
if ($this->isDeprecated) {
return $this->deprecatedDescription;
}
if ($this->reflection->isDeprecated()) {
$attributes = $this->reflection->getBetterReflection()->getAttributes();
return DeprecatedAttributeHelper::getDeprecatedDescription($attributes);
}
return null;
}
public function isInternal(): TrinaryLogic
{
return TrinaryLogic::createFromBoolean($this->isInternal);
}
public function getDocComment(): ?string
{
$docComment = $this->reflection->getDocComment();
if ($docComment === false) {
return null;
}
return $docComment;
}
public function getAttributes(): array
{
return $this->attributes;
}
}