aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/DB/Connection.php
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-09-18 23:51:06 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2024-09-20 00:46:03 +0200
commita8f46af20f4fccac0257eba950e70d0da96c4a5a (patch)
treeb3922576860114dac6747ed7fc98ab4360864b2d /lib/private/DB/Connection.php
parente7f8ab1c3b7bdbc6f34a62e5b5bbaa2f903f467b (diff)
downloadnextcloud-server-a8f46af20f4fccac0257eba950e70d0da96c4a5a.tar.gz
nextcloud-server-a8f46af20f4fccac0257eba950e70d0da96c4a5a.zip
chore: Add proper deprecation dates where missing
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'lib/private/DB/Connection.php')
-rw-r--r--lib/private/DB/Connection.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/DB/Connection.php b/lib/private/DB/Connection.php
index 55e61a7be14..1b61cc83319 100644
--- a/lib/private/DB/Connection.php
+++ b/lib/private/DB/Connection.php
@@ -282,7 +282,7 @@ class Connection extends PrimaryReadReplicaConnection {
* Gets the QueryBuilder for the connection.
*
* @return \Doctrine\DBAL\Query\QueryBuilder
- * @deprecated please use $this->getQueryBuilder() instead
+ * @deprecated 8.0.0 please use $this->getQueryBuilder() instead
*/
public function createQueryBuilder() {
$backtrace = $this->getCallerBacktrace();
@@ -295,7 +295,7 @@ class Connection extends PrimaryReadReplicaConnection {
* Gets the ExpressionBuilder for the connection.
*
* @return \Doctrine\DBAL\Query\Expression\ExpressionBuilder
- * @deprecated please use $this->getQueryBuilder()->expr() instead
+ * @deprecated 8.0.0 please use $this->getQueryBuilder()->expr() instead
*/
public function getExpressionBuilder() {
$backtrace = $this->getCallerBacktrace();