From 18acea6bff82f69de459a8aaf9c657dff6caea4a Mon Sep 17 00:00:00 2001 From: ADmad Date: Thu, 21 Jul 2022 19:06:55 +0530 Subject: [PATCH] Deprecate unused properties. --- src/Database/Query.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Database/Query.php b/src/Database/Query.php index 50dc6a710a3..4cc8bc96bf8 100644 --- a/src/Database/Query.php +++ b/src/Database/Query.php @@ -101,6 +101,7 @@ class Query implements ExpressionInterface, IteratorAggregate * The list of query clauses to traverse for generating a SELECT statement * * @var array + * @deprecated 4.4.3 This property is unused. */ protected $_selectParts = [ 'with', 'select', 'from', 'join', 'where', 'group', 'having', 'order', 'limit', @@ -111,6 +112,7 @@ class Query implements ExpressionInterface, IteratorAggregate * The list of query clauses to traverse for generating an UPDATE statement * * @var array + * @deprecated 4.4.3 This property is unused. */ protected $_updateParts = ['with', 'update', 'set', 'where', 'epilog']; @@ -118,6 +120,7 @@ class Query implements ExpressionInterface, IteratorAggregate * The list of query clauses to traverse for generating a DELETE statement * * @var array + * @deprecated 4.4.3 This property is unused. */ protected $_deleteParts = ['with', 'delete', 'modifier', 'from', 'where', 'epilog']; @@ -125,6 +128,7 @@ class Query implements ExpressionInterface, IteratorAggregate * The list of query clauses to traverse for generating an INSERT statement * * @var array + * @deprecated 4.4.3 This property is unused. */ protected $_insertParts = ['with', 'insert', 'values', 'epilog'];