Skip to content

Commit

Permalink
add missing typehint
Browse files Browse the repository at this point in the history
  • Loading branch information
diosmosis committed Jun 28, 2023
1 parent a9f27c6 commit 14d3914
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/DevicesDetection/RecordBuilders/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ public function __construct(string $recordName, string $labelSql, bool $enrichWi
$this->enrichWithConversionMetrics = $enrichWithConversionMetrics;
}

public function getRecordMetadata(ArchiveProcessor $archiveProcessor)
public function getRecordMetadata(ArchiveProcessor $archiveProcessor): array
{
return [
Record::make(Record::TYPE_BLOB, $this->recordName),
];
}

protected function aggregate(ArchiveProcessor $archiveProcessor)
protected function aggregate(ArchiveProcessor $archiveProcessor): array
{
$logAggregator = $archiveProcessor->getLogAggregator();

Expand Down

0 comments on commit 14d3914

Please sign in to comment.