Skip to content

Instantly share code, notes, and snippets.

@markbalt
Last active August 29, 2015 14:04
Show Gist options
  • Save markbalt/9ad545162c78a442fdd6 to your computer and use it in GitHub Desktop.
Save markbalt/9ad545162c78a442fdd6 to your computer and use it in GitHub Desktop.
Propel OR
<?php
$crit0 = $c->getNewCriterion(TicketRelatedPeer::A_ID, $id);
$crit1 = $c->getNewCriterion(TicketRelatedPeer::B_ID, $id);
$crit0->addOr($crit1);
$c->add($crit0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment