예제 #1
0
파일: Validator.php 프로젝트: sndsgd/form
 public function addError(string $fieldName, string $message) : Validator
 {
     $type = $this->options->getFieldType();
     $this->errors[] = new ValidationError($type, $fieldName, $message);
     return $this;
 }