phprs\ezsql\rules\basic\LimitRule::limit PHP Method

limit() public method

limit(1) => "LIMIT 1"
public limit ( integer $size ) : ExecRule
$size integer
return ExecRule
    public function limit($size)
    {
        LimitImpl::limit($this->context, $size);
        return new ExecRule($this->context);
    }
LimitRule