Ejemplo n.º 1
0
 /**
  * @see Cursor::limit()
  */
 public function limit($num)
 {
     $this->log(['limit' => true, 'limitNum' => $num]);
     return parent::limit($num);
 }
Ejemplo n.º 2
0
 /**
  * {@inheritdoc}
  */
 public function skip($num)
 {
     $this->cursor->limit($num);
     return $this;
 }