Files
zhamao-framework/src/ZM/Annotation/Closed.php

21 lines
389 B
PHP

<?php
declare(strict_types=1);
namespace ZM\Annotation;
use Attribute;
use Doctrine\Common\Annotations\Annotation\NamedArgumentConstructor;
use Doctrine\Common\Annotations\Annotation\Target;
/**
* Class Closed
* @Annotation
* @NamedArgumentConstructor()
* @Target("ALL")
*/
#[\Attribute(\Attribute::IS_REPEATABLE | \Attribute::TARGET_ALL)]
class Closed extends AnnotationBase
{
}