示例#1
0
 /**
  * Create a message that specifies the number of characters required
  *
  * @return string
  */
 protected function getMessage()
 {
     return Str::replace($this->message, ['{{len}}' => $this->min, '{{what}}' => $this->min === 1 ? 'character' : 'characters']);
 }
 /**
  * {@inheritdoc}
  */
 public function getMessage()
 {
     return Str::replace($this->message, ['{{len}}' => $this->min, '{{what}}' => $this->min === 1 ? 'value' : 'values']);
 }