Skip to content

Commit 3381dff

Browse files
Bump actions/checkout from 3 to 4 (#22)
* Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * 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 <Baspa@users.noreply.github.com>
1 parent 495d55d commit 3381dff

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.github/workflows/fix-php-code-style-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
with:
1313
ref: ${{ github.head_ref }}
1414

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: phpstan
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Setup PHP
3030
uses: shivammathur/setup-php@v2

.github/workflows/update-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
with:
1515
ref: main
1616

src/Analytics.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515

1616
class Analytics
1717
{
18-
use ResponseFormatterTrait,
19-
ViewsAnalytics,
20-
SessionsAnalytics,
21-
UsersAnalytics,
18+
use DemographicAnalytics,
2219
DevicesAnalytics,
23-
DemographicAnalytics,
20+
RealtimeAnalytics,
2421
ResourceAnalytics,
25-
RealtimeAnalytics;
22+
ResponseFormatterTrait,
23+
SessionsAnalytics,
24+
UsersAnalytics,
25+
ViewsAnalytics;
2626

2727
public ?int $propertyId = null;
2828

src/Service/GoogleAnalyticsService.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
class GoogleAnalyticsService
1616
{
1717
use DateRangeTrait,
18-
MinuteRangeTrait,
19-
MetricTrait,
2018
DimensionTrait,
21-
OrderByTrait,
22-
MetricAggregationTrait,
2319
FilterByTrait,
24-
RowConfigTrait,
25-
ResponseFormatterTrait;
20+
MetricAggregationTrait,
21+
MetricTrait,
22+
MinuteRangeTrait,
23+
OrderByTrait,
24+
ResponseFormatterTrait,
25+
RowConfigTrait;
2626
}

0 commit comments

Comments
 (0)