Example #1
0
 /**
  * Returns sql condition for greater than
  * @param Selectable $leftHandSide The left hand side of equality check
  * @param Selectable $rightHandSide The right hand side of equality check
  * @return Condition
  */
 function GT(Selectable $leftHandSide, Selectable $rightHandSide)
 {
     return parent::CreateConditionGT($leftHandSide, $rightHandSide);
 }