Exemple #1
0
 /**
  * Sets limit clause, more calls rewrite old values.
  * @param  int
  * @param  int
  * @return Repository provides a fluent interface
  */
 public function limit($limit, $offset = NULL)
 {
     $this->selection->limit($limit, $offset);
     return $this;
 }