forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJustNullableTypeTrait.php
More file actions
177 lines (139 loc) · 3 KB
/
Copy pathJustNullableTypeTrait.php
File metadata and controls
177 lines (139 loc) · 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
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
174
175
176
177
<?php declare(strict_types = 1);
namespace PHPStan\Type;
use PHPStan\TrinaryLogic;
use function get_class;
trait JustNullableTypeTrait
{
public function getReferencedClasses(): array
{
return [];
}
public function getObjectClassNames(): array
{
return [];
}
public function getObjectClassReflections(): array
{
return [];
}
public function accepts(Type $type, bool $strictTypes): AcceptsResult
{
if ($type instanceof static) {
return AcceptsResult::createYes();
}
if ($type instanceof CompoundType) {
return $type->isAcceptedBy($this, $strictTypes);
}
return AcceptsResult::createNo();
}
public function isSuperTypeOf(Type $type): IsSuperTypeOfResult
{
if ($type instanceof self) {
return IsSuperTypeOfResult::createYes();
}
if ($type instanceof CompoundType) {
return $type->isSubTypeOf($this);
}
return IsSuperTypeOfResult::createNo();
}
public function equals(Type $type): bool
{
return get_class($type) === static::class;
}
public function traverse(callable $cb): Type
{
return $this;
}
public function traverseSimultaneously(Type $right, callable $cb): Type
{
return $this;
}
public function isNull(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isConstantValue(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isConstantScalarValue(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function getConstantScalarTypes(): array
{
return [];
}
public function getConstantScalarValues(): array
{
return [];
}
public function isTrue(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isFalse(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isBoolean(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isFloat(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isInteger(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isNumericString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isDecimalIntegerString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isNonEmptyString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isNonFalsyString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isLiteralString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isLowercaseString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isClassString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isUppercaseString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function getClassStringObjectType(): Type
{
return new ErrorType();
}
public function getObjectTypeOrClassStringObjectType(): Type
{
return new ErrorType();
}
public function isVoid(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
}