Skip to content

Commit bbab5f7

Browse files
Bump the php-dependencies group with 5 updates (#1446)
* Bump the php-dependencies group with 5 updates Bumps the php-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [guzzlehttp/psr7](https://github.com/guzzle/psr7) | `2.8.0` | `2.9.0` | | [laravel/nightwatch](https://github.com/laravel/nightwatch) | `1.24.1` | `1.24.3` | | [laravel/socialite](https://github.com/laravel/socialite) | `5.24.3` | `5.25.0` | | [laravel/ui](https://github.com/laravel/ui) | `4.6.1` | `4.6.2` | | [sentry/sentry-laravel](https://github.com/getsentry/sentry-laravel) | `4.21.1` | `4.22.0` | Updates `guzzlehttp/psr7` from 2.8.0 to 2.9.0 - [Release notes](https://github.com/guzzle/psr7/releases) - [Changelog](https://github.com/guzzle/psr7/blob/2.9/CHANGELOG.md) - [Commits](guzzle/psr7@2.8.0...2.9.0) Updates `laravel/nightwatch` from 1.24.1 to 1.24.3 - [Release notes](https://github.com/laravel/nightwatch/releases) - [Changelog](https://github.com/laravel/nightwatch/blob/1.x/CHANGELOG.md) - [Commits](laravel/nightwatch@v1.24.1...v1.24.3) Updates `laravel/socialite` from 5.24.3 to 5.25.0 - [Release notes](https://github.com/laravel/socialite/releases) - [Changelog](https://github.com/laravel/socialite/blob/5.x/CHANGELOG.md) - [Commits](laravel/socialite@v5.24.3...v5.25.0) Updates `laravel/ui` from 4.6.1 to 4.6.2 - [Release notes](https://github.com/laravel/ui/releases) - [Changelog](https://github.com/laravel/ui/blob/4.x/CHANGELOG.md) - [Commits](laravel/ui@v4.6.1...v4.6.2) Updates `sentry/sentry-laravel` from 4.21.1 to 4.22.0 - [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.21.1...4.22.0) --- updated-dependencies: - dependency-name: guzzlehttp/psr7 dependency-version: 2.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies - dependency-name: laravel/nightwatch dependency-version: 1.24.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: php-dependencies - dependency-name: laravel/socialite dependency-version: 5.25.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: php-dependencies - dependency-name: laravel/ui dependency-version: 4.6.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: php-dependencies - dependency-name: sentry/sentry-laravel dependency-version: 4.22.0 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>
1 parent 0183ed0 commit bbab5f7

27 files changed

+145
-113
lines changed

app/Concerns/HasTags.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function tags(): Collection
1414
}
1515

1616
/**
17-
* @param \App\Models\Tag[]|int[] $tags
17+
* @param Tag[]|int[] $tags
1818
*/
1919
public function syncTags(array $tags)
2020
{

app/Contracts/ReplyAble.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace App\Contracts;
44

5+
use App\Models\Reply;
56
use Illuminate\Database\Eloquent\Relations\MorphMany;
67

78
/**
@@ -12,12 +13,12 @@ interface ReplyAble
1213
public function subject(): string;
1314

1415
/**
15-
* @return \App\Models\Reply[]
16+
* @return Reply[]
1617
*/
1718
public function replies();
1819

1920
/**
20-
* @return \App\Models\Reply[]
21+
* @return Reply[]
2122
*/
2223
public function latestReplies(int $amount = 5);
2324

app/Contracts/SubscriptionAble.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
namespace App\Contracts;
44

5+
use App\Models\Subscription;
56
use App\Models\User;
67
use Illuminate\Database\Eloquent\Relations\MorphMany;
78

89
interface SubscriptionAble
910
{
1011
/**
11-
* @return \App\Models\Subscription[]
12+
* @return Subscription[]
1213
*/
1314
public function subscriptions();
1415

app/Http/Controllers/Auth/RegisterController.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
use Illuminate\Auth\Middleware\RedirectIfAuthenticated;
1313
use Illuminate\Foundation\Auth\RegistersUsers;
1414
use Illuminate\Http\JsonResponse;
15+
use Illuminate\Http\RedirectResponse;
1516
use Symfony\Component\Mailer\Exception\HttpTransportException;
1617

1718
class RegisterController extends Controller
@@ -49,7 +50,7 @@ public function __construct()
4950
/**
5051
* Handle a registration request for the application.
5152
*
52-
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\JsonResponse
53+
* @return RedirectResponse|JsonResponse
5354
*/
5455
public function register(RegisterRequest $request)
5556
{

app/Http/Controllers/Auth/VerificationController.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use App\Http\Controllers\Controller;
66
use App\Providers\AppServiceProvider;
77
use Illuminate\Foundation\Auth\VerifiesEmails;
8+
use Illuminate\Http\RedirectResponse;
89
use Illuminate\Http\Request;
910

1011
class VerificationController extends Controller
@@ -46,7 +47,7 @@ public function __construct()
4647

4748
public function verify(Request $request)
4849
{
49-
/** @var \Illuminate\Http\RedirectResponse $response */
50+
/** @var RedirectResponse $response */
5051
$response = $this->traitVerify($request);
5152

5253
if ($response->getSession()->has('verified')) {
@@ -60,7 +61,7 @@ public function verify(Request $request)
6061

6162
public function resend(Request $request)
6263
{
63-
/** @var \Illuminate\Http\RedirectResponse $response */
64+
/** @var RedirectResponse $response */
6465
$response = $this->traitResend($request);
6566

6667
if ($response->getSession()->has('resent')) {

app/Http/Controllers/SubscriptionController.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44

55
use App\Jobs\UnsubscribeFromSubscriptionAble;
66
use App\Models\Subscription;
7+
use App\Models\Thread;
78
use Illuminate\Http\RedirectResponse;
89

910
class SubscriptionController extends Controller
1011
{
1112
public function unsubscribe(Subscription $subscription): RedirectResponse
1213
{
13-
/** @var \App\Models\Thread $thread */
14+
/** @var Thread $thread */
1415
$thread = $subscription->subscriptionAble();
1516

1617
$this->dispatch(new UnsubscribeFromSubscriptionAble($subscription->user(), $thread));

app/Http/Resources/ArticleResource.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
namespace App\Http\Resources;
44

5+
use App\Models\Article;
56
use Illuminate\Http\Resources\Json\JsonResource;
67

78
/**
8-
* @mixin \App\Models\Article
9+
* @mixin Article
910
*/
1011
class ArticleResource extends JsonResource
1112
{

app/Http/Resources/AuthorResource.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
namespace App\Http\Resources;
44

5+
use App\Models\User;
56
use Illuminate\Http\Resources\Json\JsonResource;
67

78
/**
8-
* @mixin \App\Models\User
9+
* @mixin User
910
*/
1011
class AuthorResource extends JsonResource
1112
{

app/Http/Resources/TagResource.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
namespace App\Http\Resources;
44

5+
use App\Models\Tag;
56
use Illuminate\Http\Resources\Json\JsonResource;
67

78
/**
8-
* @mixin \App\Models\Tag
9+
* @mixin Tag
910
*/
1011
class TagResource extends JsonResource
1112
{

app/Jobs/LikeArticle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ final class LikeArticle
1111
public function __construct(private Article $article, private User $user) {}
1212

1313
/**
14-
* @throws \App\Exceptions\CannotLikeItem
14+
* @throws CannotLikeItem
1515
*/
1616
public function handle(): void
1717
{

0 commit comments

Comments
 (0)