Files
kiri-core/Annotation/IAnnotation.php
T

20 lines
178 B
PHP
Raw Normal View History

2020-12-14 19:03:05 +08:00
<?php
namespace Annotation;
use Closure;
interface IAnnotation
{
/**
2021-02-22 17:44:24 +08:00
* @param array $handler
2020-12-14 19:03:05 +08:00
* @return mixed
*/
2021-02-22 17:44:24 +08:00
public function execute(array $handler): mixed;
2020-12-14 19:03:05 +08:00
}