chore: bump dependencies (#1196)

This commit is contained in:
Kyrch
2026-05-07 17:46:56 -03:00
committed by GitHub
parent 333a519611
commit f5e098875f
8 changed files with 1643 additions and 638 deletions
@@ -32,7 +32,7 @@ class PlaylistTrackFactory extends Factory
*/
public function configure(): static
{
return $this->afterCreating(function (PlaylistTrack $track): void {
$this->afterCreating(function (PlaylistTrack $track): void {
if ($track->playlist_id === null) {
return;
}
@@ -43,5 +43,7 @@ class PlaylistTrackFactory extends Factory
$track->update([PlaylistTrack::ATTRIBUTE_POSITION => $position + 1]);
});
return $this;
}
}