Exemplo n.º 1
0
 /**
  * Exclude object from result
  *
  * @param   ChildAuthToken $authToken Object to remove from the list of results
  *
  * @return $this|ChildAuthTokenQuery The current query, for fluid interface
  */
 public function prune($authToken = null)
 {
     if ($authToken) {
         $this->addUsingAlias(AuthTokenTableMap::COL_ID, $authToken->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }