Example #1
0
 /**
  * @param $num
  * @param null $offset
  * @return $this
  */
 public function limit($num, $offset = null)
 {
     $this->query->limit($num, $offset);
     return $this;
 }