Skip to content

Commit

Permalink
Bump aglipanci/laravel-pint-action from 2.3.0 to 2.3.1 (#25)
Browse files Browse the repository at this point in the history
* Bump aglipanci/laravel-pint-action from 2.3.0 to 2.3.1

Bumps [aglipanci/laravel-pint-action](https://github.com/aglipanci/laravel-pint-action) from 2.3.0 to 2.3.1.
- [Release notes](https://github.com/aglipanci/laravel-pint-action/releases)
- [Commits](aglipanci/laravel-pint-action@2.3.0...2.3.1)

---
updated-dependencies:
- dependency-name: aglipanci/laravel-pint-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Trigger workflow

* 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]>
Co-authored-by: Baspa <[email protected]>
  • Loading branch information
3 people committed Dec 29, 2023
1 parent f7b4834 commit fe76b05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 @@ -13,7 +13,7 @@ jobs:
ref: ${{ github.head_ref }}

- name: Fix PHP code style issues
uses: aglipanci/[email protected].0
uses: aglipanci/[email protected].1

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
Expand Down
2 changes: 1 addition & 1 deletion src/Analytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Analytics

public GoogleAnalyticsService $googleAnalytics;

public function __construct(int $propertyId = null)
public function __construct(?int $propertyId = null)
{
$this->googleAnalytics = new GoogleAnalyticsService();
$this->propertyId = $propertyId ?? config('google-analytics.property_id') ?? null;
Expand Down
2 changes: 1 addition & 1 deletion src/Traits/Analytics/RealtimeAnalytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ trait RealtimeAnalytics
* @throws \Google\ApiCore\ApiException
* @throws \Google\ApiCore\ValidationException
*/
public function activeUsers(Period $period = null, string $path = null): int|array
public function activeUsers(?Period $period = null, ?string $path = null): int|array
{
if (is_null($period)) {
$period = Period::minutes(30);
Expand Down

0 comments on commit fe76b05

Please sign in to comment.