Example #1
0
 /**
  * Set Query limit
  *
  * @param int $offset
  * @param int $size
  * @return void
  */
 public function setLimit($offset, $size)
 {
     $this->collection->setPageSize($size);
     $this->collection->setCurPage($offset);
 }