Files
kiri-core/Annotation/Route/Interceptor.php
T
2020-12-16 10:38:03 +08:00

24 lines
307 B
PHP

<?php
namespace Annotation\Route;
/**
* Class Interceptor
* @package Annotation\Route
*/
#[\Attribute(\Attribute::TARGET_METHOD)] class Interceptor
{
/**
* Interceptor constructor.
* @param string|array $interceptor
*/
public function __construct(public string|array $interceptor)
{
}
}