Files
kiri-core/Annotation/Route/Limits.php
T

45 lines
669 B
PHP
Raw Normal View History

2020-12-16 10:38:03 +08:00
<?php
namespace Annotation\Route;
2021-02-22 17:44:24 +08:00
use Annotation\IAnnotation;
use ReflectionException;
use Snowflake\Exception\NotFindClassException;
2020-12-16 15:20:51 +08:00
use Snowflake\Snowflake;
2020-12-16 10:38:03 +08:00
/**
* Class Limits
* @package Annotation\Route
*/
2021-02-22 17:44:24 +08:00
#[\Attribute(\Attribute::TARGET_METHOD)] class Limits implements IAnnotation
2020-12-16 10:38:03 +08:00
{
/**
* Limits constructor.
* @param string|array $limits
2020-12-16 15:20:51 +08:00
* @throws
2020-12-16 10:38:03 +08:00
*/
public function __construct(public string|array $limits)
{
2021-02-22 17:44:24 +08:00
if (!is_string($this->limits)) {
return;
2020-12-16 15:20:51 +08:00
}
2021-02-22 17:44:24 +08:00
$this->limits = [$this->limits];
}
/**
* @param array $handler
* @return array|string
*/
public function execute(array $handler): array|string
{
2021-02-23 14:16:08 +08:00
return $this;
2020-12-16 10:38:03 +08:00
}
}