LMongo\Query\Builder::skip PHP 메소드

skip() 공개 메소드

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