Files
kiri-router/src/Aspect/OnAspectInterface.php
T

17 lines
212 B
PHP
Raw Normal View History

2023-04-15 23:29:27 +08:00
<?php
namespace Kiri\Message\Aspect;
interface OnAspectInterface
{
/**
* @param OnJoinPointInterface $joinPoint
* @return mixed
*/
public function process(OnJoinPointInterface $joinPoint): mixed;
}