This commit is contained in:
2024-12-03 12:13:18 +03:00
parent c0bedcb5ee
commit aff394ae72
6 changed files with 49 additions and 5 deletions

View File

@ -59,6 +59,16 @@ class FormModel
return false;
}
public function validateForUpdate(): bool
{
$res = $this->validator->validate($this->data, $this->rulesForUpdate());
if (!$res) {
return true;
}
return false;
}
public function getErrors(): array
{
return $this->validator->getProcessedErrors();