From 76ca7245db3b6197299f272cf1cfccd47a1bf281 Mon Sep 17 00:00:00 2001 From: ADmad Date: Wed, 1 Apr 2015 01:59:28 +0530 Subject: [PATCH] Fix docblock --- src/Database/Expression/QueryExpression.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Database/Expression/QueryExpression.php b/src/Database/Expression/QueryExpression.php index 53c582568a7..c858b71738c 100644 --- a/src/Database/Expression/QueryExpression.php +++ b/src/Database/Expression/QueryExpression.php @@ -436,10 +436,11 @@ public function traverse(callable $callable) } /** - * 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