Files
kiri-core/Annotation/Attribute.php
T

36 lines
570 B
PHP
Raw Normal View History

2021-03-03 18:35:04 +08:00
<?php
namespace Annotation;
2021-03-05 17:11:47 +08:00
use Annotation\Route\After;
use Annotation\Route\Interceptor;
use Annotation\Route\Limits;
use Annotation\Route\Middleware as RMiddleware;
use HttpServer\Route\Node;
use ReflectionException;
use Snowflake\Exception\ComponentException;
use Snowflake\Exception\NotFindClassException;
2021-03-03 18:35:04 +08:00
use Snowflake\Snowflake;
/**
* Class Attribute
* @package Annotation
*/
abstract class Attribute implements IAnnotation
{
/**
* @param array $handler
* @return mixed
*/
public function execute(array $handler): mixed
{
return $this;
}
2021-03-05 17:11:47 +08:00
2021-03-03 18:35:04 +08:00
}