Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#22)
Browse files Browse the repository at this point in the history
* 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] <[email protected]>

* Fix styling

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Baspa <[email protected]>
  • Loading branch information
dependabot[bot] and Baspa authored Sep 15, 2023
1 parent 495d55d commit 3381dff
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fix-php-code-style-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: phpstan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main

Expand Down
12 changes: 6 additions & 6 deletions src/Analytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

class Analytics
{
use ResponseFormatterTrait,
ViewsAnalytics,
SessionsAnalytics,
UsersAnalytics,
use DemographicAnalytics,
DevicesAnalytics,
DemographicAnalytics,
RealtimeAnalytics,
ResourceAnalytics,
RealtimeAnalytics;
ResponseFormatterTrait,
SessionsAnalytics,
UsersAnalytics,
ViewsAnalytics;

public ?int $propertyId = null;

Expand Down
12 changes: 6 additions & 6 deletions src/Service/GoogleAnalyticsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
class GoogleAnalyticsService
{
use DateRangeTrait,
MinuteRangeTrait,
MetricTrait,
DimensionTrait,
OrderByTrait,
MetricAggregationTrait,
FilterByTrait,
RowConfigTrait,
ResponseFormatterTrait;
MetricAggregationTrait,
MetricTrait,
MinuteRangeTrait,
OrderByTrait,
ResponseFormatterTrait,
RowConfigTrait;
}

0 comments on commit 3381dff

Please sign in to comment.