Files
kiri-core/System/IAspect.php
T
as2252258@163.com ea82576265 modify
2021-03-29 03:40:04 +08:00

24 lines
252 B
PHP

<?php
namespace Snowflake;
interface IAspect
{
/**
* IAspect constructor.
* @param array $handler
*/
public function __construct(array $handler);
/**
* @return mixed|void
*/
public function invoke();
}