예제 #1
0
 /**
  * Exclude object from result
  *
  * @param   ChildDeliveryPeriodic $deliveryPeriodic Object to remove from the list of results
  *
  * @return $this|ChildDeliveryPeriodicQuery The current query, for fluid interface
  */
 public function prune($deliveryPeriodic = null)
 {
     if ($deliveryPeriodic) {
         $this->addUsingAlias(DeliveryPeriodicTableMap::COL_DELIVERY_PERIODIC_ID, $deliveryPeriodic->getDeliveryPeriodicId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }