コード例 #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;
 }