예제 #1
0
파일: Cursor.php 프로젝트: im286er/ent
 /**
  * Wrapper method for MongoCursor::fields().
  *
  * @see \Doctrine\MongoDB\Cursor::fields()
  * @see http://php.net/manual/en/mongocursor.fields.php
  * @return self
  */
 public function fields(array $f)
 {
     $this->baseCursor->fields($f);
     return $this;
 }