2018-09-30 05:51:06 +02:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests\Provider;
|
|
|
|
|
|
|
|
use Psalm\Config;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used to determine which files reference other files, necessary for using the --diff
|
|
|
|
* option from the command line.
|
|
|
|
*/
|
|
|
|
class FakeFileReferenceCacheProvider extends \Psalm\Provider\FileReferenceCacheProvider
|
|
|
|
{
|
|
|
|
/** @var ?array */
|
|
|
|
private $cached_file_references;
|
|
|
|
|
|
|
|
/** @var ?array */
|
|
|
|
private $cached_method_references;
|
|
|
|
|
|
|
|
/** @var ?array */
|
|
|
|
private $cached_issues;
|
|
|
|
|
2018-10-07 04:58:21 +02:00
|
|
|
/** @var array<string, array<string, int>> */
|
2018-09-30 05:51:06 +02:00
|
|
|
private $cached_correct_methods = [];
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return ?array
|
|
|
|
*
|
|
|
|
* @psalm-suppress MixedAssignment
|
|
|
|
* @psalm-suppress MixedTypeCoercion
|
|
|
|
*/
|
|
|
|
public function getCachedFileReferences()
|
|
|
|
{
|
|
|
|
return $this->cached_file_references;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return ?array
|
|
|
|
*
|
|
|
|
* @psalm-suppress MixedAssignment
|
|
|
|
* @psalm-suppress MixedTypeCoercion
|
|
|
|
*/
|
|
|
|
public function getCachedMethodReferences()
|
|
|
|
{
|
|
|
|
return $this->cached_method_references;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return ?array
|
|
|
|
*
|
|
|
|
* @psalm-suppress MixedAssignment
|
|
|
|
* @psalm-suppress MixedTypeCoercion
|
|
|
|
*/
|
|
|
|
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 setCachedMethodReferences(array $method_references)
|
|
|
|
{
|
|
|
|
$this->cached_method_references = $method_references;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setCachedIssues(array $issues)
|
|
|
|
{
|
|
|
|
$this->cached_issues = $issues;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-10-07 04:58:21 +02:00
|
|
|
* @return array<string, array<string, int>>
|
2018-09-30 05:51:06 +02:00
|
|
|
*/
|
2018-10-07 02:11:19 +02:00
|
|
|
public function getCorrectMethodCache()
|
2018-09-30 05:51:06 +02:00
|
|
|
{
|
|
|
|
return $this->cached_correct_methods;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-10-07 04:58:21 +02:00
|
|
|
* @param array<string, array<string, int>> $correct_methods
|
2018-09-30 05:51:06 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setCorrectMethodCache(array $correct_methods)
|
|
|
|
{
|
|
|
|
$this->cached_correct_methods = $correct_methods;
|
|
|
|
}
|
|
|
|
}
|