Files
kiri-router/src/Annotate/Interceptor.php
T

30 lines
516 B
PHP
Raw Normal View History

2023-04-15 23:29:27 +08:00
<?php
2023-04-16 01:24:30 +08:00
declare(strict_types=1);
2023-04-15 23:29:27 +08:00
2023-04-16 20:36:47 +08:00
namespace Kiri\Router\Annotate;
2023-04-15 23:29:27 +08:00
2023-12-18 21:55:44 +08:00
use Kiri\Router\Interface\InjectRouteInterface;
use ReflectionClass;
2023-04-15 23:29:27 +08:00
#[\Attribute(\Attribute::TARGET_METHOD)]
2023-12-18 21:55:44 +08:00
class Interceptor implements InjectRouteInterface
2023-04-15 23:29:27 +08:00
{
2023-12-18 21:55:44 +08:00
public function __construct()
{
}
/**
* @param ReflectionClass $class
* @param string $method
* @return void
*/
public function dispatch(ReflectionClass $class, string $method): void
{
// TODO: Implement dispatch() method.
}
2023-04-15 23:29:27 +08:00
}