Files
kiri-router/src/Interface/InjectRouteInterface.php
T

18 lines
246 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 23:08:57 +08:00
namespace Kiri\Router\Interface;
2023-04-15 23:29:27 +08:00
interface InjectRouteInterface
{
/**
* @param object $class
* @param string $method
* @return void
*/
public function dispatch(object $class, string $method): void;
}