Files
kiri-core/Annotation/IAnnotation.php
T

20 lines
211 B
PHP
Raw Normal View History

2020-12-14 19:03:05 +08:00
<?php
namespace Annotation;
use Closure;
interface IAnnotation
{
2021-05-03 03:48:52 +08:00
/**
* @param array $handler
* @return mixed
*/
public function execute(mixed $class, mixed $method = ''): mixed;
2020-12-14 19:03:05 +08:00
}