1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-03 20:57:36 +02:00
This commit is contained in:
Ondřej Mirtes
2016-12-03 19:29:29 +01:00
committed by David Grudl
parent 551b576271
commit 8860268791

View File

@@ -555,7 +555,7 @@ class Connection
/**
* Executes SQL query and fetch result - shortcut for query() & fetch().
* @param array|mixed one or more arguments
* @return Row
* @return Row|bool
* @throws Exception
*/
public function fetch($args)
@@ -581,7 +581,7 @@ class Connection
/**
* Executes SQL query and fetch first column - shortcut for query() & fetchSingle().
* @param array|mixed one or more arguments
* @return string
* @return string|bool
* @throws Exception
*/
public function fetchSingle($args)