Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
papac committed Nov 14, 2023
1 parent 672b56b commit 5e69f86
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 5e69f86

Please sign in to comment.