Files
kiri-core/Annotation/IAnnotation.php
T

22 lines
246 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
* @param array $attributes
2020-12-14 19:03:05 +08:00
* @return mixed
*/
2020-12-15 12:24:38 +08:00
public function setHandler(array|Closure $handler, array $attributes): mixed;
2020-12-14 19:03:05 +08:00
}