diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-18 23:51:06 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-20 00:46:03 +0200 |
commit | a8f46af20f4fccac0257eba950e70d0da96c4a5a (patch) | |
tree | b3922576860114dac6747ed7fc98ab4360864b2d /lib/private/DB/Connection.php | |
parent | e7f8ab1c3b7bdbc6f34a62e5b5bbaa2f903f467b (diff) | |
download | nextcloud-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.php | 4 |
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(); |