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
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|