mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
6e3546d900
* return types * remove willReturn for void methods
226 lines
5.9 KiB
PHP
226 lines
5.9 KiB
PHP
<?php
|
|
namespace Psalm\Tests\Internal\Provider;
|
|
|
|
/**
|
|
* Used to determine which files reference other files, necessary for using the --diff
|
|
* option from the command line.
|
|
*/
|
|
class FakeFileReferenceCacheProvider extends \Psalm\Internal\Provider\FileReferenceCacheProvider
|
|
{
|
|
/** @var ?array */
|
|
private $cached_file_references;
|
|
|
|
/** @var ?array */
|
|
private $cached_classlike_files;
|
|
|
|
/** @var ?array */
|
|
private $cached_method_class_references;
|
|
|
|
/** @var ?array */
|
|
private $cached_nonmethod_class_references;
|
|
|
|
/** @var ?array */
|
|
private $cached_method_member_references;
|
|
|
|
/** @var ?array */
|
|
private $cached_file_member_references;
|
|
|
|
/** @var ?array */
|
|
private $cached_method_missing_member_references;
|
|
|
|
/** @var ?array */
|
|
private $cached_file_missing_member_references;
|
|
|
|
/** @var ?array */
|
|
private $cached_unknown_member_references;
|
|
|
|
/** @var ?array */
|
|
private $cached_method_param_uses;
|
|
|
|
/** @var ?array */
|
|
private $cached_issues;
|
|
|
|
/** @var array<string, array<string, int>> */
|
|
private $cached_correct_methods = [];
|
|
|
|
/**
|
|
* @var array<
|
|
* string,
|
|
* array{
|
|
* 0: array<int, array{0: int, 1: non-empty-string}>,
|
|
* 1: array<int, array{0: int, 1: non-empty-string}>,
|
|
* 2: array<int, array{0: int, 1: non-empty-string, 2: int}>
|
|
* }
|
|
* >
|
|
*/
|
|
private $cached_file_maps = [];
|
|
|
|
public function __construct()
|
|
{
|
|
$this->config = \Psalm\Config::getInstance();
|
|
}
|
|
|
|
public function getCachedFileReferences(): ?array
|
|
{
|
|
return $this->cached_file_references;
|
|
}
|
|
|
|
public function getCachedClassLikeFiles(): ?array
|
|
{
|
|
return $this->cached_classlike_files;
|
|
}
|
|
|
|
public function getCachedMethodClassReferences(): ?array
|
|
{
|
|
return $this->cached_method_class_references;
|
|
}
|
|
|
|
public function getCachedNonMethodClassReferences(): ?array
|
|
{
|
|
return $this->cached_method_class_references;
|
|
}
|
|
|
|
public function getCachedFileMemberReferences(): ?array
|
|
{
|
|
return $this->cached_file_member_references;
|
|
}
|
|
|
|
public function getCachedMethodMemberReferences(): ?array
|
|
{
|
|
return $this->cached_method_member_references;
|
|
}
|
|
|
|
public function getCachedFileMissingMemberReferences(): ?array
|
|
{
|
|
return $this->cached_file_missing_member_references;
|
|
}
|
|
|
|
public function getCachedMixedMemberNameReferences(): ?array
|
|
{
|
|
return $this->cached_unknown_member_references;
|
|
}
|
|
|
|
public function getCachedMethodMissingMemberReferences(): ?array
|
|
{
|
|
return $this->cached_method_missing_member_references;
|
|
}
|
|
|
|
public function getCachedMethodParamUses(): ?array
|
|
{
|
|
return $this->cached_method_missing_member_references;
|
|
}
|
|
|
|
public function getCachedIssues(): ?array
|
|
{
|
|
return $this->cached_issues;
|
|
}
|
|
|
|
public function setCachedFileReferences(array $file_references): void
|
|
{
|
|
$this->cached_file_references = $file_references;
|
|
}
|
|
|
|
public function setCachedClassLikeFiles(array $file_references): void
|
|
{
|
|
$this->cached_classlike_files = $file_references;
|
|
}
|
|
|
|
public function setCachedMethodClassReferences(array $method_class_references): void
|
|
{
|
|
$this->cached_method_class_references = $method_class_references;
|
|
}
|
|
|
|
public function setCachedNonMethodClassReferences(array $file_class_references): void
|
|
{
|
|
$this->cached_nonmethod_class_references = $file_class_references;
|
|
}
|
|
|
|
public function setCachedMethodMemberReferences(array $member_references): void
|
|
{
|
|
$this->cached_method_member_references = $member_references;
|
|
}
|
|
|
|
public function setCachedMethodMissingMemberReferences(array $member_references): void
|
|
{
|
|
$this->cached_method_missing_member_references = $member_references;
|
|
}
|
|
|
|
public function setCachedFileMemberReferences(array $member_references): void
|
|
{
|
|
$this->cached_file_member_references = $member_references;
|
|
}
|
|
|
|
public function setCachedFileMissingMemberReferences(array $member_references): void
|
|
{
|
|
$this->cached_file_missing_member_references = $member_references;
|
|
}
|
|
|
|
public function setCachedMixedMemberNameReferences(array $references): void
|
|
{
|
|
$this->cached_unknown_member_references = $references;
|
|
}
|
|
|
|
public function setCachedMethodParamUses(array $uses): void
|
|
{
|
|
$this->cached_method_param_uses = $uses;
|
|
}
|
|
|
|
public function setCachedIssues(array $issues): void
|
|
{
|
|
$this->cached_issues = $issues;
|
|
}
|
|
|
|
/**
|
|
* @return array<string, array<string, int>>
|
|
*/
|
|
public function getAnalyzedMethodCache(): array
|
|
{
|
|
return $this->cached_correct_methods;
|
|
}
|
|
|
|
/**
|
|
* @param array<string, array<string, int>> $analyzed_methods
|
|
*/
|
|
public function setAnalyzedMethodCache(array $analyzed_methods): void
|
|
{
|
|
$this->cached_correct_methods = $analyzed_methods;
|
|
}
|
|
|
|
/**
|
|
* @return array<
|
|
* string,
|
|
* array{
|
|
* 0: array<int, array{0: int, 1: non-empty-string}>,
|
|
* 1: array<int, array{0: int, 1: non-empty-string}>,
|
|
* 2: array<int, array{0: int, 1: non-empty-string, 2: int}>
|
|
* }
|
|
* >
|
|
*/
|
|
public function getFileMapCache(): array
|
|
{
|
|
return $this->cached_file_maps;
|
|
}
|
|
|
|
/**
|
|
* @param array<
|
|
* string,
|
|
* array{
|
|
* 0: array<int, array{0: int, 1: non-empty-string}>,
|
|
* 1: array<int, array{0: int, 1: non-empty-string}>,
|
|
* 2: array<int, array{0: int, 1: non-empty-string, 2: int}>
|
|
* }
|
|
* > $file_maps
|
|
*/
|
|
public function setFileMapCache(array $file_maps): void
|
|
{
|
|
$this->cached_file_maps = $file_maps;
|
|
}
|
|
|
|
/**
|
|
* @param array<string, array{int, int}> $mixed_counts
|
|
*/
|
|
public function setTypeCoverage(array $mixed_counts): void
|
|
{
|
|
}
|
|
}
|