diff options
author | Joas Schilling <coding@schilljs.com> | 2024-07-01 17:35:26 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-07-19 11:21:15 +0200 |
commit | e45465781f1d9d6d64501dee46c8f4b4704e5918 (patch) | |
tree | 586ea8802798ca96d1d5de9125e6bd09e7469f37 /lib/public | |
parent | 829f2b9bc7290c0b1b1a9db373ee26199c9bcc4d (diff) | |
download | nextcloud-server-e45465781f1d9d6d64501dee46c8f4b4704e5918.tar.gz nextcloud-server-e45465781f1d9d6d64501dee46c8f4b4704e5918.zip |
fix(db): Deprecate `getState()` as per upstream
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/DB/QueryBuilder/IQueryBuilder.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/public/DB/QueryBuilder/IQueryBuilder.php b/lib/public/DB/QueryBuilder/IQueryBuilder.php index e4678221963..25f4111b759 100644 --- a/lib/public/DB/QueryBuilder/IQueryBuilder.php +++ b/lib/public/DB/QueryBuilder/IQueryBuilder.php @@ -134,6 +134,8 @@ interface IQueryBuilder { * * @return integer Either QueryBuilder::STATE_DIRTY or QueryBuilder::STATE_CLEAN. * @since 8.2.0 + * @deprecated 30.0.0 This function is going to be removed with the next Doctrine/DBAL update + * and we can not fix this in our wrapper. */ public function getState(); |