@@ 112-118 (lines=7) @@ | ||
109 | * @param array $options Options for the find command |
|
110 | * @return MongoGridFSCursor A MongoGridFSCursor |
|
111 | */ |
|
112 | public function find(array $query = [], array $fields = []) |
|
113 | { |
|
114 | $cursor = new MongoGridFSCursor($this, $this->db->getConnection(), (string) $this, $query, $fields); |
|
115 | $cursor->setReadPreference($this->getReadPreference()); |
|
116 | ||
117 | return $cursor; |
|
118 | } |
|
119 | ||
120 | /** |
|
121 | * Returns a single file matching the criteria |
@@ 439-445 (lines=7) @@ | ||
436 | * @param array $fields Fields of the results to return. |
|
437 | * @return MongoCursor |
|
438 | */ |
|
439 | public function find(array $query = [], array $fields = []) |
|
440 | { |
|
441 | $cursor = new MongoCursor($this->db->getConnection(), (string) $this, $query, $fields); |
|
442 | $cursor->setReadPreference($this->getReadPreference()); |
|
443 | ||
444 | return $cursor; |
|
445 | } |
|
446 | ||
447 | /** |
|
448 | * Retrieve a list of distinct values for the given key across a collection |