/** * Resets all references to other model objects or collections of model objects. * * This method is a user-space workaround for PHP's inability to garbage collect * objects with circular references (even in PHP 5.3). This is currently necessary * when using Propel in certain daemon or large-volume/high-memory operations. * * @param boolean $deep Whether to also clear the references on all referrer objects. */ public function clearAllReferences($deep = false) { if ($deep && !$this->alreadyInClearAllReferencesDeep) { $this->alreadyInClearAllReferencesDeep = true; if ($this->collCargoconsultas) { foreach ($this->collCargoconsultas as $o) { $o->clearAllReferences($deep); } } if ($this->collConsultaanticipos) { foreach ($this->collConsultaanticipos as $o) { $o->clearAllReferences($deep); } } if ($this->collFacturas) { foreach ($this->collFacturas as $o) { $o->clearAllReferences($deep); } } if ($this->aConsultorio instanceof Persistent) { $this->aConsultorio->clearAllReferences($deep); } if ($this->aMedico instanceof Persistent) { $this->aMedico->clearAllReferences($deep); } if ($this->aPaciente instanceof Persistent) { $this->aPaciente->clearAllReferences($deep); } $this->alreadyInClearAllReferencesDeep = false; } // if ($deep) if ($this->collCargoconsultas instanceof PropelCollection) { $this->collCargoconsultas->clearIterator(); } $this->collCargoconsultas = null; if ($this->collConsultaanticipos instanceof PropelCollection) { $this->collConsultaanticipos->clearIterator(); } $this->collConsultaanticipos = null; if ($this->collFacturas instanceof PropelCollection) { $this->collFacturas->clearIterator(); } $this->collFacturas = null; $this->aConsultorio = null; $this->aMedico = null; $this->aPaciente = null; }