示例#1
0
 /**
  * @param int|null $offset
  * @param int|null $count
  */
 private function _setPage($offset = null, $count = null)
 {
     if (null !== $offset && null !== $count) {
         $this->_paging->setPage(ceil($offset / $count) + 1, $count);
     }
 }