Skip to content

Commit 749b89a

Browse files
Bump dependabot/fetch-metadata from 2.2.0 to 2.3.0 (#33)
* Bump dependabot/fetch-metadata from 2.2.0 to 2.3.0 Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) from 2.2.0 to 2.3.0. - [Release notes](https://github.com/dependabot/fetch-metadata/releases) - [Commits](dependabot/fetch-metadata@v2.2.0...v2.3.0) --- updated-dependencies: - dependency-name: dependabot/fetch-metadata dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Trigger workflow * Fix styling --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Baspa <hello@baspa.dev> Co-authored-by: Baspa <10845460+Baspa@users.noreply.github.com>
1 parent 03b0585 commit 749b89a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/dependabot-auto-merge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
- name: Dependabot metadata
1515
id: metadata
16-
uses: dependabot/fetch-metadata@v2.2.0
16+
uses: dependabot/fetch-metadata@v2.3.0
1717
with:
1818
github-token: "${{ secrets.GITHUB_TOKEN }}"
1919

src/Analytics.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Analytics
3232

3333
public function __construct(?int $propertyId = null)
3434
{
35-
$this->googleAnalytics = new GoogleAnalyticsService();
35+
$this->googleAnalytics = new GoogleAnalyticsService;
3636
$this->propertyId = $propertyId ?? config('google-analytics.property_id') ?? null;
3737
$this->credentials = config('google-analytics.credentials') ?? null;
3838
}

src/Traits/Google/FilterByTrait.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public function whereMetricBetween(string $field, int|string|float $from, int|st
131131

132132
private function getNumeric(int|string|float $value): NumericValue
133133
{
134-
$numeric = new NumericValue();
134+
$numeric = new NumericValue;
135135

136136
if (is_float($value)) {
137137
$numeric->setDoubleValue($value);

src/Traits/ResponseFormatterTrait.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function formatResponse(RunReportResponse|RunRealtimeReportResponse $resp
1616
{
1717
$this->setDimensionAndMetricHeaders($response);
1818

19-
return (new AnalyticsResponse())
19+
return (new AnalyticsResponse)
2020
->setResponse($response)
2121
->setDataTable($this->getTable($response))
2222
->setMetricAggregationsTable($this->getMetricAggregationsTable($response));

0 commit comments

Comments
 (0)