Mongolid\Cursor\Cursor::skip PHP Method

skip() public method

Skips a number of results.
public skip ( integer $amount ) : Cursor
$amount integer The number of results to skip.
return Cursor Returns this cursor.
    public function skip(int $amount)
    {
        $this->params[1]['skip'] = $amount;
        return $this;
    }