mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-18 05:04:51 +08:00
39 lines
829 B
PHP
39 lines
829 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZM\Annotation\Middleware;
|
|
|
|
use Attribute;
|
|
use Doctrine\Common\Annotations\Annotation\NamedArgumentConstructor;
|
|
use Doctrine\Common\Annotations\Annotation\Required;
|
|
use Doctrine\Common\Annotations\Annotation\Target;
|
|
use ZM\Annotation\AnnotationBase;
|
|
use ZM\Annotation\Interfaces\ErgodicAnnotation;
|
|
|
|
/**
|
|
* Class Middleware
|
|
* @Annotation
|
|
* @NamedArgumentConstructor()
|
|
* @Target("ALL")
|
|
*/
|
|
#[\Attribute(\Attribute::IS_REPEATABLE | \Attribute::TARGET_ALL)]
|
|
class Middleware extends AnnotationBase implements ErgodicAnnotation
|
|
{
|
|
/**
|
|
* @Required()
|
|
*/
|
|
public string $name;
|
|
|
|
/**
|
|
* @var string[]
|
|
*/
|
|
public array $params = [];
|
|
|
|
public function __construct($name, $params = [])
|
|
{
|
|
$this->name = $name;
|
|
$this->params = $params;
|
|
}
|
|
}
|