Skip to content

Commit f1e734b

Browse files
committed
fixed semantic variable naming issues
1 parent 342cb91 commit f1e734b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Query.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -397,10 +397,10 @@ public function limit(NumeralType $limit): self
397397
*/
398398
public function skip(NumeralType $limit): self
399399
{
400-
$limitClause = new SkipClause();
401-
$limitClause->setSkip($limit);
400+
$skipClause = new SkipClause();
401+
$skipClause->setSkip($limit);
402402

403-
$this->clauses[] = $limitClause;
403+
$this->clauses[] = $skipClause;
404404

405405
return $this;
406406
}

0 commit comments

Comments
 (0)