Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jessarcher committed Dec 5, 2023
1 parent 5c4d630 commit 24eff7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Storage/DatabaseStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function purge(array $types = null): void
*
* @param list<AggregateRow> $values
*/
protected function upsertCount(array $values): bool
protected function upsertCount(array $values): int
{
return $this->connection()->table('pulse_aggregates')->upsert(
$values,
Expand All @@ -160,7 +160,7 @@ protected function upsertCount(array $values): bool
*
* @param list<AggregateRow> $values
*/
protected function upsertMax(array $values): bool
protected function upsertMax(array $values): int
{
return $this->connection()->table('pulse_aggregates')->upsert(
$values,
Expand All @@ -180,7 +180,7 @@ protected function upsertMax(array $values): bool
*
* @param list<AggregateRow> $values
*/
protected function upsertAvg(array $values): bool
protected function upsertAvg(array $values): int
{
return $this->connection()->table('pulse_aggregates')->upsert(
$values,
Expand Down

0 comments on commit 24eff7f

Please sign in to comment.