- Added realm to Security attribute

This commit is contained in:
Dave M. 2023-11-15 22:27:52 -05:00
parent 6a957ecd3e
commit fcbffa3c55
1 changed files with 1 additions and 0 deletions

View File

@ -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,
) {}
}