Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Jul 22, 2024
1 parent f26179b commit 8e2c598
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/Analytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ class Analytics
public function __construct(
protected AnalyticsClient $client,
protected string $propertyId,
) {
}
) {}

public function setPropertyId(string $propertyId): self
{
Expand Down
5 changes: 2 additions & 3 deletions src/AnalyticsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ class AnalyticsClient
public function __construct(
protected BetaAnalyticsDataClient $service,
protected Repository $cache,
) {
}
) {}

public function setCacheLifeTimeInMinutes(int $cacheLifeTimeInMinutes): self
{
Expand Down Expand Up @@ -53,7 +52,7 @@ public function get(
'orderBys' => $orderBy,
'dimensionFilter' => $dimensionFilter,
'keepEmptyRows' => $keepEmptyRows,
'metricFilter' => $metricFilter
'metricFilter' => $metricFilter,
]);

$result = collect();
Expand Down

0 comments on commit 8e2c598

Please sign in to comment.