/**
  * {@inheritdoc}
  */
 public function valueValidate($form, FormStateInterface $form_state)
 {
     // We only validate if they've chosen the text field style.
     if ($this->options['type'] != 'textfield') {
         return;
     }
     parent::valueValidate($form, $form_state);
 }