/**
  * Preform a deep clone of the object
  *
  * @retun void
  */
 public function __clone()
 {
     parent::__clone();
     $this->_object_list = clone $this->_object_list;
     $this->_priority_list = clone $this->_priority_list;
 }
Beispiel #2
0
 /**
  * Preform a deep clone of the object.
  *
  * @retun void
  */
 public function __clone()
 {
     parent::__clone();
     $this->_state = clone $this->_state;
 }
Beispiel #3
0
 /**
  * Preform a deep clone of the object
  *
  * @retun void
  */
 public function __clone()
 {
     parent::__clone();
     $this->_object_set = clone $this->_object_set;
 }