File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 24
24
use WikibaseSolutions \CypherDSL \Types \PropertyTypes \NumeralType ;
25
25
26
26
/**
27
- * This class represents a LIMIT clause.
27
+ * This class represents a SKIP clause.
28
28
*
29
- * @see https://neo4j.com/docs/cypher-manual/current/clauses/limit /
29
+ * @see https://neo4j.com/docs/cypher-manual/current/clauses/skip /
30
30
*/
31
31
class SkipClause extends Clause
32
32
{
33
33
/**
34
- * The expression of the LIMIT statement.
34
+ * The expression of the SKIP statement.
35
35
*
36
36
* @var NumeralType|null $skip
37
37
*/
38
38
private ?NumeralType $ skip ;
39
39
40
40
/**
41
- * Sets the expression that returns the limit .
41
+ * Sets the expression that returns the skip .
42
42
*
43
- * @param NumeralType $limit The limit
43
+ * @param NumeralType $skip The amount to skip
44
44
* @return SkipClause
45
45
*/
46
- public function setSkip (NumeralType $ limit ): self
46
+ public function setSkip (NumeralType $ skip ): self
47
47
{
48
- $ this ->skip = $ limit ;
48
+ $ this ->skip = $ skip ;
49
49
50
50
return $ this ;
51
51
}
You can’t perform that action at this time.
0 commit comments