Beispiel #1
0
 /**
  * Declares an association between this object and a ChildCredit object.
  *
  * @param  ChildCredit $v
  * @return $this|\ORM\CreditPayment The current object (for fluent API support)
  * @throws PropelException
  */
 public function setCredit(ChildCredit $v = null)
 {
     if ($v === null) {
         $this->setCreditId(NULL);
     } else {
         $this->setCreditId($v->getId());
     }
     $this->aCredit = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildCredit object, it will not be re-added.
     if ($v !== null) {
         $v->addPayment($this);
     }
     return $this;
 }