Completed
Push — master ( a0e404...7251f8 )
by Chris
02:39
created
src/Darya/Database/Storage.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 	/**
216 216
 	 * Execute the given storage query.
217 217
 	 * 
218
-	 * @param Query $storageQuery
218
+	 * @param StorageQuery $storageQuery
219 219
 	 * @return DatabaseStorageResult
220 220
 	 */
221 221
 	public function execute(StorageQuery $storageQuery) {
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
 	 * 
234 234
 	 * @param string       $resource
235 235
 	 * @param array|string $columns  [optional]
236
-	 * @return Builder
236
+	 * @return QueryBuilder
237 237
 	 */
238 238
 	public function query($resource, $columns = array()) {
239 239
 		$query = new StorageQuery($resource, (array) $columns);
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 	 * 
281 281
 	 * Returns false if there was no error.
282 282
 	 * 
283
-	 * @return string|bool
283
+	 * @return string|false
284 284
 	 */
285 285
 	public function error() {
286 286
 		if ($error = $this->connection->error()) {
Please login to merge, or discard this patch.