LMongo\Query\Builder::skip PHP Method

skip() public method

Set the "offset" value of the query.
public skip ( integer $value ) : LMongo\Query\Builder
$value integer
return LMongo\Query\Builder
    public function skip($value)
    {
        $this->offset = $value;
        return $this;
    }
Builder