From c796c2da0841a97dac3b7a1f8a5d6fe3f866b6ca Mon Sep 17 00:00:00 2001 From: Matt Brown Date: Fri, 30 Oct 2020 22:02:00 -0400 Subject: [PATCH] Make sure BaseAttribute is immutable --- src/BaseAttribute.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/BaseAttribute.php b/src/BaseAttribute.php index 6b7d9d5..0bee9fe 100644 --- a/src/BaseAttribute.php +++ b/src/BaseAttribute.php @@ -4,5 +4,6 @@ /** * Exists just in case someone wants to grab all Psalm attributes during reflection */ +#[Immutable] abstract class BaseAttribute {}