1
0
mirror of synced 2025-03-21 07:23:55 +03:00

Merge pull request #1335 from BenMorel/queryreturntype

Fix AbstractQuery::getParameter() documented return type
This commit is contained in:
Marco Pivetta 2015-03-17 14:58:21 +00:00
commit 2fb11cdf05

View File

@ -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)
{