mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-17 20:54:52 +08:00
19 lines
274 B
PHP
19 lines
274 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace ZM\Annotation\Http;
|
||
|
|
|
||
|
|
|
||
|
|
use Doctrine\Common\Annotations\Annotation\Target;
|
||
|
|
use ZM\Annotation\AnnotationBase;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class MiddlewareClass
|
||
|
|
* @package ZM\Annotation\Http
|
||
|
|
* @Annotation
|
||
|
|
* @Target("CLASS")
|
||
|
|
*/
|
||
|
|
class MiddlewareClass extends AnnotationBase
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|