forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstantScalarTypeTrait.php
132 lines (103 loc) · 3.18 KB
/
ConstantScalarTypeTrait.php
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
<?php declare(strict_types = 1);
namespace PHPStan\Type\Traits;
use PHPStan\Php\PhpVersion;
use PHPStan\ShouldNotHappenException;
use PHPStan\TrinaryLogic;
use PHPStan\Type\AcceptsResult;
use PHPStan\Type\BooleanType;
use PHPStan\Type\CompoundType;
use PHPStan\Type\Constant\ConstantBooleanType;
use PHPStan\Type\ConstantScalarType;
use PHPStan\Type\LooseComparisonHelper;
use PHPStan\Type\Type;
trait ConstantScalarTypeTrait
{
public function accepts(Type $type, bool $strictTypes): TrinaryLogic
{
return $this->acceptsWithReason($type, $strictTypes)->result;
}
public function acceptsWithReason(Type $type, bool $strictTypes): AcceptsResult
{
if ($type instanceof self) {
return AcceptsResult::createFromBoolean($this->equals($type));
}
if ($type instanceof CompoundType) {
return $type->isAcceptedWithReasonBy($this, $strictTypes);
}
return parent::acceptsWithReason($type, $strictTypes)->and(AcceptsResult::createMaybe());
}
public function isSuperTypeOf(Type $type): TrinaryLogic
{
if ($type instanceof self) {
return TrinaryLogic::createFromBoolean($this->equals($type));
}
if ($type instanceof parent) {
return TrinaryLogic::createMaybe();
}
if ($type instanceof CompoundType) {
return $type->isSubTypeOf($this);
}
return TrinaryLogic::createNo();
}
public function looseCompare(Type $type, PhpVersion $phpVersion): BooleanType
{
if (!$this instanceof ConstantScalarType) {
throw new ShouldNotHappenException();
}
if ($type instanceof ConstantScalarType) {
return LooseComparisonHelper::compareConstantScalars($this, $type, $phpVersion);
}
if ($type->isConstantArray()->yes() && $type->isIterableAtLeastOnce()->no()) {
// @phpstan-ignore equal.notAllowed, equal.invalid
return new ConstantBooleanType($this->getValue() == []); // phpcs:ignore
}
if ($type instanceof CompoundType) {
return $type->looseCompare($this, $phpVersion);
}
return parent::looseCompare($type, $phpVersion);
}
public function equals(Type $type): bool
{
return $type instanceof self && $this->value === $type->value;
}
public function isSmallerThan(Type $otherType): TrinaryLogic
{
if ($otherType instanceof ConstantScalarType) {
return TrinaryLogic::createFromBoolean($this->value < $otherType->getValue());
}
if ($otherType instanceof CompoundType) {
return $otherType->isGreaterThan($this);
}
return TrinaryLogic::createMaybe();
}
public function isSmallerThanOrEqual(Type $otherType, PhpVersion $phpVersion): TrinaryLogic
{
if ($otherType instanceof ConstantScalarType) {
return TrinaryLogic::createFromBoolean($this->value <= $otherType->getValue());
}
if ($otherType instanceof CompoundType) {
return $otherType->isGreaterThanOrEqual($this, $phpVersion);
}
return TrinaryLogic::createMaybe();
}
public function isConstantValue(): TrinaryLogic
{
return TrinaryLogic::createYes();
}
public function isConstantScalarValue(): TrinaryLogic
{
return TrinaryLogic::createYes();
}
public function getConstantScalarTypes(): array
{
return [$this];
}
public function getConstantScalarValues(): array
{
return [$this->getValue()];
}
public function getFiniteTypes(): array
{
return [$this];
}
}