@@ -90,7 +90,7 @@ |
||
90 | 90 | * |
91 | 91 | * @param array $query - The fields for which to search. MongoDB's |
92 | 92 | * query language is quite extensive. |
93 | - * @param array $fields - Fields of the results to return. |
|
93 | + * @param boolean[] $fields - Fields of the results to return. |
|
94 | 94 | * |
95 | 95 | * @return array - Returns record matching the search or NULL. |
96 | 96 | */ |
@@ -137,7 +137,7 @@ |
||
137 | 137 | /** |
138 | 138 | * Sets the fields for a query |
139 | 139 | * |
140 | - * @param array $fields - Fields to return (or not return). |
|
140 | + * @param boolean[] $fields - Fields to return (or not return). |
|
141 | 141 | * |
142 | 142 | * @return MongoCursor - Returns this cursor. |
143 | 143 | */ |
@@ -92,6 +92,9 @@ discard block |
||
92 | 92 | return $this->client; |
93 | 93 | } |
94 | 94 | |
95 | + /** |
|
96 | + * @param string $collectionName |
|
97 | + */ |
|
95 | 98 | public function _getFullCollectionName($collectionName) |
96 | 99 | { |
97 | 100 | return $this->name . '.' . $collectionName; |
@@ -117,7 +120,6 @@ discard block |
||
117 | 120 | /** |
118 | 121 | * Execute a database command |
119 | 122 | * |
120 | - * @param array $command - The query to send. |
|
121 | 123 | * @param array $options - This parameter is an associative array of |
122 | 124 | * the form array("optionname" => boolean, ...). |
123 | 125 | * |