Skip to content

Commit

Permalink
Merge pull request #1 from vemaeg/bugfix/php8-compat-private-methods-…
Browse files Browse the repository at this point in the history
…are-always-final

Private methods cannot be final as they are never overridden by other classes
  • Loading branch information
thirsch authored Dec 13, 2021
2 parents d564c45 + a00a6fc commit ca11489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/Query/Having.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ca11489

Please sign in to comment.