forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectTypeMethodReflection.php
More file actions
145 lines (117 loc) · 3.03 KB
/
Copy pathObjectTypeMethodReflection.php
File metadata and controls
145 lines (117 loc) · 3.03 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
<?php declare(strict_types = 1);
namespace PHPStan\Reflection;
use PHPStan\Reflection\Php\DummyParameter;
use PHPStan\TrinaryLogic;
use PHPStan\Type\ObjectType;
use PHPStan\Type\StaticType;
use PHPStan\Type\Type;
use PHPStan\Type\TypeTraverser;
class ObjectTypeMethodReflection implements MethodReflection
{
/** @var \PHPStan\Type\ObjectType */
private $objectType;
/** @var \PHPStan\Reflection\MethodReflection */
private $reflection;
/** @var \PHPStan\Reflection\ParametersAcceptor[]|null */
private $variants;
public function __construct(
ObjectType $objectType,
MethodReflection $reflection
)
{
$this->objectType = $objectType;
$this->reflection = $reflection;
}
public function getDeclaringClass(): ClassReflection
{
return $this->reflection->getDeclaringClass();
}
public function isStatic(): bool
{
return $this->reflection->isStatic();
}
public function isPrivate(): bool
{
return $this->reflection->isPrivate();
}
public function isPublic(): bool
{
return $this->reflection->isPublic();
}
public function getDocComment(): ?string
{
return $this->reflection->getDocComment();
}
public function getName(): string
{
return $this->reflection->getName();
}
public function getPrototype(): ClassMemberReflection
{
return $this->reflection->getPrototype();
}
/**
* @return \PHPStan\Reflection\ParametersAcceptor[]
*/
public function getVariants(): array
{
if ($this->variants !== null) {
return $this->variants;
}
$variants = [];
foreach ($this->reflection->getVariants() as $variant) {
$variants[] = $this->processVariant($variant);
}
$this->variants = $variants;
return $this->variants;
}
private function processVariant(ParametersAcceptor $acceptor): ParametersAcceptor
{
return new FunctionVariant(
$acceptor->getTemplateTypeMap(),
$acceptor->getResolvedTemplateTypeMap(),
array_map(function (ParameterReflection $parameter): ParameterReflection {
$type = TypeTraverser::map($parameter->getType(), function (Type $type, callable $traverse): Type {
if ($type instanceof StaticType) {
return $traverse($this->objectType);
}
return $traverse($type);
});
return new DummyParameter(
$parameter->getName(),
$type,
$parameter->isOptional(),
$parameter->passedByReference(),
$parameter->isVariadic(),
$parameter->getDefaultValue()
);
}, $acceptor->getParameters()),
$acceptor->isVariadic(),
$acceptor->getReturnType()
);
}
public function isDeprecated(): TrinaryLogic
{
return $this->reflection->isDeprecated();
}
public function getDeprecatedDescription(): ?string
{
return $this->reflection->getDeprecatedDescription();
}
public function isFinal(): TrinaryLogic
{
return $this->reflection->isFinal();
}
public function isInternal(): TrinaryLogic
{
return $this->reflection->isInternal();
}
public function getThrowType(): ?Type
{
return $this->reflection->getThrowType();
}
public function hasSideEffects(): TrinaryLogic
{
return $this->reflection->hasSideEffects();
}
}