Completed
Pull Request — master (#30582)
by Jörn Friedrich
13:04
created
lib/private/DB/QueryBuilder/ExpressionBuilder/ExpressionBuilder.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
 	 *
362 362
 	 * @param string $column
363 363
 	 * @param mixed $type One of IQueryBuilder::PARAM_*
364
-	 * @return string
364
+	 * @return QueryFunction
365 365
 	 */
366 366
 	public function castColumn($column, $type) {
367 367
 		return new QueryFunction(
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
 	/**
373 373
 	 * Returns a query function to find the number of characters in a string column
374 374
 	 * @param string $column
375
-	 * @return string
375
+	 * @return QueryFunction
376 376
 	 */
377 377
 	public function length($column) {
378 378
 		$column = $this->helper->quoteColumnName($column);
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
 	 * @param string $column
385 385
 	 * @param string $orderBy ignored
386 386
 	 * @param string $separator default is ','
387
-	 * @return string
387
+	 * @return QueryFunction
388 388
 	 *
389 389
 	 * TODO Max length for sqlite seems to be ?, @see http://gemmingforcode.blogspot.de/2011/03/groupconcat-sqlite-gem-and-devil-in.html
390 390
 	 */
Please login to merge, or discard this patch.