Browse Source

Merge pull request #6234 from ADmad/docblock

Fix docblock
Bryan Crowe 11 years ago
parent
commit
6662faefca
1 changed files with 5 additions and 4 deletions
  1. 5 4
      src/Database/Expression/QueryExpression.php

+ 5 - 4
src/Database/Expression/QueryExpression.php

@@ -436,10 +436,11 @@ class QueryExpression implements ExpressionInterface, Countable
     }
 
     /**
-     * Executes a callable function for each of the parts that form this expression
-     * Callable function is required to return a value, which will the one with
-     * which the currently visited part will be replaced. If the callable function
-     * returns null then the part will be discarded completely from this expression
+     * Executes a callable function for each of the parts that form this expression.
+     *
+     * The callable function is required to return a value with which the currently
+     * visited part will be replaced. If the callable function returns null then
+     * the part will be discarded completely from this expression.
      *
      * The callback function will receive each of the conditions as first param and
      * the key as second param. It is possible to declare the second parameter as