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

24 lines
289 B
PHP
Raw Normal View History

2020-12-16 10:38:03 +08:00
<?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)
{
}
}