1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00

Bust caches when config changes

This commit is contained in:
Brown 2018-11-01 16:02:44 -04:00
parent 0ba8a51cbe
commit bd3250f52b
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class ClassLikeStorageCacheProvider
$this->modified_timestamps .= ' ' . filemtime($dependent_file_path);
}
$this->modified_timestamps .= PSALM_VERSION;
$this->modified_timestamps .= PSALM_VERSION . $this->config->modified_time;
}
/**

View File

@ -44,7 +44,7 @@ class FileStorageCacheProvider
$this->modified_timestamps .= ' ' . filemtime($dependent_file_path);
}
$this->modified_timestamps .= PSALM_VERSION;
$this->modified_timestamps .= PSALM_VERSION . $this->config->modified_time;
}
/**