Example:
protected $_labelName = null;
Should generate
public function getLabelName()
{
$this->_labelName;
}
public function setLabelName($labelName)
{
$this->_labelName = $labelName;
return $this;
}
But it is generates
public function get_labelName()
{
return $this->_labelName;
}
public function set_labelName($_labelName)
{
$this->_labelName = $_labelName;
return $this;
}
As you could see - it looks different but i didn't found the way how to change the method name and to trim the set method param name.