mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 09:37:59 +01:00
42 lines
913 B
PHP
42 lines
913 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psalm\Tests\Internal\Provider;
|
|
|
|
use Psalm\Internal\Provider\FileStorageCacheProvider;
|
|
use Psalm\Storage\FileStorage;
|
|
|
|
use function strtolower;
|
|
|
|
class FileStorageInstanceCacheProvider extends FileStorageCacheProvider
|
|
{
|
|
/** @var array<lowercase-string, FileStorage> */
|
|
private array $cache = [];
|
|
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param lowercase-string $file_path
|
|
*/
|
|
protected function storeInCache(string $file_path, FileStorage $storage): void
|
|
{
|
|
$this->cache[$file_path] = $storage;
|
|
}
|
|
|
|
public function removeCacheForFile(string $file_path): void
|
|
{
|
|
unset($this->cache[strtolower($file_path)]);
|
|
}
|
|
|
|
/**
|
|
* @param lowercase-string $file_path
|
|
*/
|
|
protected function loadFromCache(string $file_path): ?FileStorage
|
|
{
|
|
return $this->cache[$file_path] ?? null;
|
|
}
|
|
}
|