Files
kiri-core/note/IAnnotation.php
T

22 lines
288 B
PHP
Raw Normal View History

2020-12-14 19:03:05 +08:00
<?php
namespace Annotation;
use Closure;
interface IAnnotation
{
2021-08-29 04:06:49 +08:00
/**
* @param static $params
* @param mixed $class
* @param mixed $method
* @return mixed
*/
public static function execute(mixed $params, mixed $class, mixed $method = ''): mixed;
2020-12-14 19:03:05 +08:00
}