This repository has been archived on 2025-02-21. You can view files and clone it, but cannot push or open issues or pull requests.

11 lines
270 B
PHP

<?php
namespace Notes\Security\Attribute;
#[\Attribute(\Attribute::IS_REPEATABLE | \Attribute::TARGET_METHOD | \Attribute::TARGET_CLASS)]
class Security implements \Notes\Attribute {
public function __construct(
public null|bool $locked = null,
) {}
}