Files
kiri-core/Annotation/IAnnotation.php
T

21 lines
222 B
PHP
Raw Normal View History

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