mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
10 lines
157 B
PHP
10 lines
157 B
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Repositories\Traits\ByCurrentUser;
|
|
|
|
class PlaylistFolderRepository extends Repository
|
|
{
|
|
use ByCurrentUser;
|
|
}
|