Files
kiri-core/System/IAspect.php
T
2021-07-27 17:27:56 +08:00

18 lines
143 B
PHP

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