1: <?php 2: /** 3: * Always returns false 4: * 5: * @author James Pepin <james@jamespepin.com> 6: */ 7: class Horde_Constraint_AlwaysFalse implements Horde_Constraint 8: { 9: public function evaluate($value) 10: { 11: return false; 12: } 13: } 14: