Skip to content

Commit 4daeac0

Browse files
chore(deps-dev): bump the development-dependencies group with 6 updates (#4290)
1 parent 4b32048 commit 4daeac0

4 files changed

Lines changed: 273 additions & 276 deletions

File tree

app/Factories/AlbumFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public function findBaseAlbumsOrFail(array $album_ids, bool $with_relations = tr
199199
$tag_albums = $albums_only ? [] : $tag_album_query->findMany($album_ids)->all(); /** @phpstan-ignore varTag.type */
200200

201201
/** @var array<int,Album> $albums */
202-
$albums = $album_query->findMany($album_ids)->all(); /** @phpstan-ignore varTag.type */
202+
$albums = $album_query->findMany($album_ids)->all();
203203
$result = new Collection(array_merge($tag_albums, $albums));
204204

205205
if ($result->count() !== count($album_ids)) {

app/Http/Requests/Album/MergeAlbumsRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ protected function processValidatedValues(array $values, array $files): void
5858
$this->album = $album;
5959

6060
/** @var Collection<int,Album> */
61-
$albums = Album::query()->with(['children'])->findOrFail($ids)->toBase(); /** @phpstan-ignore varTag.type */
61+
$albums = Album::query()->with(['children'])->findOrFail($ids)->toBase();
6262
$this->albums = $albums;
6363
}
6464
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"barryvdh/laravel-debugbar": "^4.0",
108108
"barryvdh/laravel-ide-helper": "^3.0",
109109
"brianium/paratest": "^7.4",
110-
"dominikb/composer-license-checker": "^2.7",
110+
"dominikb/composer-license-checker": "^3.0",
111111
"fakerphp/faker": "^1.23.0",
112112
"filp/whoops": "^2.5",
113113
"friendsofphp/php-cs-fixer": "^3.3",

0 commit comments

Comments
 (0)