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

24 lines
289 B
PHP

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