예제 #1
0
 /**
  * Create and return the validation failure message for required input.
  *
  * @return string[]
  */
 protected function prepareRequiredValidationFailureMessage()
 {
     $notEmpty = new NotEmpty();
     $templates = $notEmpty->getOption('messageTemplates');
     return [NotEmpty::IS_EMPTY => $templates[NotEmpty::IS_EMPTY]];
 }