AdamWathan\Form\Elements\Element::clear PHP Method

clear() public method

public clear ( $attribute )
    public function clear($attribute)
    {
        if (!isset($this->attributes[$attribute])) {
            return $this;
        }
        $this->removeAttribute($attribute);
        return $this;
    }