greaterThanEqual() 공개 정적인 메소드

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