Files
kiri-core/kiri-note/IAnnotation.php
T
2021-09-24 17:22:02 +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;
}