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

12 lines
139 B
PHP
Raw Normal View History

2023-04-15 23:29:27 +08:00
<?php
2023-04-15 23:31:16 +08:00
namespace Kiri\Router\Interface;
2023-04-15 23:29:27 +08:00
interface ValidatorInterface
{
public function dispatch(object $class, string $name): bool;
}