Example #1
0
 /**
  * Exclude object from result
  *
  * @param   ChildTaxRuleCountry $taxRuleCountry Object to remove from the list of results
  *
  * @return ChildTaxRuleCountryQuery The current query, for fluid interface
  */
 public function prune($taxRuleCountry = null)
 {
     if ($taxRuleCountry) {
         $this->addUsingAlias(TaxRuleCountryTableMap::ID, $taxRuleCountry->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }