-
Notifications
You must be signed in to change notification settings - Fork 570
Expand file tree
/
Copy pathAnalyserResult.php
More file actions
182 lines (160 loc) · 3.7 KB
/
AnalyserResult.php
File metadata and controls
182 lines (160 loc) · 3.7 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
178
179
180
181
182
<?php declare(strict_types = 1);
namespace PHPStan\Analyser;
use PHPStan\Collectors\CollectedData;
use PHPStan\Dependency\RootExportedNode;
use function usort;
/**
* @phpstan-import-type LinesToIgnore from FileAnalyserResult
* @phpstan-import-type CollectorData from CollectedData
*/
final class AnalyserResult
{
/** @var list<Error>|null */
private ?array $errors = null;
/**
* @param list<Error> $unorderedErrors
* @param list<Error> $filteredPhpErrors
* @param list<Error> $allPhpErrors
* @param list<Error> $locallyIgnoredErrors
* @param array<string, LinesToIgnore> $linesToIgnore
* @param array<string, LinesToIgnore> $unmatchedLineIgnores
* @param CollectorData $collectedData
* @param list<InternalError> $internalErrors
* @param array<string, array<string>>|null $dependencies
* @param array<string, array<string>>|null $usedTraitDependencies
* @param array<string, array<RootExportedNode>> $exportedNodes
* @param array<string, list<string>>|null $externalFileDependencies
*/
public function __construct(
private array $unorderedErrors,
private array $filteredPhpErrors,
private array $allPhpErrors,
private array $locallyIgnoredErrors,
private array $linesToIgnore,
private array $unmatchedLineIgnores,
private array $internalErrors,
private array $collectedData,
private ?array $dependencies,
private ?array $usedTraitDependencies,
private array $exportedNodes,
private bool $reachedInternalErrorsCountLimit,
private int $peakMemoryUsageBytes,
private ?array $externalFileDependencies = null,
)
{
}
/**
* @return list<Error>
*/
public function getUnorderedErrors(): array
{
return $this->unorderedErrors;
}
/**
* @return list<Error>
*/
public function getErrors(): array
{
if (!isset($this->errors)) {
$this->errors = $this->unorderedErrors;
usort(
$this->errors,
static fn (Error $a, Error $b): int => [
$a->getFile(),
$a->getLine(),
$a->getMessage(),
] <=> [
$b->getFile(),
$b->getLine(),
$b->getMessage(),
],
);
}
return $this->errors;
}
/**
* @return list<Error>
*/
public function getFilteredPhpErrors(): array
{
return $this->filteredPhpErrors;
}
/**
* @return list<Error>
*/
public function getAllPhpErrors(): array
{
return $this->allPhpErrors;
}
/**
* @return list<Error>
*/
public function getLocallyIgnoredErrors(): array
{
return $this->locallyIgnoredErrors;
}
/**
* @return array<string, LinesToIgnore>
*/
public function getLinesToIgnore(): array
{
return $this->linesToIgnore;
}
/**
* @return array<string, LinesToIgnore>
*/
public function getUnmatchedLineIgnores(): array
{
return $this->unmatchedLineIgnores;
}
/**
* @return list<InternalError>
*/
public function getInternalErrors(): array
{
return $this->internalErrors;
}
/**
* @return CollectorData
*/
public function getCollectedData(): array
{
return $this->collectedData;
}
/**
* @return array<string, array<string>>|null
*/
public function getDependencies(): ?array
{
return $this->dependencies;
}
/**
* @return array<string, array<string>>|null
*/
public function getUsedTraitDependencies(): ?array
{
return $this->usedTraitDependencies;
}
/**
* @return array<string, array<RootExportedNode>>
*/
public function getExportedNodes(): array
{
return $this->exportedNodes;
}
/**
* @return array<string, list<string>>|null
*/
public function getExternalFileDependencies(): ?array
{
return $this->externalFileDependencies;
}
public function hasReachedInternalErrorsCountLimit(): bool
{
return $this->reachedInternalErrorsCountLimit;
}
public function getPeakMemoryUsageBytes(): int
{
return $this->peakMemoryUsageBytes;
}
}