Files
kiri-router/src/Interface/ValidatorInterface.php
T
2023-04-15 23:31:16 +08:00

12 lines
139 B
PHP

<?php
namespace Kiri\Router\Interface;
interface ValidatorInterface
{
public function dispatch(object $class, string $name): bool;
}