private -> protected
This commit is contained in:
parent
2ddfc0726a
commit
ffdf6637e4
1 changed files with 3 additions and 4 deletions
|
@ -33,15 +33,14 @@
|
||||||
*/
|
*/
|
||||||
abstract class Doctrine_Configurable
|
abstract class Doctrine_Configurable
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var array $attributes an array of containing all attributes
|
* @var array $attributes an array of containing all attributes
|
||||||
*/
|
*/
|
||||||
private $attributes = array();
|
protected $attributes = array();
|
||||||
/**
|
/**
|
||||||
* @var $parent the parents of this component
|
* @var $parent the parents of this component
|
||||||
*/
|
*/
|
||||||
private $parent;
|
protected $parent;
|
||||||
/**
|
/**
|
||||||
* setAttribute
|
* setAttribute
|
||||||
* sets a given attribute
|
* sets a given attribute
|
||||||
|
@ -175,7 +174,7 @@ abstract class Doctrine_Configurable
|
||||||
*/
|
*/
|
||||||
public function addListener($listener, $name = null)
|
public function addListener($listener, $name = null)
|
||||||
{
|
{
|
||||||
if ( ! isset($this->attributes[Doctrine::ATTR_LISTENER]) ||
|
if ( ! isset($this->attributes[Doctrine::ATTR_LISTENER]) ||
|
||||||
! ($this->attributes[Doctrine::ATTR_LISTENER] instanceof Doctrine_EventListener_Chain)) {
|
! ($this->attributes[Doctrine::ATTR_LISTENER] instanceof Doctrine_EventListener_Chain)) {
|
||||||
|
|
||||||
$this->attributes[Doctrine::ATTR_LISTENER] = new Doctrine_EventListener_Chain();
|
$this->attributes[Doctrine::ATTR_LISTENER] = new Doctrine_EventListener_Chain();
|
||||||
|
|
Loading…
Add table
Reference in a new issue