1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-03 10:07:52 +01:00
psalm/tests/Internal/Provider/FakeParserCacheProvider.php
orklah 1348e61afb
add native param types (#4137)
* add native param types

* redundant phpdoc

* add more param types and adds "?" to nullable types

* remove redundant phpdoc

* add more param types and remove redundant phpdoc

* add more param types and remove redundant phpdoc
2021-01-29 11:38:54 +01:00

33 lines
768 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)
{
return null;
}
public function loadExistingStatementsFromCache(string $file_path)
{
return null;
}
public function saveStatementsToCache(string $file_path, string $file_content_hash, array $stmts, bool $touch_only)
{
}
public function loadExistingFileContentsFromCache(string $file_path)
{
return null;
}
public function cacheFileContents(string $file_path, string $file_contents)
{
}
}