17 lines
212 B
PHP
17 lines
212 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Kiri\Message\Aspect;
|
||
|
|
|
||
|
|
interface OnAspectInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param OnJoinPointInterface $joinPoint
|
||
|
|
* @return mixed
|
||
|
|
*/
|
||
|
|
public function process(OnJoinPointInterface $joinPoint): mixed;
|
||
|
|
|
||
|
|
|
||
|
|
}
|