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