Files
zhamao-framework/src/ZM/Annotation/Http/HandleAfter.php

22 lines
441 B
PHP
Raw Normal View History

2020-03-25 18:35:16 +08:00
<?php
declare(strict_types=1);
2020-03-25 18:35:16 +08:00
namespace ZM\Annotation\Http;
use Attribute;
use Doctrine\Common\Annotations\Annotation\NamedArgumentConstructor;
2020-03-25 18:35:16 +08:00
use Doctrine\Common\Annotations\Annotation\Target;
use ZM\Annotation\AnnotationBase;
/**
* Class HandleAfter
2020-03-25 18:35:16 +08:00
* @Annotation
* @NamedArgumentConstructor()
2020-03-25 18:35:16 +08:00
* @Target("METHOD")
*/
#[Attribute(Attribute::IS_REPEATABLE | Attribute::TARGET_METHOD)]
class HandleAfter extends AnnotationBase
2020-03-25 18:35:16 +08:00
{
}