Exemplo n.º 1
0
 /**
  * Set the value of the input.
  *
  * Overridden to disable for `<input/>` elements, which have value identical to the label.
  *
  * @param string $value New value
  * @chainable
  */
 public function setValue($value)
 {
     if (!$this->useInputTag) {
         parent::setValue($value);
     }
     return $this;
 }