I have a Zend view template with the following line of code:
$this->headTitle()->setSeparator(' - ')
My question is, where is the setSeparator() method declared?
I understand that headTitle is a View Helper but when I look in the Zend_View_Helper_HeadTitle class I see no setSeparator method, nor any setter. Presumably the method (or an appropriate setter) is declared in the class' ancestors however I can't seem to find exactly where...
Thanks!