Skip to content

Commit a1057be

Browse files
Bump the php-dependencies group with 7 updates (#1097)
* Bump the php-dependencies group with 7 updates Bumps the php-dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [codeat3/blade-simple-icons](https://github.com/codeat3/blade-simple-icons) | `4.2.0` | `4.3.0` | | [laravel/framework](https://github.com/laravel/framework) | `10.48.12` | `10.48.13` | | [laravel/socialite](https://github.com/laravel/socialite) | `5.14.0` | `5.15.0` | | [livewire/livewire](https://github.com/livewire/livewire) | `3.5.0` | `3.5.1` | | [sentry/sentry-laravel](https://github.com/getsentry/sentry-laravel) | `4.6.0` | `4.6.1` | | [spatie/laravel-ignition](https://github.com/spatie/laravel-ignition) | `2.7.0` | `2.8.0` | | [spatie/laravel-schedule-monitor](https://github.com/spatie/laravel-schedule-monitor) | `3.7.1` | `3.8.0` | Updates `codeat3/blade-simple-icons` from 4.2.0 to 4.3.0 - [Release notes](https://github.com/codeat3/blade-simple-icons/releases) - [Changelog](https://github.com/codeat3/blade-simple-icons/blob/main/CHANGELOG.md) - [Commits](codeat3/blade-simple-icons@4.2.0...4.3.0) Updates `laravel/framework` from 10.48.12 to 10.48.13 - [Release notes](https://github.com/laravel/framework/releases) - [Changelog](https://github.com/laravel/framework/blob/11.x/CHANGELOG.md) - [Commits](laravel/framework@v10.48.12...v10.48.13) Updates `laravel/socialite` from 5.14.0 to 5.15.0 - [Release notes](https://github.com/laravel/socialite/releases) - [Changelog](https://github.com/laravel/socialite/blob/5.x/CHANGELOG.md) - [Commits](laravel/socialite@v5.14.0...v5.15.0) Updates `livewire/livewire` from 3.5.0 to 3.5.1 - [Release notes](https://github.com/livewire/livewire/releases) - [Commits](livewire/livewire@v3.5.0...v3.5.1) Updates `sentry/sentry-laravel` from 4.6.0 to 4.6.1 - [Release notes](https://github.com/getsentry/sentry-laravel/releases) - [Changelog](https://github.com/getsentry/sentry-laravel/blob/master/CHANGELOG.md) - [Commits](getsentry/sentry-laravel@4.6.0...4.6.1) Updates `spatie/laravel-ignition` from 2.7.0 to 2.8.0 - [Release notes](https://github.com/spatie/laravel-ignition/releases) - [Changelog](https://github.com/spatie/laravel-ignition/blob/main/CHANGELOG.md) - [Commits](spatie/laravel-ignition@2.7.0...2.8.0) Updates `spatie/laravel-schedule-monitor` from 3.7.1 to 3.8.0 - [Release notes](https://github.com/spatie/laravel-schedule-monitor/releases) - [Changelog](https://github.com/spatie/laravel-schedule-monitor/blob/main/CHANGELOG.md) - [Commits](spatie/laravel-schedule-monitor@3.7.1...3.8.0) --- updated-dependencies: - dependency-name: codeat3/blade-simple-icons dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies - dependency-name: laravel/framework dependency-type: direct:production update-type: version-update:semver-patch dependency-group: php-dependencies - dependency-name: laravel/socialite dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies - dependency-name: livewire/livewire dependency-type: direct:production update-type: version-update:semver-patch dependency-group: php-dependencies - dependency-name: sentry/sentry-laravel dependency-type: direct:production update-type: version-update:semver-patch dependency-group: php-dependencies - dependency-name: spatie/laravel-ignition dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies - dependency-name: spatie/laravel-schedule-monitor dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Fix code styling --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <dependabot[bot]@users.noreply.github.com>
1 parent 9cc5480 commit a1057be

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+214
-249
lines changed

app/Events/ArticleWasApproved.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,5 @@ final class ArticleWasApproved
99
{
1010
use SerializesModels;
1111

12-
public function __construct(public Article $article)
13-
{
14-
}
12+
public function __construct(public Article $article) {}
1513
}

app/Events/ArticleWasSubmittedForApproval.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,5 @@ class ArticleWasSubmittedForApproval
99
{
1010
use SerializesModels;
1111

12-
public function __construct(public Article $article)
13-
{
14-
}
12+
public function __construct(public Article $article) {}
1513
}

app/Events/EmailAddressWasChanged.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,5 @@ class EmailAddressWasChanged
99
{
1010
use SerializesModels;
1111

12-
public function __construct(public User $user)
13-
{
14-
}
12+
public function __construct(public User $user) {}
1513
}

app/Events/ReplyWasCreated.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,5 @@ final class ReplyWasCreated
99
{
1010
use SerializesModels;
1111

12-
public function __construct(public Reply $reply)
13-
{
14-
}
12+
public function __construct(public Reply $reply) {}
1513
}

app/Events/SpamWasReported.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,5 @@ final class SpamWasReported
99
{
1010
use SerializesModels;
1111

12-
public function __construct(public Spam $spam)
13-
{
14-
}
12+
public function __construct(public Spam $spam) {}
1513
}

app/Events/ThreadWasCreated.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,5 @@ final class ThreadWasCreated
99
{
1010
use SerializesModels;
1111

12-
public function __construct(public Thread $thread)
13-
{
14-
}
12+
public function __construct(public Thread $thread) {}
1513
}

app/Jobs/ApproveArticle.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88

99
final class ApproveArticle
1010
{
11-
public function __construct(private Article $article)
12-
{
13-
}
11+
public function __construct(private Article $article) {}
1412

1513
public function handle(): void
1614
{

app/Jobs/BanUser.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77

88
final class BanUser
99
{
10-
public function __construct(private User $user, private $reason)
11-
{
12-
}
10+
public function __construct(private User $user, private $reason) {}
1311

1412
public function handle(): void
1513
{

app/Jobs/BlockUser.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66

77
final class BlockUser
88
{
9-
public function __construct(private User $user, private User $blockedUser)
10-
{
11-
}
9+
public function __construct(private User $user, private User $blockedUser) {}
1210

1311
public function handle(): void
1412
{

app/Jobs/CreateApiToken.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66

77
final class CreateApiToken
88
{
9-
public function __construct(private User $user, private string $name)
10-
{
11-
}
9+
public function __construct(private User $user, private string $name) {}
1210

1311
public function handle(): string
1412
{

0 commit comments

Comments
 (0)