11 lines
270 B
PHP
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,
|
|
) {}
|
|
}
|