22 lines
246 B
PHP
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;
|
|
|
|
|
|
}
|