20 lines
248 B
PHP
20 lines
248 B
PHP
<?php
|
|
|
|
|
|
namespace Kiri\Annotation;
|
|
|
|
|
|
|
|
interface IAnnotation
|
|
{
|
|
|
|
/**
|
|
* @param mixed $class
|
|
* @param mixed $method
|
|
* @return mixed
|
|
*/
|
|
public function execute(mixed $class, mixed $method = ''): mixed;
|
|
|
|
|
|
}
|