> */ private $cached_correct_methods = []; /** @var array, 1: array}> */ private $cached_file_maps = []; public function __construct() { $this->config_changed = false; } /** * @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; } /** * @return array> */ public function getAnalyzedMethodCache() { return $this->cached_correct_methods; } /** * @param array> $correct_methods * @return void */ public function setAnalyzedMethodCache(array $correct_methods) { $this->cached_correct_methods = $correct_methods; } /** * @return array, 1: array}> */ public function getFileMapCache() { return $this->cached_file_maps; } /** * @param array< * string, * array{0: array, 1: array} * > $file_maps * @return void */ public function setFileMapCache(array $file_maps) { $this->cached_file_maps = $file_maps; } }