From fcbffa3c55093dd66af243623ceeb9e97aa2edf8 Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll Date: Wed, 15 Nov 2023 22:27:52 -0500 Subject: [PATCH] - Added realm to Security attribute --- src/Attribute/Security.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Attribute/Security.php b/src/Attribute/Security.php index f88d42e..2289d06 100644 --- a/src/Attribute/Security.php +++ b/src/Attribute/Security.php @@ -6,5 +6,6 @@ namespace Notes\Security\Attribute; class Security implements \Notes\Attribute { public function __construct( public null|bool $locked = null, + public null|string $realm = null, ) {} }