Skip to content

Commit

Permalink
fix test cache inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
kkmuffme committed Sep 9, 2022
1 parent 51354de commit f483a8f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/Internal/Provider/FakeParserCacheProvider.php
Expand Up @@ -33,6 +33,14 @@ public function cacheFileContents(string $file_path, string $file_contents): voi
{
}

public function deleteOldParserCaches(float $time_before): int
{
$this->existing_file_content_hashes = null;
$this->new_file_content_hashes = [];

return 0;
}

public function saveFileContentHashes(): void
{
}
Expand Down

0 comments on commit f483a8f

Please sign in to comment.