12 lines
146 B
PHP
12 lines
146 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Kiri\Router\Validator\Inject;
|
||
|
|
|
||
|
|
interface ValidatorInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
public function dispatch(object $class, string $name): bool;
|
||
|
|
|
||
|
|
}
|