Files
kiri-core/Annotation/IAnnotation.php
T
as2252258@163.com 8137b24865 modify
2021-05-03 03:48:52 +08:00

20 lines
211 B
PHP

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