Files
kiri-core/kiri-annotation/IAnnotation.php
T

20 lines
229 B
PHP
Raw Normal View History

2020-12-14 19:03:05 +08:00
<?php
2022-01-08 18:49:08 +08:00
namespace Kiri\Annotation;
2020-12-14 19:03:05 +08:00
2022-01-08 18:49:08 +08:00
interface IAnnotation
2020-12-14 19:03:05 +08:00
{
2021-08-29 04:06:49 +08:00
/**
* @param mixed $class
* @param mixed $method
* @return mixed
*/
2021-08-29 05:53:47 +08:00
public function execute(mixed $class, mixed $method = ''): mixed;
2020-12-14 19:03:05 +08:00
}