예제 #1
0
 /**
  * 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->aPrincipal instanceof Persistent) {
             $this->aPrincipal->clearAllReferences($deep);
         }
         $this->alreadyInClearAllReferencesDeep = false;
     }
     // if ($deep)
     $this->aPrincipal = null;
 }
예제 #2
0
 /**
  * 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;
 }
예제 #3
0
 /**
  * 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->collProductAssignments) {
             foreach ($this->collProductAssignments as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->collProductSurveys) {
             foreach ($this->collProductSurveys as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->collTransactions) {
             foreach ($this->collTransactions as $o) {
                 $o->clearAllReferences($deep);
             }
         }
         if ($this->aPrincipal instanceof Persistent) {
             $this->aPrincipal->clearAllReferences($deep);
         }
         $this->alreadyInClearAllReferencesDeep = false;
     }
     // if ($deep)
     if ($this->collProductAssignments instanceof PropelCollection) {
         $this->collProductAssignments->clearIterator();
     }
     $this->collProductAssignments = null;
     if ($this->collProductSurveys instanceof PropelCollection) {
         $this->collProductSurveys->clearIterator();
     }
     $this->collProductSurveys = null;
     if ($this->collTransactions instanceof PropelCollection) {
         $this->collTransactions->clearIterator();
     }
     $this->collTransactions = null;
     $this->aPrincipal = null;
 }