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