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
1 changed files with 3 additions and 3 deletions

View File

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