This commit is contained in:
2020-12-14 19:03:05 +08:00
parent e284c5d324
commit 4549364baf
9 changed files with 389 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace Annotation;
use Closure;
interface IAnnotation
{
/**
* @param array|Closure $closure
* @return mixed
*/
public function setHandler(array|Closure $closure): mixed;
}