Пример #1
0
 /**
  * Declares an association between this object and a ChildCustomerFamily object.
  *
  * @param                  ChildCustomerFamily $v
  * @return                 \CustomerFamily\Model\CustomerFamilyI18n The current object (for fluent API support)
  * @throws PropelException
  */
 public function setCustomerFamily(ChildCustomerFamily $v = null)
 {
     if ($v === null) {
         $this->setId(NULL);
     } else {
         $this->setId($v->getId());
     }
     $this->aCustomerFamily = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildCustomerFamily object, it will not be re-added.
     if ($v !== null) {
         $v->addCustomerFamilyI18n($this);
     }
     return $this;
 }