Files
kiri-core/note/IAnnotation.php
T
as2252258@163.com c06f25fcf5 111
2021-08-29 05:53:47 +08:00

22 lines
266 B
PHP

<?php
namespace Annotation;
use Closure;
interface IAnnotation
{
/**
* @param static $params
* @param mixed $class
* @param mixed $method
* @return mixed
*/
public function execute(mixed $class, mixed $method = ''): mixed;
}