-
Notifications
You must be signed in to change notification settings - Fork 562
Expand file tree
/
Copy pathResultCache.php
More file actions
168 lines (148 loc) · 3.55 KB
/
ResultCache.php
File metadata and controls
168 lines (148 loc) · 3.55 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
<?php declare(strict_types = 1);
namespace PHPStan\Analyser\ResultCache;
use PHPStan\Analyser\Error;
use PHPStan\Analyser\FileAnalyserResult;
use PHPStan\Collectors\CollectedData;
use PHPStan\Dependency\RootExportedNode;
/**
* @phpstan-import-type LinesToIgnore from FileAnalyserResult
* @phpstan-import-type CollectorData from CollectedData
*/
final class ResultCache
{
/**
* @param string[] $filesToAnalyse
* @param mixed[] $meta
* @param array<string, list<Error>> $errors
* @param array<string, list<Error>> $locallyIgnoredErrors
* @param array<string, LinesToIgnore> $linesToIgnore
* @param array<string, LinesToIgnore> $unmatchedLineIgnores
* @param CollectorData $collectedData
* @param array<string, array<string>> $dependencies
* @param array<string, array<string>> $usedTraitDependencies
* @param array<string, array<RootExportedNode>> $exportedNodes
* @param array<string, array{string, bool, string}> $projectExtensionFiles
* @param array<string, string> $currentFileHashes
* @param array<string, array<string>> $externalFileDependencies
*/
public function __construct(
private array $filesToAnalyse,
private bool $fullAnalysis,
private int $lastFullAnalysisTime,
private array $meta,
private array $errors,
private array $locallyIgnoredErrors,
private array $linesToIgnore,
private array $unmatchedLineIgnores,
private array $collectedData,
private array $dependencies,
private array $usedTraitDependencies,
private array $exportedNodes,
private array $projectExtensionFiles,
private array $currentFileHashes,
private array $externalFileDependencies = [],
)
{
}
/**
* @return string[]
*/
public function getFilesToAnalyse(): array
{
return $this->filesToAnalyse;
}
public function isFullAnalysis(): bool
{
return $this->fullAnalysis;
}
public function getLastFullAnalysisTime(): int
{
return $this->lastFullAnalysisTime;
}
/**
* @return mixed[]
*/
public function getMeta(): array
{
return $this->meta;
}
/**
* @return array<string, list<Error>>
*/
public function getErrors(): array
{
return $this->errors;
}
/**
* @return array<string, 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 CollectorData
*/
public function getCollectedData(): array
{
return $this->collectedData;
}
/**
* @return array<string, array<string>>
*/
public function getDependencies(): array
{
return $this->dependencies;
}
/**
* @return array<string, array<string>>
*/
public function getUsedTraitDependencies(): array
{
return $this->usedTraitDependencies;
}
/**
* @return array<string, array<RootExportedNode>>
*/
public function getExportedNodes(): array
{
return $this->exportedNodes;
}
/**
* @return array<string, array{string, bool, string}>
*/
public function getProjectExtensionFiles(): array
{
return $this->projectExtensionFiles;
}
/**
* @return array<string, string>
*/
public function getCurrentFileHashes(): array
{
return $this->currentFileHashes;
}
/**
* Inverted external file dependencies: external file => dependent analyzed files.
*
* @return array<string, array<string>>
*/
public function getExternalFileDependencies(): array
{
return $this->externalFileDependencies;
}
}