mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-04 23:35:35 +08:00
25 lines
404 B
PHP
25 lines
404 B
PHP
<?php
|
|
|
|
|
|
namespace ZM\Annotation\Http;
|
|
|
|
|
|
use Doctrine\Common\Annotations\Annotation\Required;
|
|
use Doctrine\Common\Annotations\Annotation\Target;
|
|
use ZM\Annotation\AnnotationBase;
|
|
|
|
/**
|
|
* Class MiddlewareClass
|
|
* @package ZM\Annotation\Http
|
|
* @Annotation
|
|
* @Target("CLASS")
|
|
*/
|
|
class MiddlewareClass extends AnnotationBase
|
|
{
|
|
/**
|
|
* @var string
|
|
* @Required()
|
|
*/
|
|
public $name = '';
|
|
}
|