isLessThan() public static method

Returns true if value is less than $max, false otherwise.
public static isLessThan ( mixed $value, mixed $max ) : boolean
$value mixed
$max mixed
return boolean
Beispiel #1
0
 /**
  *
  */
 public function testIsLessThan()
 {
     $this->assertTrue(Inspekt::isLessThan('a', 'b'));
 }