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