From 8d7ba1aebb7930e724dbc2e057371a9b9101ab17 Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Tue, 17 Mar 2015 15:53:09 +0100 Subject: [PATCH] Fixed AbstractQuery::getParameter() documented return type --- lib/Doctrine/ORM/AbstractQuery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/AbstractQuery.php b/lib/Doctrine/ORM/AbstractQuery.php index f51924ca1..e1667add2 100644 --- a/lib/Doctrine/ORM/AbstractQuery.php +++ b/lib/Doctrine/ORM/AbstractQuery.php @@ -320,7 +320,7 @@ abstract class AbstractQuery * * @param mixed $key The key (index or name) of the bound parameter. * - * @return mixed The value of the bound parameter. + * @return Query\Parameter|null The value of the bound parameter, or NULL if not available. */ public function getParameter($key) {