Files
kiri-router/src/Interface/ValidatorInterface.php
T
2023-11-09 22:08:24 +08:00

18 lines
253 B
PHP

<?php
declare(strict_types=1);
namespace Kiri\Router\Interface;
interface ValidatorInterface
{
/**
* @param mixed $data
* @param object $class
* @return bool
*/
public function dispatch(mixed $data, object $class): bool;
}