/** * 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->collTraspasodetalless) { foreach ($this->collTraspasodetalless as $o) { $o->clearAllReferences($deep); } } if ($this->aLugarRelatedByIdlugardestinatario instanceof Persistent) { $this->aLugarRelatedByIdlugardestinatario->clearAllReferences($deep); } if ($this->aLugarRelatedByIdlugarremitente instanceof Persistent) { $this->aLugarRelatedByIdlugarremitente->clearAllReferences($deep); } if ($this->aOrdencompra instanceof Persistent) { $this->aOrdencompra->clearAllReferences($deep); } $this->alreadyInClearAllReferencesDeep = false; } // if ($deep) if ($this->collTraspasodetalless instanceof PropelCollection) { $this->collTraspasodetalless->clearIterator(); } $this->collTraspasodetalless = null; $this->aLugarRelatedByIdlugardestinatario = null; $this->aLugarRelatedByIdlugarremitente = null; $this->aOrdencompra = null; }
/** * 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->collCargoadmisions) { foreach ($this->collCargoadmisions as $o) { $o->clearAllReferences($deep); } } if ($this->collCargoconsultas) { foreach ($this->collCargoconsultas as $o) { $o->clearAllReferences($deep); } } if ($this->collCargoventas) { foreach ($this->collCargoventas as $o) { $o->clearAllReferences($deep); } } if ($this->collTraspasodetalless) { foreach ($this->collTraspasodetalless as $o) { $o->clearAllReferences($deep); } } if ($this->aLugar instanceof Persistent) { $this->aLugar->clearAllReferences($deep); } if ($this->aOrdencompradetalle instanceof Persistent) { $this->aOrdencompradetalle->clearAllReferences($deep); } $this->alreadyInClearAllReferencesDeep = false; } // if ($deep) if ($this->collCargoadmisions instanceof PropelCollection) { $this->collCargoadmisions->clearIterator(); } $this->collCargoadmisions = null; if ($this->collCargoconsultas instanceof PropelCollection) { $this->collCargoconsultas->clearIterator(); } $this->collCargoconsultas = null; if ($this->collCargoventas instanceof PropelCollection) { $this->collCargoventas->clearIterator(); } $this->collCargoventas = null; if ($this->collTraspasodetalless instanceof PropelCollection) { $this->collTraspasodetalless->clearIterator(); } $this->collTraspasodetalless = null; $this->aLugar = null; $this->aOrdencompradetalle = null; }
/** * 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->aArticulovariante instanceof Persistent) { $this->aArticulovariante->clearAllReferences($deep); } if ($this->aLugar instanceof Persistent) { $this->aLugar->clearAllReferences($deep); } $this->alreadyInClearAllReferencesDeep = false; } // if ($deep) $this->aArticulovariante = null; $this->aLugar = null; }