mirror of
https://github.com/koel/koel
synced 2024-11-24 05:03:05 +00:00
18 lines
338 B
PHP
18 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(),
|
||
|
];
|
||
|
}
|
||
|
}
|