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

12 lines
146 B
PHP
Raw Normal View History

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