/**
  * Left offset should point not lower of the first page.
  *
  * @return NavigateRange
  */
 protected function adjustmentLowerLeftOffset()
 {
     if ($this->left_offset >= $this->config->getCurrentPage()) {
         $this->left_offset = $this->config->getCurrentPage() - 1;
     }
     return $this;
 }