| @@ 115-121 (lines=7) @@ | ||
| 112 | * @param array $options Options for the find command |
|
| 113 | * @return MongoGridFSCursor A MongoGridFSCursor |
|
| 114 | */ |
|
| 115 | public function find(array $query = [], array $fields = []) |
|
| 116 | { |
|
| 117 | $cursor = new MongoGridFSCursor($this, $this->db->getConnection(), (string) $this, $query, $fields); |
|
| 118 | $cursor->setReadPreference($this->getReadPreference()); |
|
| 119 | ||
| 120 | return $cursor; |
|
| 121 | } |
|
| 122 | ||
| 123 | /** |
|
| 124 | * Returns a single file matching the criteria |
|
| @@ 491-497 (lines=7) @@ | ||
| 488 | * @param array $fields Fields of the results to return. |
|
| 489 | * @return MongoCursor |
|
| 490 | */ |
|
| 491 | public function find(array $query = [], array $fields = []) |
|
| 492 | { |
|
| 493 | $cursor = new MongoCursor($this->db->getConnection(), (string) $this, $query, $fields); |
|
| 494 | $cursor->setReadPreference($this->getReadPreference()); |
|
| 495 | ||
| 496 | return $cursor; |
|
| 497 | } |
|
| 498 | ||
| 499 | /** |
|
| 500 | * Retrieve a list of distinct values for the given key across a collection |
|