1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/Internal/Provider/FileStorageInstanceCacheProvider.php
orklah db45ff1ba4
More return types (#4173)
* add native return types

* redundant phpdoc
2021-01-29 11:38:57 +01:00

49 lines
1.1 KiB
PHP

<?php
namespace Psalm\Tests\Internal\Provider;
use Psalm\Storage\FileStorage;
use function strtolower;
class FileStorageInstanceCacheProvider extends \Psalm\Internal\Provider\FileStorageCacheProvider
{
/** @var array<string, FileStorage> */
private $cache = [];
public function __construct()
{
}
/**
* @return void
*/
public function writeToCache(FileStorage $storage, string $file_contents)
{
$file_path = strtolower($storage->file_path);
$this->cache[$file_path] = $storage;
}
public function getLatestFromCache(string $file_path, string $file_contents): ?FileStorage
{
$cached_value = $this->loadFromCache(strtolower($file_path));
if (!$cached_value) {
return null;
}
return $cached_value;
}
/**
* @return void
*/
public function removeCacheForFile(string $file_path)
{
unset($this->cache[strtolower($file_path)]);
}
private function loadFromCache(string $file_path): ?FileStorage
{
return $this->cache[strtolower($file_path)] ?? null;
}
}