Files
kiri-core/System/IAspect.php
T

24 lines
252 B
PHP
Raw Normal View History

2021-03-29 03:09:55 +08:00
<?php
namespace Snowflake;
interface IAspect
{
/**
* IAspect constructor.
* @param array $handler
*/
2021-03-29 03:40:04 +08:00
public function __construct(array $handler);
2021-03-29 03:09:55 +08:00
/**
* @return mixed|void
*/
public function invoke();
}