mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
37 lines
868 B
PHP
37 lines
868 B
PHP
<?php
|
|
namespace Psalm\Tests\Internal\Provider;
|
|
|
|
class FakeParserCacheProvider extends \Psalm\Internal\Provider\ParserCacheProvider
|
|
{
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
public function loadStatementsFromCache(string $file_path, int $file_modified_time, string $file_content_hash): ?array
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public function loadExistingStatementsFromCache(string $file_path): ?array
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public function saveStatementsToCache(string $file_path, string $file_content_hash, array $stmts, bool $touch_only): void
|
|
{
|
|
}
|
|
|
|
public function loadExistingFileContentsFromCache(string $file_path): ?string
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public function cacheFileContents(string $file_path, string $file_contents): void
|
|
{
|
|
}
|
|
|
|
public function saveFileContentHashes(): void
|
|
{
|
|
}
|
|
}
|