Files
kiri-router/src/Aspect/OnAspectInterface.php
T
2023-04-16 01:24:30 +08:00

18 lines
236 B
PHP

<?php
declare(strict_types=1);
namespace Kiri\Router\Aspect;
interface OnAspectInterface
{
/**
* @param OnJoinPointInterface $joinPoint
* @return mixed
*/
public function process(OnJoinPointInterface $joinPoint): mixed;
}