Exemplo n.º 1
0
 /**
  * Cloner.
  * Ensures sub objects are also cloned.
  *
  */
 public function __clone()
 {
     parent::__clone();
     $this->hasOneRelationships = clone $this->hasOneRelationships;
     $this->hasManyRelationships = clone $this->hasManyRelationships;
 }