Files
kiri-core/note/IAnnotation.php
T
2021-09-22 10:17:03 +08:00

20 lines
224 B
PHP

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