Files
kiri-core/Annotation/IAnnotation.php
T
2020-12-15 14:04:02 +08:00

21 lines
198 B
PHP

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