Files
kiri-router/src/Annotate/Interceptor.php
T
2023-12-18 22:23:17 +08:00

29 lines
475 B
PHP

<?php
declare(strict_types=1);
namespace Kiri\Router\Annotate;
use Kiri\Di\Interface\InjectMethodInterface;
#[\Attribute(\Attribute::TARGET_METHOD)]
class Interceptor implements InjectMethodInterface
{
public function __construct()
{
}
/**
* @param string $class
* @param string $method
* @return void
*/
public function dispatch(string $class, string $method): void
{
// TODO: Implement dispatch() method.
}
}