isGreaterThan() public static method

Returns true if value is greater than $min, false otherwise.
public static isGreaterThan ( mixed $value, mixed $min ) : boolean
$value mixed
$min mixed
return boolean
Beispiel #1
0
 /**
  * Generated from @assert ('a', 'b') === FALSE.
  */
 public function testIsGreaterThan4()
 {
     $this->assertSame(false, Inspekt::isGreaterThan('a', 'b'));
 }