diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-07-07 17:30:26 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-07-21 15:25:47 +0200 |
commit | 516f7e8299c309ed909259c90c23cb0ce6a8e4f7 (patch) | |
tree | 03c08ccc855031fc81c2ef5e69b9510614b1707a /lib/public/idbconnection.php | |
parent | de348180ae257017a9a2af05dac72286bf262bed (diff) | |
download | nextcloud-server-516f7e8299c309ed909259c90c23cb0ce6a8e4f7.tar.gz nextcloud-server-516f7e8299c309ed909259c90c23cb0ce6a8e4f7.zip |
Add unit tests and automatic quoting
Diffstat (limited to 'lib/public/idbconnection.php')
-rw-r--r-- | lib/public/idbconnection.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/idbconnection.php b/lib/public/idbconnection.php index a4be3acd2e2..7c94611a684 100644 --- a/lib/public/idbconnection.php +++ b/lib/public/idbconnection.php @@ -43,7 +43,7 @@ interface IDBConnection { /** * Gets the ExpressionBuilder for the connection. * - * @return \OCP\DB\IExpressionBuilder + * @return \OCP\DB\QueryBuilder\IExpressionBuilder * @since 8.2.0 */ public function getExpressionBuilder(); @@ -51,7 +51,7 @@ interface IDBConnection { /** * Gets the QueryBuilder for the connection. * - * @return \OCP\DB\IQueryBuilder + * @return \OCP\DB\QueryBuilder\IQueryBuilder * @since 8.2.0 */ public function getQueryBuilder(); |