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