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