Files
kiri-core/Annotation/IAnnotation.php
T
2021-02-22 17:44:24 +08:00

20 lines
178 B
PHP

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