Files
kiri-core/Annotation/IAnnotation.php
T
2020-12-15 12:24:38 +08:00

22 lines
246 B
PHP

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