This commit is contained in:
xl
2023-11-09 22:08:24 +08:00
parent 1112341e3f
commit 0db2958351
18 changed files with 121 additions and 297 deletions
+2 -2
View File
@@ -8,10 +8,10 @@ interface ValidatorInterface
/**
* @param mixed $data
* @param object $class
* @param string $name
* @return bool
*/
public function dispatch(object $class, string $name): bool;
public function dispatch(mixed $data, object $class): bool;
}