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

21 lines
390 B
PHP
Raw Normal View History

2020-03-02 16:14:20 +08:00
<?php
declare(strict_types=1);
2020-03-02 16:14:20 +08:00
namespace ZM\Annotation;
2020-03-02 16:14:20 +08:00
use Attribute;
use Doctrine\Common\Annotations\Annotation\NamedArgumentConstructor;
2020-03-02 16:14:20 +08:00
use Doctrine\Common\Annotations\Annotation\Target;
/**
* Class Closed
* @Annotation
* @NamedArgumentConstructor()
2020-03-02 16:14:20 +08:00
* @Target("CLASS")
*/
#[Attribute(Attribute::IS_REPEATABLE | Attribute::TARGET_CLASS)]
2020-03-02 16:14:20 +08:00
class Closed extends AnnotationBase
{
}