20 lines
178 B
PHP
20 lines
178 B
PHP
<?php
|
|
|
|
|
|
namespace Annotation;
|
|
|
|
|
|
use Closure;
|
|
|
|
interface IAnnotation
|
|
{
|
|
|
|
/**
|
|
* @param array $handler
|
|
* @return mixed
|
|
*/
|
|
public function execute(array $handler): mixed;
|
|
|
|
|
|
}
|