LMongo\Query\Builder::skip PHP Méthode

skip() public méthode

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