Overview

Classes

  • Horde_Constraint_AlwaysFalse
  • Horde_Constraint_AlwaysTrue
  • Horde_Constraint_And
  • Horde_Constraint_Coupler
  • Horde_Constraint_IsEqual
  • Horde_Constraint_IsInstanceOf
  • Horde_Constraint_Not
  • Horde_Constraint_Null
  • Horde_Constraint_Or
  • Horde_Constraint_PregMatch

Interfaces

  • Horde_Constraint
  • Overview
  • Class
  • Tree
 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: 
API documentation generated by ApiGen