1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-12 01:09:38 +01:00

put int instead of float

This commit is contained in:
orklah 2021-09-25 17:32:04 +02:00
parent 146d02e3e1
commit bff08670f5

View File

@ -63,7 +63,7 @@ class FakeFileProvider extends FileProvider
public function registerFile(string $file_path, string $file_contents): void
{
$this->fake_files[$file_path] = $file_contents;
$this->fake_file_times[$file_path] = microtime(true);
$this->fake_file_times[$file_path] = (int)microtime(true);
}
/**