コード例 #1
0
 /**
  * Creates an instance of binary expression node, representing the construction: subject >= value
  *
  * @param mixed $subject logical subject
  * @param mixed $value value to match the subject
  *
  * SQL example:
  * @code
  * // "id" >= 1
  * Expression::gtEq("id", 1);
  * @endcode
  *
  * @return BinaryExpression
  */
 static function gtEq($subject, $value)
 {
     return new BinaryExpression($subject, BinaryLogicalOperator::greaterOrEquals(), $value);
 }