From 0f899acd06bbc89713ff45ea3735887618bb388c Mon Sep 17 00:00:00 2001 From: AndrolGenhald Date: Sat, 11 Dec 2021 10:33:30 -0600 Subject: [PATCH] Suppress PossiblyUnusedProperty, will be used in the future. --- src/Psalm/Storage/ClassConstantStorage.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Psalm/Storage/ClassConstantStorage.php b/src/Psalm/Storage/ClassConstantStorage.php index 8e5f38c2189..34f6db27acb 100644 --- a/src/Psalm/Storage/ClassConstantStorage.php +++ b/src/Psalm/Storage/ClassConstantStorage.php @@ -6,6 +6,9 @@ use Psalm\Internal\Scanner\UnresolvedConstantComponent; use Psalm\Type; +/** + * @psalm-suppress PossiblyUnusedProperty + */ class ClassConstantStorage { use CustomMetadataTrait;