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