From a00a6fcb9dc9aa1e236b8499de140ce28e9f36db Mon Sep 17 00:00:00 2001 From: "Thomas A. Hirsch" Date: Mon, 13 Dec 2021 22:40:39 +0100 Subject: [PATCH] Private methods cannot be final as they are never overridden by other classes --- lib/Doctrine/Query/Having.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Query/Having.php b/lib/Doctrine/Query/Having.php index 893f6ffc6..cb7308d74 100644 --- a/lib/Doctrine/Query/Having.php +++ b/lib/Doctrine/Query/Having.php @@ -78,7 +78,7 @@ private function parseAggregateFunction($func) * @param mixed $value * @return string */ - final private function _parseAliases($value) + private function _parseAliases($value) { if ( ! is_numeric($value)) { $a = explode('.', $value);