Files
kiri-core/System/IAspect.php
T

18 lines
143 B
PHP
Raw Normal View History

2021-03-29 03:09:55 +08:00
<?php
namespace Snowflake;
interface IAspect
{
/**
* @return mixed|void
*/
2021-07-27 17:27:56 +08:00
public function invoke(mixed $handler);
2021-03-29 03:09:55 +08:00
}