From 77b0b1d52af0d74be09805a43f862f157cfd6b02 Mon Sep 17 00:00:00 2001 From: kenjis Date: Wed, 24 May 2023 08:25:12 +0900 Subject: [PATCH] chore: add new parameters To suppress the following warnings: Warning: "findUnusedBaselineEntry" will be defaulted to "true" in Psalm 6. You should explicitly enable or disable this setting. Warning: "findUnusedCode" will be defaulted to "true" in Psalm 6. You should explicitly enable or disable this setting. findUnusedBaselineEntry="false" Because enabled PHP extensions vary depending on the developer's environment, setting this to true will likely result in errors. --- psalm.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/psalm.xml b/psalm.xml index edd43a2844..4524262002 100644 --- a/psalm.xml +++ b/psalm.xml @@ -8,6 +8,8 @@ autoloader="psalm_autoload.php" cacheDirectory="build/psalm/" errorBaseline="psalm-baseline.xml" + findUnusedBaselineEntry="false" + findUnusedCode="false" >