mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-05 13:04:27 +02:00
Form: Rename property $parent to $_parent
Zend.. I love you..
This commit is contained in:
parent
4f5a5c83bc
commit
83bde3aa81
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user