1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/tests/Internal/Provider/FakeFileReferenceCacheProvider.php

284 lines
6.3 KiB
PHP
Raw Normal View History

2018-09-30 05:51:06 +02:00
<?php
namespace Psalm\Tests\Internal\Provider;
2018-09-30 05:51:06 +02:00
/**
* Used to determine which files reference other files, necessary for using the --diff
* option from the command line.
*/
2018-11-06 03:57:36 +01:00
class FakeFileReferenceCacheProvider extends \Psalm\Internal\Provider\FileReferenceCacheProvider
2018-09-30 05:51:06 +02:00
{
/** @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;
2018-09-30 05:51:06 +02:00
/** @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;
2018-09-30 05:51:06 +02:00
2019-04-27 23:38:24 +02:00
/** @var ?array */
private $cached_unknown_member_references;
/** @var ?array */
private $cached_method_param_uses;
2018-09-30 05:51:06 +02:00
/** @var ?array */
private $cached_issues;
/** @var array<string, array<string, int>> */
2018-09-30 05:51:06 +02:00
private $cached_correct_methods = [];
/**
* @var array<
* string,
* array{
2020-05-15 16:18:05 +02:00
* 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}>
* }
* >
*/
2018-10-17 21:52:58 +02:00
private $cached_file_maps = [];
2018-09-30 05:51:06 +02:00
/**
* @return ?array
*/
public function getCachedFileReferences()
{
return $this->cached_file_references;
}
/**
* @return ?array
*/
public function getCachedClassLikeFiles()
{
return $this->cached_classlike_files;
}
/**
* @return ?array
*/
public function getCachedMethodClassReferences()
{
return $this->cached_method_class_references;
}
/**
* @return ?array
*/
public function getCachedNonMethodClassReferences()
{
return $this->cached_method_class_references;
}
2018-09-30 05:51:06 +02:00
/**
* @return ?array
*/
public function getCachedFileMemberReferences()
{
return $this->cached_file_member_references;
}
/**
* @return ?array
*/
public function getCachedMethodMemberReferences()
2018-09-30 05:51:06 +02:00
{
return $this->cached_method_member_references;
}
/**
* @return ?array
*/
public function getCachedFileMissingMemberReferences()
{
return $this->cached_file_missing_member_references;
}
2019-04-27 23:38:24 +02:00
/**
* @return ?array
*/
public function getCachedMixedMemberNameReferences()
{
return $this->cached_unknown_member_references;
}
/**
* @return ?array
*/
public function getCachedMethodMissingMemberReferences()
{
return $this->cached_method_missing_member_references;
2018-09-30 05:51:06 +02:00
}
/**
* @return ?array
*/
public function getCachedMethodParamUses()
{
return $this->cached_method_missing_member_references;
}
2018-09-30 05:51:06 +02:00
/**
* @return ?array
*/
public function getCachedIssues()
{
return $this->cached_issues;
}
/**
* @return void
*/
public function setCachedFileReferences(array $file_references)
{
$this->cached_file_references = $file_references;
}
/**
* @return void
*/
public function setCachedClassLikeFiles(array $file_references)
{
$this->cached_classlike_files = $file_references;
}
/**
* @return void
*/
public function setCachedMethodClassReferences(array $method_references)
{
$this->cached_method_class_references = $method_references;
}
/**
* @return void
*/
public function setCachedNonMethodClassReferences(array $method_references)
{
$this->cached_nonmethod_class_references = $method_references;
}
2018-09-30 05:51:06 +02:00
/**
* @return void
*/
public function setCachedMethodMemberReferences(array $method_references)
{
$this->cached_method_member_references = $method_references;
}
/**
* @return void
*/
public function setCachedMethodMissingMemberReferences(array $method_references)
{
$this->cached_method_missing_member_references = $method_references;
}
/**
* @return void
*/
public function setCachedFileMemberReferences(array $method_references)
{
$this->cached_file_member_references = $method_references;
}
/**
* @return void
*/
public function setCachedFileMissingMemberReferences(array $method_references)
2018-09-30 05:51:06 +02:00
{
$this->cached_file_missing_member_references = $method_references;
2018-09-30 05:51:06 +02:00
}
2019-04-27 23:38:24 +02:00
/**
* @return void
*/
public function setCachedMixedMemberNameReferences(array $references)
{
$this->cached_unknown_member_references = $references;
}
/**
* @return void
*/
public function setCachedMethodParamUses(array $uses)
{
$this->cached_method_param_uses = $uses;
}
2018-09-30 05:51:06 +02:00
/**
* @return void
*/
public function setCachedIssues(array $issues)
{
$this->cached_issues = $issues;
}
/**
* @return array<string, array<string, int>>
2018-09-30 05:51:06 +02:00
*/
2018-11-02 02:52:39 +01:00
public function getAnalyzedMethodCache()
2018-09-30 05:51:06 +02:00
{
return $this->cached_correct_methods;
}
/**
* @param array<string, array<string, int>> $correct_methods
2019-03-23 19:27:54 +01:00
*
2018-09-30 05:51:06 +02:00
* @return void
*/
2018-11-02 02:52:39 +01:00
public function setAnalyzedMethodCache(array $correct_methods)
2018-09-30 05:51:06 +02:00
{
$this->cached_correct_methods = $correct_methods;
}
2018-10-17 21:52:58 +02:00
/**
* @return array<
* string,
* array{
2020-05-15 16:18:05 +02:00
* 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}>
* }
* >
2018-10-17 21:52:58 +02:00
*/
public function getFileMapCache()
{
return $this->cached_file_maps;
}
/**
* @param array<
* string,
* array{
2020-05-15 16:18:05 +02:00
* 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
2019-03-23 19:27:54 +01:00
*
2018-10-17 21:52:58 +02:00
* @return void
*/
public function setFileMapCache(array $file_maps)
{
$this->cached_file_maps = $file_maps;
}
2018-09-30 05:51:06 +02:00
}