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