From 5edc28784872009bac351bc2e4fabac8f110556c Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Fri, 30 Nov 2012 11:41:03 +0000 Subject: [PATCH 1/2] Fixed documentation for Doctrine\ORM\Query\AST\Node::dispatch(). --- lib/Doctrine/ORM/Query/AST/Node.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Doctrine/ORM/Query/AST/Node.php b/lib/Doctrine/ORM/Query/AST/Node.php index d50e0d043..d9a8b20f1 100644 --- a/lib/Doctrine/ORM/Query/AST/Node.php +++ b/lib/Doctrine/ORM/Query/AST/Node.php @@ -37,6 +37,8 @@ abstract class Node * Implementation is not mandatory for all nodes. * * @param $walker + * @return string + * @throws ASTException */ public function dispatch($walker) { From 26d6f5ce4e77d0170b8f8a53e168913c0eafea1a Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Fri, 30 Nov 2012 19:10:53 +0000 Subject: [PATCH 2/2] Fixed coding standard issue, as per @stof's request. --- lib/Doctrine/ORM/Query/AST/Node.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Doctrine/ORM/Query/AST/Node.php b/lib/Doctrine/ORM/Query/AST/Node.php index d9a8b20f1..25347e577 100644 --- a/lib/Doctrine/ORM/Query/AST/Node.php +++ b/lib/Doctrine/ORM/Query/AST/Node.php @@ -37,7 +37,9 @@ abstract class Node * Implementation is not mandatory for all nodes. * * @param $walker + * * @return string + * * @throws ASTException */ public function dispatch($walker)