This commit is contained in:
2020-12-16 10:38:03 +08:00
parent ff067cebd8
commit 9a4daaba16
4 changed files with 93 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
namespace Annotation\Route;
/**
* Class Limits
* @package Annotation\Route
*/
#[\Attribute(\Attribute::TARGET_METHOD)] class Limits
{
/**
* Limits constructor.
* @param string|array $limits
*/
public function __construct(public string|array $limits)
{
}
}