mirror of
https://github.com/koel/koel
synced 2025-01-02 15:58:46 +00:00
12 lines
169 B
PHP
12 lines
169 B
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\PlaylistFolder;
|
|
|
|
/**
|
|
* @extends Repository<PlaylistFolder>
|
|
*/
|
|
class PlaylistFolderRepository extends Repository
|
|
{
|
|
}
|