mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
21 lines
484 B
PHP
21 lines
484 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Song;
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class QueueStateFactory extends Factory
|
|
{
|
|
/** @return array<mixed> */
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'user_id' => User::factory(),
|
|
'song_ids' => Song::factory()->count(3)->create()->modelKeys(),
|
|
'current_song_id' => null,
|
|
'playback_position' => 0,
|
|
];
|
|
}
|
|
}
|