Ejemplo n.º 1
0
 /**
  * Exclude object from result
  *
  * @param     BlogTask $blogTask Object to remove from the list of results
  *
  * @return    BlogTaskQuery The current query, for fluid interface
  */
 public function prune($blogTask = null)
 {
     if ($blogTask) {
         $this->addUsingAlias(BlogTaskPeer::TASK_ID, $blogTask->getTaskId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }