mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
17 lines
338 B
PHP
17 lines
338 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Playlist;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class PlaylistCollaborationTokenFactory extends Factory
|
|
{
|
|
/** @return array<mixed> */
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'playlist_id' => Playlist::factory(),
|
|
];
|
|
}
|
|
}
|