Form: Rename property $parent to $_parent

Zend.. I love you..
This commit is contained in:
Johannes Meyer 2015-09-17 11:23:47 +02:00
parent 4f5a5c83bc
commit 83bde3aa81

View File

@ -72,7 +72,7 @@ class Form extends Zend_Form
* *
* @var Form * @var Form
*/ */
protected $parent; protected $_parent;
/** /**
* Whether the form is an API target * Whether the form is an API target
@ -261,7 +261,7 @@ class Form extends Zend_Form
*/ */
public function setParent(Form $form) public function setParent(Form $form)
{ {
$this->parent = $form; $this->_parent = $form;
return $this; return $this;
} }
@ -272,7 +272,7 @@ class Form extends Zend_Form
*/ */
public function getParent() public function getParent()
{ {
return $this->parent; return $this->_parent;
} }
/** /**