1: <?php 2: /** 3: * Interface for constraints. 4: * 5: * @author James Pepin <james@jamespepin.com> 6: */ 7: interface Horde_Constraint 8: { 9: public function evaluate($value); 10: } 11: