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