greaterThanEqual() public static method

Check that a value is greater than or equal to another value.
public static greaterThanEqual ( mixed $value ) : GreaterThanEqual
$value mixed The compared value.
return Webmozart\Expression\Constraint\GreaterThanEqual The created expression.
Example #1
0
 public function orGreaterThanEqual($value)
 {
     return $this->orX(Expr::greaterThanEqual($value));
 }
Example #2
0
 public function andGreaterThanEqual($value)
 {
     return $this->andX(Expr::greaterThanEqual($value));
 }