Files
kiri-core/core/IAspect.php
T

19 lines
201 B
PHP
Raw Normal View History

2021-03-29 03:09:55 +08:00
<?php
2021-08-11 01:04:57 +08:00
namespace Kiri;
2021-03-29 03:09:55 +08:00
interface IAspect
{
2021-08-02 18:12:32 +08:00
/**
* @param mixed $handler
* @param array $params
* @return mixed
*/
public function invoke(mixed $handler, array $params = []): mixed;
2021-03-29 03:09:55 +08:00
}