Webmozart\Expression\Expr::lessThan PHP Method

lessThan() public static method

Check that a value is less than another value.
public static lessThan ( mixed $value ) : LessThan
$value mixed The compared value.
return Webmozart\Expression\Constraint\LessThan The created expression.
    public static function lessThan($value)
    {
        return new LessThan($value);
    }

Usage Example

コード例 #1
0
ファイル: OrX.php プロジェクト: webmozart/expression
 public function orLessThan($value)
 {
     return $this->orX(Expr::lessThan($value));
 }
All Usage Examples Of Webmozart\Expression\Expr::lessThan