/** * 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->aUser instanceof Persistent) { $this->aUser->clearAllReferences($deep); } $this->alreadyInClearAllReferencesDeep = false; } // if ($deep) $this->aUser = 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->aState instanceof Persistent) { $this->aState->clearAllReferences($deep); } if ($this->aCountry instanceof Persistent) { $this->aCountry->clearAllReferences($deep); } if ($this->aPrincipal instanceof Persistent) { $this->aPrincipal->clearAllReferences($deep); } if ($this->aUser instanceof Persistent) { $this->aUser->clearAllReferences($deep); } $this->alreadyInClearAllReferencesDeep = false; } // if ($deep) $this->aState = null; $this->aCountry = null; $this->aPrincipal = null; $this->aUser = 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->collUserProfiles) { foreach ($this->collUserProfiles as $o) { $o->clearAllReferences($deep); } } if ($this->collProducts) { foreach ($this->collProducts as $o) { $o->clearAllReferences($deep); } } if ($this->collPrincipalI18ns) { foreach ($this->collPrincipalI18ns as $o) { $o->clearAllReferences($deep); } } if ($this->aUser instanceof Persistent) { $this->aUser->clearAllReferences($deep); } if ($this->aState instanceof Persistent) { $this->aState->clearAllReferences($deep); } if ($this->aCountry instanceof Persistent) { $this->aCountry->clearAllReferences($deep); } $this->alreadyInClearAllReferencesDeep = false; } // if ($deep) // i18n behavior $this->currentLocale = 'en_US'; $this->currentTranslations = null; if ($this->collUserProfiles instanceof PropelCollection) { $this->collUserProfiles->clearIterator(); } $this->collUserProfiles = null; if ($this->collProducts instanceof PropelCollection) { $this->collProducts->clearIterator(); } $this->collProducts = null; if ($this->collPrincipalI18ns instanceof PropelCollection) { $this->collPrincipalI18ns->clearIterator(); } $this->collPrincipalI18ns = null; $this->aUser = null; $this->aState = null; $this->aCountry = 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->collTransactions) { foreach ($this->collTransactions as $o) { $o->clearAllReferences($deep); } } if ($this->aUser instanceof Persistent) { $this->aUser->clearAllReferences($deep); } if ($this->aStore instanceof Persistent) { $this->aStore->clearAllReferences($deep); } $this->alreadyInClearAllReferencesDeep = false; } // if ($deep) if ($this->collTransactions instanceof PropelCollection) { $this->collTransactions->clearIterator(); } $this->collTransactions = null; $this->aUser = null; $this->aStore = null; }