This commit is contained in:
2021-02-22 17:44:24 +08:00
parent 3b09b9a308
commit 2d1f83cf09
34 changed files with 732 additions and 222 deletions
+2 -3
View File
@@ -9,12 +9,11 @@ use Closure;
interface IAnnotation
{
/**
* @param array|Closure $handler
* @param array $handler
* @return mixed
*/
public function setHandler(array|Closure $handler): mixed;
public function execute(array $handler): mixed;
}