Skip to content

Commit

Permalink
Merge pull request #281 from bowphp/fix-http-duplicate-header
Browse files Browse the repository at this point in the history
Bug fixes
  • Loading branch information
papac committed Dec 1, 2023
2 parents 672b56b + 5e69f86 commit 162b25c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Database/QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -812,9 +812,9 @@ public function count($column = '*')
*
* @param $aggregate
* @param string $column
* @return int|float
* @return mixed
*/
private function aggregate($aggregate, $column): int|float
private function aggregate($aggregate, $column): mixed
{
$sql = 'select ' . $aggregate . '(' . $column . ') from ' . $this->table;

Expand Down

0 comments on commit 162b25c

Please sign in to comment.