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