Skip to content

Commit be4b7c2

Browse files
committed
corrected skip documentation
1 parent 92dd7c8 commit be4b7c2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Clauses/SkipClause.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,28 +24,28 @@
2424
use WikibaseSolutions\CypherDSL\Types\PropertyTypes\NumeralType;
2525

2626
/**
27-
* This class represents a LIMIT clause.
27+
* This class represents a SKIP clause.
2828
*
29-
* @see https://neo4j.com/docs/cypher-manual/current/clauses/limit/
29+
* @see https://neo4j.com/docs/cypher-manual/current/clauses/skip/
3030
*/
3131
class SkipClause extends Clause
3232
{
3333
/**
34-
* The expression of the LIMIT statement.
34+
* The expression of the SKIP statement.
3535
*
3636
* @var NumeralType|null $skip
3737
*/
3838
private ?NumeralType $skip;
3939

4040
/**
41-
* Sets the expression that returns the limit.
41+
* Sets the expression that returns the skip.
4242
*
43-
* @param NumeralType $limit The limit
43+
* @param NumeralType $skip The amount to skip
4444
* @return SkipClause
4545
*/
46-
public function setSkip(NumeralType $limit): self
46+
public function setSkip(NumeralType $skip): self
4747
{
48-
$this->skip = $limit;
48+
$this->skip = $skip;
4949

5050
return $this;
5151
}

0 commit comments

Comments
 (0)