Exemple #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-volumne/high-memory operations.
	 *
	 * @param      boolean $deep Whether to also clear the references on all referrer objects.
	 */
	public function clearAllReferences($deep = false)
	{
        parent::clearAllReferences($deep);
        $this->sousResponsabiliteEtablissement = null;
        $this->manquementObligationPresence = null;
        $this->manquementObligationPresenceEnglobante = null;
        $this->manquementObligationPresenceSpecifie_NON_PRECISE = null;
        $this->justifiee = null;
        $this->justifieeEnglobante = null;
        $this->saisiesEnglobantes = null;
        $this->boolSaisiesContradictoiresManquementObligation = null;
        $this->retard = null;
        $this->retardEnglobante = null;
        $this->collectionSaisiesContradictoiresManquementObligation = null;
        $this->oldVersion = null;
	}