Exemplo n.º 1
0
 /**
  * Set a limit count and offset
  *
  * @param   int $count  Number of rows to return
  * @param   int $offset Start returning after this many rows
  *
  * @return  self
  */
 public function limit($count = null, $offset = null)
 {
     $this->query->limit($count, $offset);
     return $this;
 }