setOffset() public method

Sets the start offset of the result set to $offset. Returns $this to allow for chaining (fluid interface)
public setOffset ( integer $offset ) : Neos\Flow\Persistence\QueryInterface
$offset integer
return Neos\Flow\Persistence\QueryInterface
 /**
  * @test
  * @expectedException \InvalidArgumentException
  */
 public function setOffsetRejectsIntegersLessThanZero()
 {
     $this->query->setOffset(-1);
 }