Completed
Push — ext-mongodb ( c0ec81 )
by Peter
03:34
created
src/Bridge/MongoCollection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
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
 	 */
Please login to merge, or discard this patch.
src/Bridge/MongoCursor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
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
 	 */
Please login to merge, or discard this patch.
src/Bridge/MongoDB.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,6 +92,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 	 *
Please login to merge, or discard this patch.