/** * Clears the current object, sets all attributes to their default values and removes * outgoing references as well as back-references (from other objects to this one. Results probably in a database * change of those foreign objects when you call `save` there). */ public function clear() { if (null !== $this->aGame) { $this->aGame->removeUserReview($this); } if (null !== $this->aPlatform) { $this->aPlatform->removeUserReview($this); } if (null !== $this->aUser) { $this->aUser->removeUserReview($this); } if (null !== $this->aRating) { $this->aRating->removeUserReview($this); } if (null !== $this->aRig) { $this->aRig->removeUserReview($this); } $this->id = null; $this->game_id = null; $this->platform_id = null; $this->user_id = null; $this->rig_id = null; $this->rating_id = null; $this->review = null; $this->upvotes = null; $this->downvotes = null; $this->alreadyInSave = false; $this->clearAllReferences(); $this->resetModified(); $this->setNew(true); $this->setDeleted(false); }
/** * Exclude object from result * * @param ChildRating $rating Object to remove from the list of results * * @return $this|ChildRatingQuery The current query, for fluid interface */ public function prune($rating = null) { if ($rating) { $this->addUsingAlias(RatingTableMap::COL_ID, $rating->getId(), Criteria::NOT_EQUAL); } return $this; }
/** * Filter the query by a related \Rating object * * @param \Rating|ObjectCollection $rating The related object(s) to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @throws \Propel\Runtime\Exception\PropelException * * @return ChildUserReviewQuery The current query, for fluid interface */ public function filterByRating($rating, $comparison = null) { if ($rating instanceof \Rating) { return $this->addUsingAlias(UserReviewTableMap::COL_RATING_ID, $rating->getId(), $comparison); } elseif ($rating instanceof ObjectCollection) { if (null === $comparison) { $comparison = Criteria::IN; } return $this->addUsingAlias(UserReviewTableMap::COL_RATING_ID, $rating->toKeyValue('PrimaryKey', 'Id'), $comparison); } else { throw new PropelException('filterByRating() only accepts arguments of type \\Rating or Collection'); } }