Example #1
0
 /**
  * Declares an association between this object and a PassengerIllnessCategory object.
  *
  * @param      PassengerIllnessCategory $v
  * @return     Passenger The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setPassengerIllnessCategory(PassengerIllnessCategory $v = null)
 {
     if ($v === null) {
         $this->setPassengerIllnessCategoryId(NULL);
     } else {
         $this->setPassengerIllnessCategoryId($v->getId());
     }
     $this->aPassengerIllnessCategory = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the PassengerIllnessCategory object, it will not be re-added.
     if ($v !== null) {
         $v->addPassenger($this);
     }
     return $this;
 }