Skip to content

Commit

Permalink
Grammar should not convert skip token to integer (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
krystalcode authored Mar 19, 2024
1 parent 5987e57 commit f6b947d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Query/Grammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ protected function compileSkip(Builder $query, $skip)
*/
protected function compileSkipToken(Builder $query, $skiptoken)
{
return $this->appendQueryParam('$skiptoken=') . (int) $skiptoken;
return $this->appendQueryParam('$skiptoken=') . $skiptoken;
}

/**
Expand Down

0 comments on commit f6b947d

Please sign in to comment.