Is it possible to use OR statement in Doctrine findBy() method? I know that given array is interpreted as case1 AND case2... Like this
OR
findBy()
case1 AND case2...
You can write:
$this->repos['notif']->findBy(array('status' => array(1, 2, 3)));
and that should work too.