Skip to content

Commit f6b947d

Browse files
authored
Grammar should not convert skip token to integer (#152)
1 parent 5987e57 commit f6b947d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Query/Grammar.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ protected function compileSkip(Builder $query, $skip)
432432
*/
433433
protected function compileSkipToken(Builder $query, $skiptoken)
434434
{
435-
return $this->appendQueryParam('$skiptoken=') . (int) $skiptoken;
435+
return $this->appendQueryParam('$skiptoken=') . $skiptoken;
436436
}
437437

438438
/**

0 commit comments

Comments
 (0)