This commit is contained in:
as2252258@163.com
2021-08-29 04:06:49 +08:00
parent 9da50baed0
commit 133ca2c273
21 changed files with 356 additions and 495 deletions
+7 -6
View File
@@ -9,12 +9,13 @@ use Closure;
interface IAnnotation
{
/**
* @param mixed $class
* @param mixed $method
* @return mixed
*/
public function execute(mixed $class, mixed $method = ''): mixed;
/**
* @param static $params
* @param mixed $class
* @param mixed $method
* @return mixed
*/
public static function execute(mixed $params, mixed $class, mixed $method = ''): mixed;
}