Files
kiri-core/Annotation/IAnnotation.php
T

21 lines
198 B
PHP
Raw Normal View History

2020-12-14 19:03:05 +08:00
<?php
namespace Annotation;
use Closure;
interface IAnnotation
{
/**
2020-12-15 12:24:38 +08:00
* @param array|Closure $handler
2020-12-14 19:03:05 +08:00
* @return mixed
*/
2020-12-15 14:04:02 +08:00
public function setHandler(array|Closure $handler): mixed;
2020-12-14 19:03:05 +08:00
}