This commit is contained in:
as2252258@163.com
2021-03-29 03:09:55 +08:00
parent 79acf12f71
commit b0cbcb0caa
4 changed files with 160 additions and 2 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
namespace Snowflake;
interface IAspect
{
/**
* IAspect constructor.
* @param array $handler
*/
public function __construct(array $handler, bool $needRetruen);
/**
* @return mixed|void
*/
public function invoke();
}