From 1d4bd84ce45793ede3971e186097e3bf7d7253be Mon Sep 17 00:00:00 2001 From: Alfred Bez Date: Mon, 7 Sep 2020 16:53:51 +0200 Subject: [PATCH] Document cacheDirectory behaviour (#4149) --- docs/running_psalm/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/running_psalm/configuration.md b/docs/running_psalm/configuration.md index ea5fd2ccb..ba4d24314 100644 --- a/docs/running_psalm/configuration.md +++ b/docs/running_psalm/configuration.md @@ -358,7 +358,7 @@ Whether or not to show issues in files that are used by your project files, but ``` The directory used to store Psalm's cache data - if you specify one (and it does not already exist), its parent directory must already exist, otherwise Psalm will throw an error. -Defaults to `sys_get_temp_dir() . '/psalm'` when not defined. +Defaults to `$HOME/.cache/psalm` or `sys_get_temp_dir() . '/psalm'` when not defined. #### allowFileIncludes ```xml