getFragment(Query\MsSQL\Offset::class) ) { $offset = new Query\MsSQL\Offset(); $this->push($offset); } $offset->limit = $value; return $this; } public function offset(int $value) : self { if ( null === $offset = $this->getFragment(Query\MsSQL\Offset::class) ) { $offset = new Query\MsSQL\Offset(); $this->push($offset); } $offset->offset = $value; return $this; } }