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