Beispiel #1
0
 /**
  * Exclude object from result
  *
  * @param   ChildGameLink $gameLink Object to remove from the list of results
  *
  * @return $this|ChildGameLinkQuery The current query, for fluid interface
  */
 public function prune($gameLink = null)
 {
     if ($gameLink) {
         $this->addUsingAlias(GameLinkTableMap::COL_ID, $gameLink->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }