Files
kiri-core/Annotation/IAnnotation.php
T
2021-07-12 17:17:36 +08:00

21 lines
222 B
PHP

<?php
namespace Annotation;
use Closure;
interface IAnnotation
{
/**
* @param mixed $class
* @param mixed $method
* @return mixed
*/
public function execute(mixed $class, mixed $method = ''): mixed;
}