Files
kiri-core/Annotation/IAnnotation.php
T
2020-12-14 19:03:05 +08:00

21 lines
198 B
PHP

<?php
namespace Annotation;
use Closure;
interface IAnnotation
{
/**
* @param array|Closure $closure
* @return mixed
*/
public function setHandler(array|Closure $closure): mixed;
}