How to remove 'requied' validator from Zend_Form

We can use setRequired() function for that.It's useful when you have to use element in different and one need required field and another is not mandatory
  Ex:
    $element = Zend_Form_Element_Text('phoneNumber');
    $element->setRequired(false);