-
Notifications
You must be signed in to change notification settings - Fork 574
Expand file tree
/
Copy pathClassConstantAccessType.php
More file actions
135 lines (104 loc) · 3.3 KB
/
ClassConstantAccessType.php
File metadata and controls
135 lines (104 loc) · 3.3 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
<?php declare(strict_types = 1);
namespace PHPStan\Type;
use PHPStan\PhpDocParser\Ast\ConstExpr\ConstFetchNode;
use PHPStan\PhpDocParser\Ast\Type\ConstTypeNode;
use PHPStan\PhpDocParser\Ast\Type\TypeNode;
use PHPStan\Type\Generic\TemplateTypeVariance;
use PHPStan\Type\Traits\LateResolvableTypeTrait;
use PHPStan\Type\Traits\NonGeneralizableTypeTrait;
use function count;
final class ClassConstantAccessType implements CompoundType, LateResolvableType
{
use LateResolvableTypeTrait;
use NonGeneralizableTypeTrait;
public function __construct(
private Type $type,
private string $constantName,
)
{
}
public function getReferencedClasses(): array
{
return $this->type->getReferencedClasses();
}
public function getReferencedTemplateTypes(TemplateTypeVariance $positionVariance): array
{
return $this->type->getReferencedTemplateTypes($positionVariance);
}
public function equals(Type $type): bool
{
return $type instanceof self
&& $this->constantName === $type->constantName
&& $this->type->equals($type->type);
}
public function describe(VerbosityLevel $level): string
{
return $this->resolve()->describe($level);
}
public function isResolvable(): bool
{
return !TypeUtils::containsTemplateType($this->type);
}
public function isSubTypeOf(Type $otherType): IsSuperTypeOfResult
{
if ($this->type->hasConstant($this->constantName)->yes()) {
$valueType = $this->type->getConstant($this->constantName)->getValueType();
return $otherType->isSuperTypeOf($valueType);
}
return $otherType->isSuperTypeOf($this->resolve());
}
public function isAcceptedBy(Type $acceptingType, bool $strictTypes): AcceptsResult
{
if ($this->type->hasConstant($this->constantName)->yes()) {
$valueType = $this->type->getConstant($this->constantName)->getValueType();
return $acceptingType->accepts($valueType, $strictTypes);
}
$result = $this->resolve();
if ($result instanceof CompoundType) {
return $result->isAcceptedBy($acceptingType, $strictTypes);
}
return $acceptingType->accepts($result, $strictTypes);
}
protected function getResult(): Type
{
if (!$this->type->hasConstant($this->constantName)->yes()) {
return new ErrorType();
}
$constantReflection = $this->type->getConstant($this->constantName);
$classReflections = $this->type->getObjectClassReflections();
$isFinalClass = count($classReflections) === 1 && $classReflections[0]->isFinal();
if ($isFinalClass || $constantReflection->isFinal()) {
return $constantReflection->getValueType();
}
if (!$constantReflection->hasPhpDocType() && !$constantReflection->hasNativeType()) {
return new MixedType();
}
return $constantReflection->getValueType();
}
/**
* @param callable(Type): Type $cb
*/
public function traverse(callable $cb): Type
{
$type = $cb($this->type);
if ($this->type === $type) {
return $this;
}
return new self($type, $this->constantName);
}
public function traverseSimultaneously(Type $right, callable $cb): Type
{
if (!$right instanceof self) {
return $this;
}
$type = $cb($this->type, $right->type);
if ($this->type === $type) {
return $this;
}
return new self($type, $this->constantName);
}
public function toPhpDocNode(): TypeNode
{
return new ConstTypeNode(new ConstFetchNode((string) $this->type->toPhpDocNode(), $this->constantName));
}
}