Exemplo n.º 1
0
	/**
	 * Returns a peer instance associated with this om.
	 *
	 * Since Peer classes are not to have any instance attributes, this method returns the
	 * same instance for all member of this class. The method could therefore
	 * be static, but this would prevent one from overriding the behavior.
	 *
	 * @return     AbsenceEleveSaisiePeer
	 */
	public function getPeer()
	{
		if (self::$peer === null) {
			self::$peer = new AbsenceEleveSaisiePeer();
		}
		return self::$peer;
	}
Exemplo n.º 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-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;
	}